ElasticSearch(九):elasticsearch-head外掛安裝
阿新 • • 發佈:2018-11-29
安裝node
安裝elasticsearch-head需要node.js的支援。
下載最新的node.js,下載地址:https://nodejs.org/en/download/
將下載後的安裝包放在/opt目錄下
解壓
# tar –xvf node-v10.14.0-linux-x64.tar.xz
配置環境變數
開啟/etc/profile
# vi /etc/profile
在最後追加以下內容
export NODE_HOME=/opt/node-v10.14.0-linux-x64 export PATH=$NODE_HOME/bin:$PATH
儲存退出,重啟機器
測試是否配置成功
# node –v
安裝elasticsearch-head外掛
下載(git方式)
下載地址:https://github.com/mobz/elasticsearch-head
安裝git:# yum install git
下載:# git clone https://github.com/mobz/elasticsearch-head.git
進入elasticsearch-head目錄下,執行命令
# npm imstall
# npm start
配置elasticsearch,允許head外掛訪問
進入elasticsearch config目錄 開啟 elasticsearch.yml
最後加上
http.cors.enabled: true
http.cors.allow-origin: "*"
測試
開啟外部瀏覽器訪問http://192.168.56.41:9100