elasticsearch 安装head插件

  1. 修改 elasticsearch/config/elasticsearch.yml

  2. 添加

    http.cors.enabled: true
    http.cors.allow-origin: "*"
  3. 下载 elasticsearch-head 或者 git clone 到随便一个文件夹

  4. 安装nodejs

  5. cd /path/to/elasticsearch-head

  6. npm install -g grunt-cli

  7. npm install

  8. grunt server

  9. http://localhost:9100/

  10. Enjoy it.

猜你喜欢

转载自blog.csdn.net/strideahead/article/details/82020303