elastic stack(四) elasticsearch-head插件安装启动
程序员文章站
2024-01-19 19:19:28
...
命令下载:wget url
2、安装node.js
####打开所要解压的路径
cd /gfkdata/elk/
####解压文件
tar -xJf node-v12.18.3-linux-x64.tar.xz
3、配置环境变量
vi /etc/profile
#### 在文件最后追加node.js的相关配置
export NODE_HOME=/gfkdata/elk/node-v10.16.3-linux-x64
export PATH=$NODE_HOME/bin:$PATH
####重新加在配置文件
source /etc/profile
####验证是否安装成功
node -v
npm -v
如下所示表示安装成功
4、下载安装head插件
####下载插件
git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
####安装插件
npm installl
安装报错:
解决:
npm install aaa@qq.com --ignore-scripts
5、配置elasticsear,允许head插件访问远程
cd /gfkdata/elk/elasticsearch/config
vi elasticsearch.yml
####在文件末尾处加如下内容
http.cors.enabled: true
http.cors.allow-origin: "*"
6、启动elasticsearch-head服务
cd elasticsearch-head
npm run start
如下所示表示启动成功
其他安装错误(因为在安装中没有截图,又都解决了,所以没有问题截图的复现):
报错:Failed at the aaa@qq.com start script.
npm install grunt --save-dev
####再次执行
grunt server
如果弹出提醒安装文件
依次执行:npm install grunt-contrib-clean