美文网首页
centos7安装kibana

centos7安装kibana

作者: 王小板爱吃鱼 | 来源:发表于2020-05-16 22:06 被阅读0次
    1. 下载kibana
      官网速度较慢,可以去华为开源镜像下载https://mirrors.huaweicloud.com/kibana,注意要和es的版本一致
    2. 解压
    3. 改变目录拥有者为执行用户,kibana和es一样默认不能使用root运行
    chown -R es:es your_kibana_path
    su es
    
    1. 修改配置config/kibana.yml
    # 允许所有ip访问
    server.host: "0.0.0.0"
    # es的hosts
    elasticsearch.hosts: ["http://192.168.248.10:9200"]
    # 中文汉化
    i18n.locale: "zh-CN"
    
    1. 启动kibana
    bin/kibana
    

    相关文章

      网友评论

          本文标题:centos7安装kibana

          本文链接:https://www.haomeiwen.com/subject/kskdohtx.html