zoukankan      html  css  js  c++  java
  • elasticsearch 使用tcp 访问NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{Yk0WjtKbQXqYCJSDFRYlRA}

        默认的 elasticsearch.yml 端口是9200,是给tcp提供的。如果想使用 自带的  TransportClient 需要配置为 tcp 的9300端口。配置方式为: 在/config/elasticsearch.yml 里面添加:

    # 设置节点间交互的tcp端口,默认是9300
    #transport.tcp.port: 9300
    

     2.自己的问题

    还是 elasticsearch.yml的配置问题  

    自己把 transport.host配置为了 localhost. 之后使用命令

    netstat -tlnp|grep 9304 后 看到

    (Not all processes could be identified, non-owned process info

     will not be shown, you would have to be root to see it all.)

    tcp        0      0 localhost:9304            0.0.0.0:*               LISTEN      13842/java 

     

    同事说,这个只能本机能访问到。 之后 telnet ip  9304之后果然是。。。 改为了 0.0.0.0即可。问题解决。

    transport.host: 0.0.0.0

    transport.tcp.port: 9304

    3.Unable to revive connection: http://localhost:9200/

    启动kibana报这个问题:原因是 配置在elasticsearch.yml配置了

    network.bind_host: 172.16.145.205

     

  • 相关阅读:
    密码验证合格程序(Python)
    Python找到所有子集
    Semi-Supervised Classification with Graph Convolutional Networks 阅读笔记
    2018 ICPC南京网络赛 L Magical Girl Haze 题解
    2018 CCPC网络赛 hdu6444 Neko's loop
    2018 CCPC 网络赛 Buy and Resell
    实对称矩阵可对角化证明
    矩阵的极分解证明
    关于欧几里得空间上的仿射变换的直观几何理解
    Codeforces Hello 2018 E题Logical Expression dp+最短路 好题
  • 原文地址:https://www.cnblogs.com/thinkingandworkinghard/p/9883943.html
Copyright © 2011-2022 走看看