#### kibana 配置文件 ```yml # kibana配置文件 连接到ES server.host: "0" server.shutdownTimeout: "5s" elasticsearch.hosts: [ "http://192.168.124.3:9201" ] #链接任意节点即可 monitoring.ui.container.elasticsearch.enabled: true ``` #### 查看集群状态 ```http http://10.102.115.3:9200/_cat/health?v ``` --- ### 安装head插件 ```markdown 1. 访问github网站 搜索: elasticsearch-head 插件 2. 安装git yum install git 3. 将elasticsearch-head下载到本地 git clone git://github.com/mobz/elasticsearch-head.git 4. 安装nodejs #注意: 没有wget的请先安装yum install -y wget wget http://cdn.npm.taobao.org/dist/node/latest-v8.x/node-v8.1.2-linux-x64.tar.xz 5. 解压缩nodejs xz -d node-v10.15.3-linux-arm64.tar.xz tar -xvf node-v10.15.3-linux-arm64.tar 6. 配置环境变量 mv node-v10.15.3-linux-arm64 nodejs mv nodejs /usr/nodejs vim /etc/profile export NODE_HOME=/usr/nodejs export PATH=$PATH:$JAVA_HOME/bin:$NODE_HOME/bin 7. 进入elasticsearch-head的目录 npm config set registry https://registry.npm.taobao.org npm install npm run start 8. 启动访问head插件 默认端口9100 http://ip:9100 查看集群状态 ```