1. 首先下载elasticsearch和elasticsearch-head
https://www.elastic.co/cn/downloads/past-releases https://github.com/mobz/elasticsearch-head
2. 安装nodejs
http://nodejs.cn/download/
由于elasticsearch-head是用js编写的,需要下载和安装nodejs,一直下一步
cmd命令行中敲入node -v有版本返回安装成功
4. npm install -g grunt-cli 安装nodejs包管理器(需要联网)
5. 修改elasticsearch中的配置文件 config/elasticsearch.yml允许跨域访问
http.cors.enabled: true http.cors.allow-origin: "*"
6. npm start启动elasticsearch-head
原文地址:https://www.cnblogs.com/chenxi-mxj/p/12149206.html
时间: 2024-11-10 01:41:15