Kibana7.2.1环境搭建

OS:CentOS release 6.9

1 kibana.yml

server.port: 5601
server.host: "192.168.1.11"
elasticsearch.hosts: ["http://192.168.1.11:9200"]
elasticsearch.requestTimeout: 90000

3 配置elasticsearch负载节点

/app/elasticsearch/config/elasticsearch.yml

cluster.name: elk-es
node.name: node-00
network.host: 192.168.1.11
discovery.seed_hosts: ["192.168.1.31", "192.168.1.32", "192.168.1.33"]
cluster.initial_master_nodes: ["node-01","node-02","node-03"]
bootstrap.system_call_filter: false
node.master: false
node.data: false

4 启动关闭

cd /app/kibana/bin/

# 启动
./kibana 2>>kibana.log &

# 停止
ps -ef|grep kibana|awk '{print $2}'|xargs kill -9
发布了20 篇原创文章 · 获赞 1 · 访问量 2885

猜你喜欢

转载自blog.csdn.net/linwenhai2018/article/details/103391410
今日推荐