前言
前不久刚乌鸦嘴说完比较闲,就忙成狗,过了很久都没有更新,趁周末赶紧之前总结的经验梳理一下。上次我们说完ELK三个组件的安装和配置,但是看着这枯燥无味的命令行启动的ELK,可能会让大家觉得很抽象,只知道安装成功了,不知道怎么使用,不知道该从何下手;那么我们就可以给ES安装几个可视化控件,可以更方便、更直观的了解ES的结构,以及之后为ES集群扩展做准备。
ps:由于在mac机子上ELK不好扩展,所以往后的教程均在linux系统上实现,本文使用的系统为CentOS7。
elasticserch-head 安装
简介
关于ElasticSearch-Head官方介绍比较简单,只有一句话:
ElasticSearch-Head 是一个与Elastic集群(Cluster)相交互的Web前台。
ES-Head的主要作用
它展现ES集群的拓扑结构,并且可以通过它来进行索引(Index)和节点(Node)级别的操作
它提供一组针对集群的查询API,并将结果以json和表格形式返回
它提供一些快捷菜单,用以展现集群的各种状态
安装
一、安装nodejs
打开终端输入
curl -sL -o /etc/yum.repos.d/khara-nodejs.repo https://copr.fedoraproject.org/coprs/khara/nodejs/repo/epel-7/khara-nodejs-epel-7.repo
yum install -y nodejs nodejs-npm
二、安装grunt
grunt是一个很方便的构建工具,可以进行打包压缩、测试、执行等等的工作,5.X里的head插件就是通过grunt启动的。
npm install grunt-cli #安装grunt-cli
npm install grunt #安装grunt
grunt -version #查看版本
三、安装git
yum remove git #移除之前老的git
git --version #查看是否安装git
yum install git #安装git
四、安装head
新建一个文件夹elasticsearch-head
cd elasticsearch-head
git clone git://github.com/mobz/elasticsearch-head.git
npm install安装head
可能会遇到的报错
“查看报错信息”Error: Cannot find module '/var/lib/elasticsearch/elasticsearch-head/node_modules/phantomjs-prebuilt/install.js'”,未找到” phantomjs-prebuilt/install.js”文件;”
使用 npm install phantomjs-prebuilt@2.1.13 --ignore-scripts 解决
修改/elasticsearch-head/_site/app.js
app.js修改/elasticsearch-head/Gruntfile.js
Gruntfile.jsgrunt server & 运行head插件
http://locahost:9100/查看服务
如果“集群健康值: 未连接”
修改elasticsearch目录下 conf/elasticsearch.yml
elasticsearch/conf目录下 文件elasticsearch.yml中添加配置如下:
#避免出现跨域问题
http.cors.enabled: true
http.cors.allow-origin: "*"
重启es 和head即可
ps:这里不着重介绍如何使用插件,大家可以自行去了解或者看我下一篇集群介绍。
elasticserch-kopf 安装
简介
Kopf是一个ElasticSearch的管理工具,它也提供了对ES集群操作的API。是一个我非常喜欢,非常强大的工具。
安装
使用git下载kopf
git clone git://github.com/lmenezes/elasticsearch-kopf.git
下载elasticserch-kopf 完成后会在用户下创建elasticserch-kopf 文件夹
cd到elasticserch-kopf 目录下
npm install 安装kopf npm会自动检索没有安装的插件
可能会遇到的问题
Local Npm module "grunt-contrib-copy" not found. Is it installed?
Local Npm module "grunt-contrib-uglify" not found. Is it installed?
Local Npm module "grunt-contrib-jshint" not found. Is it installed?
Local Npm module "grunt-contrib-less" not found. Is it installed?
Local Npm module "grunt-contrib-clean" not found. Is it installed?
Local Npm module "grunt-contrib-watch" not found. Is it installed?
Local Npm module "grunt-contrib-concurrent" not found. Is it installed?
Local Npm module "grunt-contrib-nodemon" not found. Is it installed?
Local Npm module "grunt-contrib-newer" not found. Is it installed?
Warning: Task "copy:vendor" not found. Use --force to continue.
Aborted due to warnings.
这是因为grunt缺少对应的module
通过命令
npm install module-名字 --save-dev
把所有缺少的module安装上即可
安装完成运行
grunt server &
http://locahost:9000/查看服务
配置kopf 添加elasticserch服务端口即可。
elasticserch-bigdesk 安装
简介
Bigdesk为Elastic集群提供动态的图表与统计数据。主要用于监控集群性能、CPU使用情况、内存使用率等,方便更好的配置集群节点等。
安装
打开终端下载
git clone https://github.com/hlstudio/bigdesk.git
cd 到bigdesk/_site/目录下
运行
python -m SimpleHTTPServer
而Linux默认是安装Python的,所以只需要执行python -m SimpleHTTPServer。
这就行了,而我们的HTTP服务在8000号端口上侦听。你会得到下面的信息:
Serving HTTP on 0.0.0.0 port 8000 …
然后打开浏览器(IE或Firefox),然后输入下面的URL:
http://localhost:8000
如果你的目录下有一个叫 index.html 的文件名的文件,那么这个文件就会成为一个默认页,如果没有这个文件,那么,目录列表就会显示出来。
部分参考的文献
网友评论
npm WARN saveError ENOENT: no such file or directory, open '/usr/local/package.json'
npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN enoent ENOENT: no such file or directory, open '/usr/local/package.json'
npm WARN local No description
npm WARN local No repository field.
npm WARN local No README data
npm WARN local No license field.