CentOS 8 部署Elasticsearch-head

参考:linux(centos 7)下安装elasticsearch - head插件(端口占用,防火墙关闭)

修改配置

1 修改head的连接地址 elasticsearch-head/_site/app.js

this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://localhost:9200";

localhost改为自己的ip,比如我的是192.168.52.129

2 修改服务器的监听地址elasticsearch-head/Gruntfile.js

# 导航到elasticsearch-head目录下
vi gruntfile.js
# 如下图位置,增加
hostname: '*'

部署中碰到的问题
  1. Warning: Task "server" not found. Use --force to continue.
grunt server

该问题后来重新添加hostname: '*'后就好了,可能之前添加的hostname: '*'有问题

参考文章:grunt server报错:Warning: Task "server" not found. Use --force to continue.

运行效果

posted @ 2020-06-19 14:23  倒不了的西恩塔  阅读(230)  评论(0编辑  收藏  举报