Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can’t able to access kibana dashboard

I am able to connect elasticsearch. However, I am unable to access kibana on 5601. Can anyone please help out this to work? Thanks in advance.

In the kibana.yml file, I have modified the server.host parameter to point to my domain.

  • Elasticsearch Version: 7.7.0
  • Kibana Version: kibana-7.7.0-1.x86_64
  • OS: Centos 7
  • JAVA Version: 11

kibana.yml

server.port: 5601
server.host: "my_domain"
elasticsearch.hosts: ["http://my_domain:9200"]

Kibana Logs

{"type":"log","@timestamp":"2020-06-02T14:08:03Z","tags":["warning","plugins-discovery"],"pid":2844,"message":"Expect plugin \"id\" in camelCase, but found: apm_oss"}
{"type":"log","@timestamp":"2020-06-02T14:08:03Z","tags":["warning","plugins-discovery"],"pid":2844,"message":"Expect plugin \"id\" in camelCase, but found: file_upload"}
{"type":"log","@timestamp":"2020-06-02T14:08:03Z","tags":["warning","plugins-discovery"],"pid":2844,"message":"Expect plugin \"id\" in camelCase, but found: triggers_actions_ui"}
{"type":"log","@timestamp":"2020-06-02T14:08:09Z","tags":["info","plugins-service"],"pid":2844,"message":"Plugin \"infra\" has been disabled since some of its direct or transitive dependencies are missing or disabled."}
{"type":"log","@timestamp":"2020-06-02T14:08:27Z","tags":["warning","plugins-discovery"],"pid":2941,"message":"Expect plugin \"id\" in camelCase, but found: apm_oss"}
{"type":"log","@timestamp":"2020-06-02T14:08:27Z","tags":["warning","plugins-discovery"],"pid":2941,"message":"Expect plugin \"id\" in camelCase, but found: file_upload"}
{"type":"log","@timestamp":"2020-06-02T14:08:27Z","tags":["warning","plugins-discovery"],"pid":2941,"message":"Expect plugin \"id\" in camelCase, but found: triggers_actions_ui"}
{"type":"log","@timestamp":"2020-06-02T14:08:32Z","tags":["info","plugins-service"],"pid":2941,"message":"Plugin \"infra\" has been disabled since some of its direct or transitive dependencies are missing or disabled."}
{"type":"log","@timestamp":"2020-06-02T14:08:35Z","tags":["fatal","root"],"pid":2941,"message":"{ Error: listen EADDRNOTAVAIL: address not available localhost:5601\n    at Server.setupListenHandle [as _listen2] (net.js:1263:19)\n    at listenInCluster (net.js:1328:12)\n    at doListen (net.js:1461:7)\n    at process._tickCallback (internal/process/next_tick.js:63:19)\n  code: 'EADDRNOTAVAIL',\n  errno: 'EADDRNOTAVAIL',\n  syscall: 'listen',\n  address: 'localhost',\n  port: 5601 }"}
like image 378
Brisi Avatar asked Jun 09 '20 12:06

Brisi


People also ask

What is a dashboard in Kibana?

Dashboards in Kibana let you rapidly create views that pull together charts, maps, and filters to display the full picture of your Elasticsearch data.

How do I run Kibana on Windows?

Now that you are up and running, it’s time to get some data into Kibana. Click Launch Kibana. If you are using a self-managed deployment, access Kibana through the web application on port 5601. Point your web browser to the machine where you are running Kibana and specify the port number.

How do I deploy Kibana to Elasticsearch?

Select a solution and give your deployment a name. Click Create deployment and download the password for the elastic user. That’s it! Now that you are up and running, it’s time to get some data into Kibana. Click Launch Kibana. If you are using a self-managed deployment, access Kibana through the web application on port 5601.

What port does Kibana run on?

If you are using a self-managed deployment, access Kibana through the web application on port 5601. Point your web browser to the machine where you are running Kibana and specify the port number.


Video Answer


1 Answers

Kibana runs on port 5601 by default. This error message says that, when Kibana tried to start up & bind to port 5601, it couldn't because something else was already bound to port 5601.

Check if some application is already bound to port 5601. If yes, Try another port.

If No, Then It would be easy to investigate the issue, if you could attach the contents of your /etc/hosts file.

like image 93
Amit kumar Avatar answered Sep 30 '22 16:09

Amit kumar