kafka外网访问不了

1.kafka在远程服务器用shell脚本执行时候发布,消费完全没有问题。

2.采用java编码,此时使用外网ip连接,报错:Connection to node 0 could not be established. Broker may not be available.

3.将server.properties配置中的listeners = PLAINTEXT://localhost:9092改为listeners = PLAINTEXT://外网ip地址:9092

4.发现启动不了,报错:Socket server failed to bind to xxx.xxx.xxx.xxx:9092: Cannot assign requested address.

5.查阅资料得知:

     listeners 是配置本地访问的

    而advertised.listeners是配置远程访问的,默认没有

所以给server.properties新增一条配置:advertised.listeners=PLAINTEXT:/外网ip:9092

访问成功。

 

你可能感兴趣的:(java)