使用ES的基本都會使用過head,但是版本升級到5.0後,head插件就不好使了。下麵就看看如何在5.0中啟動Head插件吧! "官方粗略教程" Running with built in server enable cors by adding http.cors.enabled: true in ...
使用ES的基本都會使用過head,但是版本升級到5.0後,head插件就不好使了。下麵就看看如何在5.0中啟動Head插件吧!
官方粗略教程
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
修改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/
下載下來的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插件了.