Last active
December 28, 2015 08:59
-
-
Save pivotal-casebook/7475313 to your computer and use it in GitHub Desktop.
Logstash says address already in use but no evidence that is the case?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@splunk ~]# lsof -i -P | grep 5043 | |
[root@splunk ~]# | |
[root@splunk ~]# cat /opt/logstash/server/etc/conf.d/logstash.conf | |
input { | |
lumberjack { | |
port => 5043 | |
ssl_certificate => "/etc/ssl/logstash.pub" | |
ssl_key => "/etc/ssl/logstash.key" | |
type => syslog | |
} | |
} | |
output { | |
elasticsearch { embedded => true } | |
} | |
[root@splunk ~]# /etc/init.d/logstash_server start | |
Starting logstash... | |
Logstash started successfully [ OK ] | |
[root@splunk ~]# cat /var/log/logstash/server.log | |
The error reported is: | |
Address already in use - bind - Address already in use |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment