課程
/云計(jì)算&大數(shù)據(jù)
/大數(shù)據(jù)
/ElasticSearch入門(mén)
?出現(xiàn)not enough master nodes discovered during pinging怎么解決?
2019-08-15
源自:ElasticSearch入門(mén) 2-4
正在回答
可能需要在系統(tǒng)環(huán)境中,修改文件配置信息,然后即可啟動(dòng)成功。
(1)切換到root用戶(hù),編輯limits.conf 添加類(lèi)似如下內(nèi)容
[root@hadoop102 elasticsearch-5.2.2]# vi /etc/security/limits.conf
添加如下內(nèi)容:
* soft nofile 65536
* hard nofile 131072
* soft nproc 2048
* hard nproc 4096
(2)切換到root用戶(hù),進(jìn)入limits.d目錄下修改配置文件。
[root@hadoop102 elasticsearch-5.2.2]# vi /etc/security/limits.d/90-nproc.conf
修改如下內(nèi)容:
* soft nproc 1024
#修改為
(3)切換到root用戶(hù)修改配置sysctl.conf
[root@hadoop102 elasticsearch-5.2.2]# vi /etc/sysctl.conf?
添加下面配置:
vm.max_map_count=655360
并執(zhí)行命令:
[root@hadoop102 elasticsearch-5.2.2]# sysctl -p
然后,重新啟動(dòng)elasticsearch,即可啟動(dòng)成功。
舉報(bào)
ElasticSearch輕松入門(mén),Spring Boot集成ES
2 回答集群時(shí)工作原理是怎么樣的,master掛了怎么辦,可以指定多個(gè)master嗎?
1 回答集群部署多個(gè)master會(huì)怎么樣?
1 回答postman訪問(wèn)后出現(xiàn)org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [{#transport#-1}{NTtyazdFSt-TNLdVH0zAAQ}{127.0.0.1}{127.0.0.1:9300}]
2 回答None of the configured nodes are available
4 回答None of the configured nodes are available:
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢(xún)優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2019-08-15
可能需要在系統(tǒng)環(huán)境中,修改文件配置信息,然后即可啟動(dòng)成功。
(1)切換到root用戶(hù),編輯limits.conf 添加類(lèi)似如下內(nèi)容
[root@hadoop102 elasticsearch-5.2.2]# vi /etc/security/limits.conf
添加如下內(nèi)容:
* soft nofile 65536
* hard nofile 131072
* soft nproc 2048
* hard nproc 4096
(2)切換到root用戶(hù),進(jìn)入limits.d目錄下修改配置文件。
[root@hadoop102 elasticsearch-5.2.2]# vi /etc/security/limits.d/90-nproc.conf
修改如下內(nèi)容:
* soft nproc 1024
#修改為
* soft nproc 2048
(3)切換到root用戶(hù)修改配置sysctl.conf
[root@hadoop102 elasticsearch-5.2.2]# vi /etc/sysctl.conf?
添加下面配置:
vm.max_map_count=655360
并執(zhí)行命令:
[root@hadoop102 elasticsearch-5.2.2]# sysctl -p
然后,重新啟動(dòng)elasticsearch,即可啟動(dòng)成功。