elasticsearch6.6.0安裝配置及elasticsearch-head插件安裝
一、最小化安裝centos7.6
cat /etc/redhat-release
二、配置網絡,可以上外網
三、安裝常用命令工具,修改系統時區,校對系統時間,關閉selinux,關閉firewalld,修改主機名,修改系統文件描述符,內存鎖限制及vm.max_map_count 數量(否則啟動elasticsearch時報錯)
1、安裝常用命令工具
yum install vim net-tools bash-completion wget unzip ntp bzip2 -y
2、修改系統時區,校對系統時間
timedatectl set-timezone Asia/Shanghai
ntpdate pool.ntp.org
3、關閉selinux
vi /etc/selinux/config
4、關閉防火墻
systemctl restart firewalld.service
systemctl disable firewalld.service
5、修改主機名
vi /etc/hostname
6、修改系統文件描述符大小
vim /etc/security/limits.conf
最後添加:
* soft nofile 655360
* hard nofile 655360
* soft nproc 655360
* hard nproc 655360
* soft memlock unlimited
* hard memlock unlimited
7、修改 vm.max_map_count值
vi /etc/sysctl.conf
最後添加:
vm.max_map_count = 655360
8、重啟系統使配置生效
init 6
四、安裝elasticsearch
1、安裝java1.8
yum install java-1.8.0-openjdk -y
設置java環境變量
vim /etc/profile
export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.191.b12-1.el7_6.x86_64
export CLASSPATH=:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar:$JRE_HOME/lib
export JRE_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.191.b12-1.el7_6.x86_64/jre
export PATH=$PATH:$JAVA_HOME/bin:$JRE_HOME/bin
source /etc/profile
2、官網下載最新版elasticsearch
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.6.0.tar.gz
tar -zxf elasticsearch-6.6.0.tar.gz
mv elasticsearch-6.6.0 /opt/elasticsearch
3、添加elasticsearch用戶,用來啟動elasticsearch
groupadd elasticsearch
useradd elasticsearch -g elasticsearch
4、將elasticsearch目錄授權給elasticsearch用戶
chown -R elasticsearch:elasticsearch /opt/elasticsearch
5、修改elasticsearch配置文件
vim /opt/elasticsearch/config/elasticsearch.yml
最後添加:
cluster.name: logsearch
node.name: node-1
path.data: /opt/elasticsearch/data
path.logs: /opt/elasticsearch/logs
bootstrap.memory_lock: true
network.host: 0.0.0.0
http.port: 9200
#discovery.zen.ping.unicast.hosts: ["192.168.0.58", "192.168.0.59", "192.168.0.60"]
#discovery.zen.minimum_master_nodes: 2
http.cors.enabled: true
http.cors.allow-origin: "*"
http.cors.allow-credentials: true
http.cors.allow-headers: Authorization,X-Requested-With,Content-Length,Content-Type
6、切換到elasticsearch用戶啟動elasticsearch
su - elasticsearch
/opt/elasticsearch/bin/elasticsearch -d
7、用瀏覽器測試是否正常http://192.168.0.58:9200
五、安裝elasticsearch-head插件
1、下載elasticsearch-head-master.zip包
wget https://github.com/mobz/elasticsearch-head/archive/master.zip
unzip master.zip
mv elasticsearch-head-master /opt/
2、安裝node
由於head插件本質上還是一個nodejs的工程,因此需要安裝node,使用npm來安裝依賴的包。
wget https://nodejs.org/dist/v10.15.0/node-v10.15.0-linux-x64.tar.xz
xz -d node-v10.15.0-linux-x64.tar.xz
tar -xf node-v10.15.0-linux-x64.tar
mv node-v10.15.0-linux-x64 /opt/
添加node環境變量
vim /etc/profile
添加:
export NODE_HOME=/opt/node-v10.15.0-linux-x64
export PATH=$PATH:$NODE_HOME/bin
source /etc/profile
測試node是否安裝成功
3、安裝grunt(grunt是基於Node.js的項目構建工具,可以進行打包壓縮、測試、執行等等工作,elasticsearch-head插件就是通過grunt啟動的)
cd /opt/elasticsearch-head-master/
npm install -g grunt-cli
grunt -version測試是否安裝成功
修改elasticsearch-head-master下Gruntfile.js配置文件,添加hostname: ‘*‘,
vim Gruntfile.js
更換npm源
npm install -g cnpm --registry=https://registry.npm.taobao.org
使用cnpm安裝
cnpm install
安裝完成後沒有報錯的話啟動elasticsearch-head-master
grunt server &
通過瀏覽器測試是否正常
http://192.168.0.58:9100/
elasticsearch6.6.0安裝配置及elasticsearch-head插件安裝