您好,登錄后才能下訂單哦!
一、 安裝JDK
1.1下載安裝
cd /usr/local/src
tar -zxvf jdk-8u131-linux-x64.tar.gz
mv jdk1.8.0_131 /usr/local/java
?
1.2修改配置文件
vim /etc/profile????????????????????? //最后面添加
export?JAVA_HOME=/usr/local/java CLASSPATH=/usr/local/java/lib/dt.jar/usr/local/java/lib/tools.jar PATH=/usr/local/java/bin:$PATH export?PATH?JAVA_HOMECLASSPATH
source /etc/profile???? //導(dǎo)入配置文件
java -version ? ? ? ? ? ? ?//查看java版本
?
二、安裝Elasticsearch
官網(wǎng):https://www.elastic.co/downloads
參考:http://blog.csdn.net/u013365215/article/details/70159159
2.1下載安裝
cd /usr/local/src/
curl -L -O?https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.4.0.tar.gz
tar -xvf elasticsearch-5.4.0.tar.gz
mv elasticsearch-5.4.0 /usr/local/
cd /usr/local/elasticsearch-5.4.0/
2.2系統(tǒng)調(diào)優(yōu)
1)配置系統(tǒng)最大打開文件描述符數(shù)
vim /etc/sysctl.conf
vm.max_map_count?=?262144
執(zhí)行以下命令生效
sysctl -p
?
2)配置進(jìn)程最大打開文件描述符
vim /etc/security/limits.conf?????????? //文件最后
*?soft?nofile?65536 *?hard?nofile?65536
?
2.3編寫ES Master節(jié)點(diǎn)配置文件
vim config/elasticsearch.yml
cluster.name:?my-es node.name:?node-1 network.host:?192.168.19.141 http.port:?9200 transport.tcp.port:?9300 discovery.zen.ping.unicast.hosts:?["192.168.19.141","192.168.19.142","192.168.19.143"] discovery.zen.minimum_master_nodes:?2 #避免出現(xiàn)跨域問題 http.cors.enabled:?true http.cors.allow-origin:?"*"
第二個(gè)、第三個(gè)節(jié)點(diǎn)的配置只需修改成對(duì)應(yīng)的即可。
2.4啟動(dòng)ES
用root賬號(hào)啟動(dòng)會(huì)報(bào)錯(cuò):java.lang.RuntimeException: can not runelasticsearch as root
? ? ? ? ? ? ? ? ? ? ? ??
因?yàn)镋lasticsearch6.0之后,不能使用root賬戶啟動(dòng),我們先創(chuàng)建一個(gè)elasticsearch組和賬戶:
groupadd elsearch
useradd elsearch -g elsearch -p elasticsearch
chown -R elsearch.elsearch /usr/local/elasticsearch-5.4.0/
后臺(tái)啟動(dòng):
su - elsearch -c "/usr/local/elasticsearch-5.4.0/bin/elasticsearch -d"
2.5安裝head開源插件
參考:http://blog.csdn.net/ronmy/article/details/63685254
只在master上安裝插件即可。elasticsearch6不可以直接通過plugin -install mobz/elasticsearch-head安裝,并且head需要在node環(huán)境下運(yùn)行,具體步驟如下:
第一步:安裝node
curl -sL -o /etc/yum.repos.d/khara-nodejs.repohttps://copr.fedoraproject.org/coprs/khara/nodejs/repo/epel-7/khara-nodejs-epel-7.repo
yum install -y nodejs nodejs-npm
查看安裝版本
?
第二步:安裝grunt
cd /usr/lib/node_modules/npm/
npm install grunt-cli
npm install grunt
查看版本:
/usr/lib/node_modules/npm/node_modules/.bin/grunt -version
第三步:安裝head
yum install -y git
cd /usr/local/
git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head/
npm install
注意:這步可以會(huì)有一些報(bào)錯(cuò)信息,可以忽略。
?
vim _site/app.js
#?修改?『http://localhost:9200』字段到本機(jī)ES端口與IP
?
第四步:?jiǎn)?dòng)head并在后臺(tái)運(yùn)行
./node_modules/grunt/bin/gruntserver &
瀏覽器訪問:
注意:若不能形成集群,可能是 iptables 或者 selinux 的原因
?
2.6開機(jī)自啟
vim /etc/rc.local
su?-?elsearch?-c?"/usr/local/elasticsearch-5.3.1/bin/elasticsearch?-d" /usr/local/elasticsearch-head/node_modules/grunt/bin/grunt?server?&
保存退出后,給自啟文件賦予執(zhí)行權(quán)限(若不加,Centos7不會(huì)開機(jī)執(zhí)行)
chmod +x /etc/rc.d/rc.local
?
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。