• kibana安装


    1.下载,上传安装包,解压缩
    tar -zxvf kibana-8.2.0-linux-x86_64.tar.gz

    cd kibana-8.2.0

    2.修改配置文件
    vi config/kibana.yml
    server.host: "127.0.0.1" #本机ip
    elasticsearch.url: "http://127.0.0.1:9200" #elasticsearch的ip加端口
    server.port: 5601

    修改kibana默认端口 默认端口 5601

    3.非root账号授权启动
    [root@VM-4-3-centos kibana-8.2.0]# cd ./bin
    [root@VM-4-3-centos bin]# ll
    total 24
    -rwxr-xr-x 1 root root 835 Apr 20 18:59 kibana
    -rwxr-xr-x 1 root root 783 Apr 20 18:59 kibana-encryption-keys
    -rwxr-xr-x 1 root root 776 Apr 20 18:59 kibana-keystore
    -rwxr-xr-x 1 root root 813 Apr 20 18:59 kibana-plugin
    -rwxr-xr-x 1 root root 773 Apr 20 18:59 kibana-setup
    -rwxr-xr-x 1 root root 785 Apr 20 18:59 kibana-verification-code
    [root@VM-4-3-centos bin]# ./kibana
    Kibana should not be run as root. Use --allow-root to continue.

    [root@VM-4-3-centos bin]# su es
    [es@VM-4-3-centos bin]$ ./kibana


    FATAL Error: Unable to write to UUID file at /usr/local/kibana-8.2.0/data/uuid. Ensure Kibana has sufficient permissions to read / write to this file. Error was: EACCES

    对es用户授权,目录elasticsearch-8.2.0 (重要) 切换es命令来启动
    sudo chown -R es:es kibana-8.2.0

    [root@VM-4-3-centos kibana-8.2.0]# sudo chown -R es:es ./kibana-8.2.0
    chown: cannot access ‘./kibana-8.2.0’: No such file or directory
    ##需要返回上级目录来授权
    [root@VM-4-3-centos kibana-8.2.0]# cd ..
    [root@VM-4-3-centos local]# sudo chown -R es:es kibana-8.2.0

    4.在bin目录下执行kabana文件
    正常启动
    ./kibana
    后台启动
    ./kibana &

    5:访问kibana kibana
    打开页面显示这样就大功告成啦。此地址为刚才配置的ip加端口地址 IP:5601

    6.安装过程中遇到的问题
    ElasticSearch 和 kibana 安装、启动、使用时遇到的那些差点爬不出的坑
    参考:https://blog.csdn.net/qq_36743888/article/details/109713741
    kibana总是启动失败--记录阿里云2GB内存云服务器安装elasticsearch+kibana过程中的坑
    参考:https://blog.csdn.net/weixin_43822703/article/details/121883048

    kibana启动没反应,内存不够的情况下,可以选择轻量级的客户端界面来替代使用,
    转向: 安装elasticsearch-head 或 cerebro

  • 相关阅读:
    Python 递归
    Python 面向过程编程
    Python 协程函数
    Python-第三方库requests详解
    Python 三元表达式
    linux copy
    centos 安装软件
    mysql 权限
    mysql 权限 备份
    android 开发
  • 原文地址:https://www.cnblogs.com/oktokeep/p/16361880.html
Copyright © 2020-2023  润新知