1.操做系統
64位CentOS Linux release 7.2.1511 (Core)
2.git是必需的
elasticsearch-head是一款開源軟件,被託管在github上面,因此若是咱們要使用它,必須先安裝git,經過git獲取elasticsearch-head。我一開始在centos上裝了git,可是後來仔細一想,我windows上已經裝過了,不必爲了獲取elasticsearch-head再在centos上裝git。不過既然已經裝了,那咱們就在centos上獲取吧。
可參考個人另外一片文章安裝git:centos7安裝git
3.nodejs也是必需的
運行elasticsearch-head會用到grunt,而grunt須要npm包管理器,因此nodejs是必需要安裝的。
可參考個人另外一片文章安裝nodejs:centos7安裝nodejs
4.單獨部署elasticsearch-head
elasticsearch5.0以後,elasticsearch-head不作爲插件放在其plugins目錄下了,因此能夠單獨部署一臺服務器,不必和elasticsearch部署在同一臺機器html
使用git拷貝elasticsearch-head到本地node
[root@localhost local]# cd /usr/local/git
[root@localhost local]# git clone git://github.com/mobz/elasticsearch-head.gitgithub
[root@localhost _site]# cd /usr/local/elasticsearch-head/web
[root@localhost local]# cnpm installnpm
若是出現下面的黃色警告,不用管,不影響使用。json
npminstall WARN package.json not exists: /usr/local/package.json
[root@localhost _site]# cd /usr/local/elasticsearch-head/windows
[root@localhost elasticsearch-head]# vi Gruntfile.jscentos
在connect-->server-->options下面添加:hostname:’*’,容許全部IP能夠訪問跨域
[root@localhost elasticsearch-head]# cd /usr/local/elasticsearch-head/_site/
[root@localhost _site]# vi app.js
將this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://localhost:9200";中的localhost修改爲你es的服務器地址,個人是:192.168.1.60:9200
進入elasticsearch服務器,打開elasticsearch的配置文件elasticsearch.yml,在文件末尾追加下面兩行代碼便可:
http.cors.enabled: true
http.cors.allow-origin: "*"
若是想在別的機器上訪問,防火牆必須開啓9100端口
永久打開9100端口
[root@localhost elasticsearch-head]# firewall-cmd --zone=public --add-port=9100/tcp --permanent
重啓防火牆
[root@localhost elasticsearch-head]# firewall-cmd --reload
這裏就不介紹了。
只有啓動了elasticsearch,鏈接的時候才能鏈接上。
下面是我我的整理的一些筆記,有興趣能夠看下
centos7 elasticsearch之kibana安裝
[root@localhost _site]# cd /usr/local/elasticsearch-head/
[root@localhost elasticsearch-head]# node_modules/grunt/bin/grunt server
[root@localhost elasticsearch-head]# cd /usr/local/elasticsearch-head/ [root@localhost elasticsearch-head]# node_modules/grunt/bin/grunt server Running "connect:server" (connect) task Waiting forever... Started connect web server on http://localhost:9100
如上,表示elasticsearch-head啓動成功
瀏覽器輸入網址:http://192.168.1.20:9100/
http://www.cnblogs.com/valor-xh/p/6293689.html
http://www.cnblogs.com/xing901022/p/6030296.html
若有錯誤,歡迎指正,共同窗習。