Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

kibana service not running

I am trying to install Elastic search, Nginx, Kibana and Sense.

I am following this guide: https://www.digitalocean.com/community/tutorials/how-to-install-elasticsearch-logstash-and-kibana-elk-stack-on-ubuntu-14-04

I successfully installed Elastic search.

However I am stuck at Kibana.

I successfully followed all steps however:

root@dev:~# service kibana start
kibana started
root@dev:~# service kibana status
kibana is not running

When I run kibana service it says it started, and after that when I want to check if kibana is running, it says it is not running.

If more details are needed for this question to be answered, comment and I will provide it.

like image 927
Kunok Avatar asked Dec 14 '22 05:12

Kunok


2 Answers

Use curl localhost:5601 to test if kibana is really working. If not working , go to etc/kibana/ to modify the config to check if host is 0.0.0.0 and port is 5601 And the other problem is that your server'memories are not enough for kibana starting. Hope you can provider the kibana log.

try use: journalctl -u kibana.service to show the log.

like image 196
blake chen Avatar answered Jan 02 '23 11:01

blake chen


Even I was facing the same issue.

I have installed the latest version of kibana ( Version: 5.0.2) which is dowloaded from this site: https://www.elastic.co/downloads/kibana

And I have installed the Elasticsearch of version ( 5.0.2) I used the below site: https://www.elastic.co/guide/en/elasticsearch/reference/current/zip-targz.html

It worked for me.

Thanks.

like image 34
Roopa Avatar answered Jan 02 '23 12:01

Roopa