(转)Elasticsearch NoNodeAvailableException None of the configured nodes are available
問(wèn)題背景:
將es部署到內(nèi)網(wǎng)中兩臺(tái)服務(wù)器,其Ip地址分別為:192.111.222.5,192.111.222.1(部署方式完全一樣,是將192.111.222.1服務(wù)器上es整個(gè)部署包,拷貝到了192.111.222.5,包括索引文件)。
在開(kāi)發(fā)本機(jī)(IP:192.111.222.36)通過(guò)idea編譯直接運(yùn)行代碼,從而連接對(duì)應(yīng)es的服務(wù)器,連接192.111.222.1就沒(méi)有任何問(wèn)題,但連接192.111.222.5,就會(huì)報(bào)出異常,具體異常信息如下:
| 1 2 3 4 5 6 7 8 9 10 | NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{192.111.222.5}{192.111.222.5:9300}]] at org.elasticsearch.client.transport.TransportClientNodesService.ensureNodesAreAvailable(TransportClientNodesService.java:290) ????at org.elasticsearch.client.transport.TransportClientNodesService.execute(TransportClientNodesService.java:207) ????at org.elasticsearch.client.transport.support.TransportProxyClient.execute(TransportProxyClient.java:55) ????at org.elasticsearch.client.transport.TransportClient.doExecute(TransportClient.java:286) ????at org.elasticsearch.client.support.AbstractClient.execute(AbstractClient.java:351) ????at org.elasticsearch.client.support.AbstractClient$IndicesAdmin.execute(AbstractClient.java:1187) ????at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:85) ????at org.elasticsearch.action.ActionRequestBuilder.execute(ActionRequestBuilder.java:59) ????at org.elasticsearch.action.ActionRequestBuilder.get(ActionRequestBuilder.java:67) |
解決辦法:將192.111.222.5服務(wù)器上配置文件elasticsearch.yml,具體位置如下
修改配置文件中的network.host項(xiàng),將network.host: 0.0.0.0修改為本機(jī)ipnetwork.host: 192.111.222.5,搞定。
具體如下:
但有個(gè)問(wèn)題就是192.111.222.1配置文件中的network.host項(xiàng)一直為network.host: 0.0.0.0,但可以正常訪問(wèn)啊,為什么192.111.222.5就需要修改為本機(jī)ip了?暫時(shí)沒(méi)有搞清楚,希望有知道的朋友,留個(gè)言,幫我解一下惑。
轉(zhuǎn)自:https://www.2cto.com/kf/201611/571168.html
轉(zhuǎn)載于:https://www.cnblogs.com/zhangmingcheng/p/7590762.html
總結(jié)
以上是生活随笔為你收集整理的(转)Elasticsearch NoNodeAvailableException None of the configured nodes are available的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: saltstack之keepalived
- 下一篇: 开启爬虫之路,从零开始...