开发者学堂课程【ElasticSearch 入门精讲:Head 安装_概述】学习笔记,与课程紧密连接,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/631/detail/9966
Head 安装_概述
ES-Head Plugin 安装
安装:bin/plugininstallmobz/elasticsearch-head
-es head:elasticsearch-head 是一个 elasticsearch 的集群管理工具,它是完全由 HTML5编写的独立网页程序,你可以通过插件把它集成到 es。~> 使用对象:程序员使用
官方的资料:
https://github.com/mobz/elasticsearch-head#running-with-bui1t-in-server
安装歩驟: (注意:在 root 用戸下安装)
1.nodejs npm grunt安装( 在安装 htm15运行的环境)
yum install nodejs
yum insta11 npm
npm insta11 -g grunt
npm insta1l -g grunt-cli
#下述的命令需要将 os 的当前目录设定为 he ad 插件的根目录(正式开始实施)
cnpm install
(或是:npm install -g cnpm --
registry=https://registry.npm.taobao.org ;
或者是: npm instal1 //执行后会生成node_modelus文件夹)
注意:
★若是在线安装失败的话,需要手动下载安装包手动安装。
2.修改 Gruntfile.js
在该文件中添加如下,务必注意不要漏了添加“,”号,这边的 hostname:'*' ,表示允许所有 IP 可以访问,此处也可以修改端口号
server: {
options: {
hostname :
port: 9100,
base:
keepalive: true
}
}
3.启动 grunt server
或者是以后台进程的方式启动:nohup grunt server > /dev/nu11 2>&1 &
4.访问 http://JANSON01:9100
(建议:使用 goog1e 浏览器访问)