[ConfigureAndWatch Thread-SendThread(127.0.0.1:2181)] INFO org.apache.zookeeper.ClientCnxn - Opening socket connection to server 127.0.0.1/127.0.0.1:2181. Will not attempt to authenticate using SASL (unknown error) [ConfigureAndWatch Thread-SendThread(127.0.0.1:2181)] WARN org.apache.zookeeper.ClientCnxn - Session 0x0 for server null, unexpected error, closing socket connection and attempting reconnect java.net.ConnectException: Connection refused: no further information
时间: 2024-04-04 08:31:08 浏览: 665
这段信息是来自于 Apache ZooKeeper 客户端,它在尝试连接到 ZooKeeper 服务端时出现了连接被拒绝的错误。可能的原因包括:ZooKeeper 服务未启动或未在正确的端口上运行,防火墙或网络设置阻止了客户端与服务端的通信。您可以检查 ZooKeeper 服务是否已启动并在正确的端口上监听,以及确保客户端和服务端之间没有防火墙或网络问题。
相关问题
2023-06-09 10:42:01,576 INFO [localhost-startStop-1-SendThread(10.0.74.127:2181)] [org.apache.zookeeper.ClientCnxn:1166] - Socket error occurred: 10.0.74.127/10.0.74.127:2181: Connection refused
这也是一个Java应用程序在启动时输出的日志信息。其中包含了应用程序与ZooKeeper服务器进行通信的相关信息。具体来说,这条日志信息表示该应用程序在向IP地址为10.0.74.127,端口号为2181的ZooKeeper服务器发起连接请求时,遇到了连接被拒绝的错误。可能的原因是ZooKeeper服务器未启动或者端口号设置错误。
2023-06-09 10:42:01,574 INFO [localhost-startStop-1-SendThread(10.0.74.127:2181)] [org.apache.zookeeper.ClientCnxn:1029] - Opening socket connection to server 10.0.74.127/10.0.74.127:2181. Will not attempt to authenticate using SASL (unknown error)
这是一个Java应用程序在启动时输出的日志信息。其中包含了应用程序与ZooKeeper服务器进行通信的相关信息。具体来说,这条日志信息表示该应用程序正在向IP地址为10.0.74.127,端口号为2181的ZooKeeper服务器发起连接请求,并且该应用程序不会使用SASL进行认证(原因是未知的错误)。
阅读全文