赞
踩
centos7安装elasticsearch请查看另一篇文章 https://blog.csdn.net/qq_50904585/article/details/128628693
提示:以下是本篇文章正文内容,下面案例可供参考
官网下载链接 https://www.elastic.co/cn/downloads/kibana
查看历史版本
选择版本
下载
解压
创建kibana目录,然后把压缩包放到这个里面
mkdir kibana
cd kibana
tar -zxvf kibana-7.12.1-linux-x86_64.tar.gz
修改/config/kibana.yml
将默认配置改成如下:
#端口号
server.port: 5601
#kibana的主机地址
server.host: "0.0.0.0"
#elasticsearch的ip和端口
elasticsearch.hosts: ["http://192.168.1.1:9200"]
#下面两项,需要开启RBAC时需要打开配合es使用
#elasticsearch.username: "user"
#elasticsearch.password: "pass"
因Kibana不能以root用户启动,把Kibana移到es的用户目录下面(我自己的es用户是es_user1,用户组是es_users),然后给权限
mv kibana/ /home/es_user1/
chown -R es_user1:es_users /home/es_user1/kibana
启动
#切换到es_user1用户下
su es_user1
#启动
.bin/kibana
验证是否启动成功
lsof -i:5601
访问
自己的kibana主机的ip和端口
http://192.168.1.1:5601/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。