這篇文章給大家分享的是Linux中ElasticSearch的詳細(xì)安裝部署教程,相信大部分人都還不知道怎么安裝部署,為了讓大家學(xué)會,給大家總結(jié)了以下內(nèi)容,話不多說,一起往下看吧。
成都創(chuàng)新互聯(lián)公司于2013年創(chuàng)立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站建設(shè)、成都做網(wǎng)站網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元拜泉做網(wǎng)站,已為上家服務(wù),為拜泉各地企業(yè)和個人服務(wù),聯(lián)系電話:189820811081. 操作系統(tǒng):CentOS 7.4
2. 安裝Elasticsearch前提條件:JDK1.8及以上,我這里使用的版本是 jdk1.8.0_181
3. 目前Elasticsearch最新的版本是 7.5.1,我這里使用的版本是 5.2.2
說明:ElasticSearch的運(yùn)行不能用root執(zhí)行,必須普通用戶來啟動。
一、jdk 安裝
JDK安裝
二、elasticsearch安裝1.創(chuàng)建用戶 [root@test-01 ~]# groupadd elastic [root@test-01 ~]# useradd elastic -g elastic -m
2.下載安裝 [root@test-01 ~]# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.2.2.tar.gz [root@test-01 ~]# tar zxvf elasticsearch-5.2.2.tar.gz [root@test-01 ~]# mv elasticsearch-5.2.2 /usr/loca/elasticsearch //創(chuàng)建數(shù)據(jù)及日志目錄 [root@test-01 ~]# mkdir -p /data/elasticsearch/data [root@test-01 ~]# mkdir -p /data/elasticsearch/logs //添加權(quán)限 [root@test-01 ~]# chown elastic:elastic elasticsearch /usr/loca/elasticsearch -R [root@test-01 ~]# chown elastic:elastic elasticsearch /data/elasticsearch/logs -R [root@test-01 ~]# chown elastic:elastic elasticsearch /data/elasticsearch/data -R
3.修改配置文件(修改方法參考如下:)集群配置文件略同 [root@test-01 ~]# cat /usr/local/elasticsearch/config/elasticsearch.ym l egrep -v '^(#|$)' cluster.name: es_cluster node.name: node-01 //隨機(jī)定義 node.master: true //主true 從false node.data: true path.data: /data/elasticsearch/data path.logs: /data/elasticsearch/logs network.host: 192.168.0.164 http.port: 9200 transport.tcp.port: 9300 discovery.zen.ping.unicast.hosts: ["192.168.0.165", "192.168.0.164"] discovery.zen.minimum_master_nodes: 1 xpack.security.enabled: true http.cors.enabled: true http.cors.allow-origin: "*" http.cors.allow-headers: Authorization,Content-Type xpack.security.authc: accept_default_password: true
解釋說明: bootstrap.memory_lock: false bootstrap.system_call_filter: false 一看就知道是關(guān)于內(nèi)用訪問的方面的配置 cluster.name 集群名字,同一個集群中使用相同名字,單機(jī)就隨意 node.name: node-01 節(jié)點(diǎn)名字 node.master: 是否為集群的master機(jī)器 node.data: true 是否作為數(shù)據(jù)節(jié)點(diǎn) network.host: 192.168.0.164 這個不用自然是配置ip地址的,也可以配置成0.0.0.0 http.port: 9200 端口號,不配置的話默認(rèn)9200 discovery.zen.ping.unicast.hosts: [“192.168.0.165”,”192.168.0.164”] 這個就是配置集群的時(shí)候要用的到了,[]中填上集群中其他集群的ip的地址,如果是master的話請把所有salve的機(jī)器地址填上 discovery.zen.minimum_master_nodes: 1 關(guān)于這個值配置多少合適的話大家去搜一下,自己權(quán)衡一下集群,這里我用了3臺機(jī)器模擬集群,所以填上2。 http.cors.enabled: true 這個參數(shù)的設(shè)置和下面一個配置就關(guān)于ip的訪問策略了,如果你發(fā)現(xiàn)其他ip地址訪問不了就有可以這參數(shù)沒有配置
4.調(diào)整系統(tǒng)參數(shù) [root@test-01 ~]# vim /etc/security/limits.conf root soft nofile 65535 root hard nofile 65535 * soft nofile 65536 * hard nofile 131072 * soft nproc 2048 [root@test-01 ~]# vim /etc/sysctl.conf vm.max_map_count=662144 vm.overcommit_memory = 1 執(zhí)行命令,使配置文件生效 [root@test-01 ~]# sysctl –p
5.啟動與停止 [root@test-01 ~]# su elastic -c "/usr/local/elasticsearch/bin/elasticsearch -d" [root@test-01 ~]# kill -9 `ps aux|grep [e]lasticsearch |grep -v tail|awk '{print $2}'`
三、安裝head插件 一般安裝在/usr/local/elasticsearch/elasticsearch-head路徑下 1.安裝node 源碼安裝方法如下: [root@test-01 ~]# yum -y install gcc make gcc-c++ openssl-devel 下載源碼及解壓: [root@test-01 ~]# wget http://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-x64.tar.gz [root@test-01 ~]# tar zxvf node-v4.4.7-linux-x64.tar.gz [root@test-01 ~]# mv node-v4.4.7-linux-x64 /usr/local/node [root@test-01 ~]# ln -s /usr/local/node/bin/node /usr/local/bin/node [root@test-01 ~]# ln -s /usr/local/node/bin/npm /usr/local/bin/npm [root@test-01 ~]# node -v 2.安裝grunt grunt是一個很方便的構(gòu)建工具,可以進(jìn)行打包壓縮、測試、執(zhí)行等等的工作,5.2里的head插件就是通過grunt啟動的。因此需要安裝一下grunt: [root@test-01 ~]# git clone git://github.com/mobz/elasticsearch-head.git [root@test-01 ~]# cd elasticsearch-head [root@test-01 ~]# npm install -g grunt-cli //執(zhí)行后會生成node_modules文件夾 [root@test-01 ~]# npm install 注意:5.0以上,elasticsearch-head 不能放在elasticsearch的 plugins、modules 目錄下,否則elasticsearch啟動會報(bào)錯。 修改vim Gruntfile.js文件:增加hostname屬性,設(shè)置為*
3.啟動grunt [root@test-01 ~]# grunt server & 不安裝 grunt 也可以啟動: [root@test-01 ~]# npm run start &
看完這篇文章,你們學(xué)會在Linux中ElasticSearch的安裝部署了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
網(wǎng)頁名稱:Linux中ElasticSearch的安裝部署-創(chuàng)新互聯(lián)
本文鏈接:http://vcdvsql.cn/article40/hsjho.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃、品牌網(wǎng)站設(shè)計(jì)、品牌網(wǎng)站制作、微信小程序、企業(yè)網(wǎng)站制作、外貿(mào)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容