Splunk Universal Forwarder 10 버전 설치 시 8089 포트가 Listening 되지 않음
netstat -nlp 실행 시 , LISTEN 될거라고 판단 Splunk Universal Forwarder 9.X 버전 부터 8089 포트가 자동으로 활성화 되지 않음
공식 문서에 따르면 보안상의 이유로 8089 포트를 제한하게됨
원문 (Splunk Enterprise 9 버전 릴리즈 노트 - 링크)
Universal forwarder: limit access to port 8089 by defaul
The default setting for
mgmtHostPortin web.conf ismgmtHostPort = localhost, with the localhost=127.0.0.1for ipv4 and::1for ipv6. This means that the external servers cannot access the management port and that REST API calls to the universal forwarder from external servers will fail. You can disable this by settingdisableDefaultPort=truein server.conf.
요약
외부 접근이 기본 값으로 막혀있음 server.conf에서 disableDefaultPort=true로 바꿔야함system의 server.conf 수정 vi $SPLUNK_HOME/etc/system/local/server.conf
[default]
disableDefaultPort=true
$SPLUNK_HOME/bin/splunk restart