I have installed Elasticsearch, Logstash, Kibana and Nginx following this guide,
Elasticsearch is running on 9200
But running
curl http://localhost:5601
returns this:
curl: (7) Failed to connect to localhost port 5601: Connection refused
In kibana.yml
file I configured
server.port: 5601
server.host: "127.0.0.1"
Here I also checked with localhost
and aws private ip address
.
And while checking the port running this:
netstat -anp | grep 5601
I am getting:
(No info could be read for "-p": geteuid()=1000 but you should be root.)
I can start kibana running:
sudo service kibana start
But while checking status using:
sudo service kibana status
I get:
kibana is not running
I haven't setup firewall and running
sudo ufw status
Returns:
Status : Inactive
I am confused, why is the kibana port not listening?
which kibana
orwhereis kibana
and run the Kibana binary. Then look at the output. – Loek van Gool