RabbitMq报错解决java.net.SocketTimeoutException: connect timed out

问题情景:

本地代码运行没有问题,在阿里云上配置好rabbitmq后,访问阿里云 ip:15672登陆后,配置好权限。但是后台代码运行报错 connect timed out。

Attempting to connect to: [服务器ip:5672]
2020-03-25 16:12:30.723 ERROR [user-center,38ff86eaf3672f24,c16a2d6315749117,false] 11430 --- [http-nio-auto-1-exec-2] o.s.c.s.i.web.ExceptionLoggingFilter     : Uncaught exception thrown

org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.springframework.amqp.AmqpIOException: java.net.SocketTimeoutException: connect timed out

注意:阿里云没有配置安全组规则,RabbitMQ需要配置两个安全规则,一个管理工具的端口15672,一个5672。配置这两个就可以了,然后阿里云就不会把他们拦住了。

原因:只开放了15672端口,可以登陆rabbitmq的管理平台,没有开放5672端口。

你可能感兴趣的:(RabbitMq报错解决java.net.SocketTimeoutException: connect timed out)