I have installed ES in a 3 node cluster. I have Kibana on #3 as well. ES is running fine as far as I can tell. Kibana installed and started fine. I have edited the .yml file with the following
Contents of kibana.yml
server.port: 5601
server.host: "0.0.0.0"
server.name: "name"
elasticsearch.hosts: ["http://localhost:9200"]
I have checked for a listener
[clintd@pdxelastictest03 kibana]$ netstat -nat | grep 5601
tcp 0 0 0.0.0.0:5601 0.0.0.0:* LISTEN
[clintd@pdxelastictest03 kibana]$ netstat -nat | grep 9200
tcp6 0 0 127.0.0.1:9200 :::* LISTEN
tcp6 0 0 ::1:9200 :::* LISTEN
Attempted to connect from the local machine
[clintd@pdxelastictest03 kibana]$ curl '10.6.48.235:5061'
curl: (7) Failed connect to 10.6.48.235:5061; Connection refused
Found this in the logs:
[clintd@pdxelastictest03 kibana]$ vi kibana.stderr
FATAL Error: Port 5601 is already in use. Another instance of Kibana may be running!
I don't see anything that would suggest Kibana is running anywhere else. I am at a loss. Anyone have ideas that would help me?