Big Data Elasticsearch of Linux system installation Kibana

Article Directory


1. Download

Download tar.gz package
wget https://artifacts.elastic.co/downloads/kibana/kibana-7.3.2-linux-x86_64.tar.gz
extract the
tar -zxvf kibana-7.3.2-linux- x86_64.tar.gz
to run the normal user can
chown -R es kibana-7.3.2-linux -x86_64


2. Configure

Open the configuration file

$ vim /kibana/config/kibana.yml 

Add the following

server.port: 5601 //监听端口 
server.host: "@yourip" //监听IP地址,建议内网ip 
elasticsearch.hosts: ["http://localhost:9200"] //elasticsearch连接kibana的URL,也可以填写192.168.1.32,因为它们是一个集群

3. Run

运行 kibana

$ ./kibana/bin/kibana

There is no open ports detection monitor

$ ss -antlup | grep 5601

Can you access
localhost: 5601

Published 204 original articles · won praise 59 · Views 140,000 +

Guess you like

Origin blog.csdn.net/baidu_34122324/article/details/102525497