centos7安裝elasticsearch-head

elasticsearch-head安裝前準備

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

下載elasticsearch-head

使用git拷貝elasticsearch-head到本地node

[root@localhost local]# cd /usr/local/git

[root@localhost local]# git clone git://github.com/mobz/elasticsearch-head.gitgithub

安裝elasticsearch-head依賴包

[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

修改Gruntfile.js

[root@localhost _site]# cd /usr/local/elasticsearch-head/windows

[root@localhost elasticsearch-head]# vi Gruntfile.jscentos

在connect-->server-->options下面添加:hostname:’*’,容許全部IP能夠訪問跨域

修改elasticsearch-head默認鏈接地址:

[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的配置文件elasticsearch.yml,在文件末尾追加下面兩行代碼便可:

http.cors.enabled: true

http.cors.allow-origin: "*"

打開9100端口

若是想在別的機器上訪問,防火牆必須開啓9100端口

永久打開9100端口

[root@localhost elasticsearch-head]# firewall-cmd --zone=public --add-port=9100/tcp --permanent

重啓防火牆

[root@localhost elasticsearch-head]# firewall-cmd --reload

啓動elasticsearch

這裏就不介紹了。

只有啓動了elasticsearch,鏈接的時候才能鏈接上。

下面是我我的整理的一些筆記,有興趣能夠看下

centos7安裝elasticsearch5.2.2

centos7 elasticsearch集羣部署

centos7 elasticsearch之kibana安裝

啓動elasticsearch-head

[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啓動成功

訪問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

 

若有錯誤,歡迎指正,共同窗習。

相關文章
相關標籤/搜索