Elasticsearch 5.0 —— Head外掛部署指南(Head目前支援5.0了!請不要看本篇文章了)

xingoo發表於2016-11-04

使用ES的基本都會使用過head,但是版本升級到5.0後,head外掛就不好使了。下面就看看如何在5.0中啟動Head外掛吧!

Head目前支援5.0了!請不要看本篇文章了

Head目前支援5.0了!請不要看本篇文章了

Head目前支援5.0了!請不要看本篇文章了

Head目前支援5.0了!請不要看本篇文章了

官方粗略教程

Running with built in server

enable cors by adding http.cors.enabled: true in elasticsearch configuration. Don’t forget to also set http.cors.allow-origin because no origin allowed by default. http.cors.allow-origin: "*" is valid value, however it’s considered as a security risk as your cluster is open to cross origin from anywhere.

Check Elasticsearch documentation on this parameter:

git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
npm install
grunt server

open http://localhost:9100/
This will start a local webserver running on port 9100 serving elasticsearch-head

Best option if you are likely to connect to several different clusters

部署5.0版本的ES

5.0版本的ES跟之前的版本最大的不同之處就是多了很多環境的校驗,比如jdk,max-files等等。

設定核心引數

vi /etc/sysctl.conf
# 增加下面的內容
fs.file-max=65536
vm.max_map_count=262144

設定資源引數

vi /etc/security/limits.conf
# 修改
* soft nofile 32768
* hard nofile 65536

修改程式數

ulimit -u 2048

修改elasticsearch的引數

修改一下es使用的引數:

# 換個叢集的名字,免得跟別人的叢集混在一起
cluster.name: es-5.0-test

# 換個節點名字
node.name: node-101

# 修改一下ES的監聽地址,這樣別的機器也可以訪問
network.host: 0.0.0.0

# 預設的就好
http.port: 9200

# 增加新的引數,這樣head外掛可以訪問es
http.cors.enabled: true
http.cors.allow-origin: "*"

注意,設定引數的時候:後面要有空格!

安裝部署head

第一步,安裝git

需要從github上面下載程式碼,因此先要安裝git

yum -y install git

安裝完成後,就可以直接下載程式碼了:

git clone git://github.com/mobz/elasticsearch-head.git

下載後,修改下777許可權(簡單粗暴),因為是獨立啟動head的,所以隨便放一個位置就行了,參考:

/usr/elk/head/*****

第二步,安裝node

由於head外掛本質上還是一個nodejs的工程,因此需要安裝node,使用npm來安裝依賴的包。(npm可以理解為maven)

去官網下載nodejs,https://nodejs.org/en/download/

Elasticsearch 5.0 —— Head外掛部署指南(Head目前支援5.0了!請不要看本篇文章了)

下載下來的jar包是xz格式的,一般的linux可能不識別,還需要安裝xz.

yum -y install xz

然後解壓nodejs的安裝包:

xz -d node*.tar.xz
tar -xvf node*.tar

解壓完node的安裝檔案後,需要配置下環境變數,編輯/etc/profile,新增

# set node environment
export NODE_HOME=/usr/elk/node-v6.9.1-linux-x64
export PATH=$PATH:$NODE_HOME/bin

別忘記立即執行以下

source /etc/profile

這個時候可以測試一下node是否生效:

[root@localnode1 node-v6.9.1-linux-x64]# echo $NODE_HOME
/usr/elk/node-v6.9.1-linux-x64
[root@localnode1 node-v6.9.1-linux-x64]# node -v
v6.9.1
[root@localnode1 node-v6.9.1-linux-x64]# npm -v
3.10.8

第三步,安裝grunt

grunt是一個很方便的構建工具,可以進行打包壓縮、測試、執行等等的工作,5.0裡的head外掛就是通過grunt啟動的。因此需要安裝一下grunt:

npm install grunt-cli

安裝完成後檢查一下:

[root@localnode1 elasticsearch-head]# grunt -version
grunt-cli v1.2.0
grunt v0.4.5

第四步,修改head原始碼

由於head的程式碼還是2.6版本的,直接執行有很多限制,比如無法跨機器訪問。因此需要使用者修改兩個地方:

修改伺服器監聽地址

目錄:head/Gruntfile.js

connect: {
    server: {
        options: {
            port: 9100,
            hostname: '*',
            base: '.',
            keepalive: true
        }
    }
}

增加hostname屬性,設定為*

修改連線地址:

目錄:head/_site/app.js

修改head的連線地址:

this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://localhost:9200";

把localhost修改成你es的伺服器地址,如:

this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://10.10.10.10:9200";

第五步,執行head

首先開啟5.0 ES。

然後在head目錄中,執行npm install 下載以來的包:

npm install 

最後,啟動nodejs

grunt server

訪問:target:9100

這個時候,訪問http://xxx:9100就可以訪問head外掛了.

Elasticsearch 5.0 —— Head外掛部署指南(Head目前支援5.0了!請不要看本篇文章了)

參考

head官方文件

相關文章