Centos7 安装配置elasticsearch-head
Centos7 安装配置elasticsearch-head
安装nodejs
配置yum源
curl --silent --location https://rpm.nodesource.com/setup_7.x | bash -
安装nodejs和npm
yum install -y nodejs
配置淘宝npm镜像
通过config命令
npm config set registry https://registry.npm.taobao.org npm info underscore (如果上面配置正确这个命令会有字符串response)
命令行指定
npm --registry https://registry.npm.taobao.org info underscore
编辑 ~/.npmrc 加入下面内容
registry = https://registry.npm.taobao.org
安装phantomjs(elasticsearch-head依赖)
- 下载
- 安装配置
tar xvf phantomjs-2.1.1-linux-x86_64.tar.bz2 export PHANTOMJS_HOME=/path/phantomjs/bin
安装配置运行elasticsearch-head
安装
git clone git://github.com/mobz/elasticsearch-head.git
配置
npm install vim ./_site/app.js app.App = ui.AbstractWidget.extend({ defaults: { base_uri: "http://10.2.6.2:9200" }
运行访问
npm run start http://10.2.6.2:9100
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 编程私厨!