elasticsearch-head 筆記

weixin_34402408發表於2018-08-23

一、安裝

        yum install git npm # npm在epel源中

        git clone https://github.com/mobz/elasticsearch-head.git    # 安裝過程需要連線網際網路

        cd elasticsearch-head          # git clone後會自動生成的一個目錄

        npm install

         npm run start

二、測試

        使用 http://xx.xx.xx.xx:9200 在瀏覽器訪問,如果能開啟說明安裝正常

三、許可權設定

        查詢叢集健康資訊,那麼需要在elasticsearch配置檔案中授權

vim /etc/elasticsearch/elasticsearch.yml

http.cors.enabled: true         # elasticsearch中啟用CORS

http.cors.allow-origin: "*"      # 允許訪問的IP地址段,* 為所有IP都可以訪問