Kibana does not open in my browser

119/5000

Hi.

We are starting to work with Elastic and Kibana so we don't have much experience with this tool. I installed Elastic in a cento 7 with the steps:

1.- rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
2.- I created file elasticsearch.repo in /etc/yum.repos.d/
3.- sudo yum install --enablerepo=elasticsearch elasticsearch
4.- sudo -i service elasticsearch start
5.- sudo -i service elasticsearch status

Status Response
" elasticsearch.service - Elasticsearch
Loaded: loaded (/usr/lib/systemd/system/elasticsearch.service; enabled; vendor preset: disabled)
Active: active (running) since Wed 2020-06-10 16:21:07 EDT; 1h 28min ago
Docs: https://www.elastic.co
Main PID: 5615 (java)
CGroup: /system.slice/elasticsearch.service
├─5615 /usr/share/elasticsearch/jdk/bin/java -Xshare:auto -Des.networkaddress.cache.ttl=60 -Des.networkaddress.cache.negative.ttl=10 -XX:+AlwaysPreTouch -...
└─5801 /usr/share/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/bin/controller

Jun 10 16:20:46 DataLake.localdomain systemd[1]: Starting Elasticsearch...
Jun 10 16:21:07 DataLake.localdomain systemd[1]: Started Elasticsearch."

Then install kibana on the same server with the following procedure:

1.- rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
2.- I created file kibana.repo in the /etc/yum.repos.d/
3.- sudo yum install kibana
4.- sudo -i service kibana start
5.- sudo -i service kibana status

Status Response
kibana is running

6.- curl -I http://127.0.0.1:5601

Curl Response
[root@DataLake ~]# curl -I http://127.0.0.1:5601
HTTP/1.1 302 Found
location: /spaces/enter
kbn-name: DataLake.localdomain
kbn-license-sig: 397a9a9fdd103ac9f2f190acc9bd35bd28df099a1c27b890788274002baecad2
kbn-xpack-sig: 799dafe19237baed636d25b633755cf5
cache-control: no-cache
content-length: 0
Date: Wed, 10 Jun 2020 21:55:48 GMT
Connection: keep-alive

Does not open the page when entering http://IP:5601/

Am I missing something else to configure?. or is it a problem with my machine?.

Thanks a lot. Regards

Rodrigo

@Rodrigo_Ceballos by default, Kibana binds to localhost and thus is only available from localhost. You need to set server.host to the IP address or DNS name of the server in your kibana.yml in order to make it remotely accessible.

Thank you very much for the information.
Problem solved with what you told me

Regards

Rodrigo

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.