【发布时间】:2020-07-04 15:07:59
【问题描述】:
我在 Windows 10 上安装了 rabbit MQ 3.8.3,我可以看到它作为 Windows 服务运行。 当我尝试访问http://localhost:15672/ 时,它无法访问。
我已在 sbin 目录中启用了 rabbit MQ 管理插件 rabbitmq-plugins 启用 rabbitmq_management
但是,http://localhost:15672/ 仍然无法访问。
在java服务中出现以下错误:
org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect
我还运行了命令来查看端口 5672 上是否有任何东西在运行:
命令:netstat -ano | find "5672"
回复:TCP 0.0.0.0:25672 0.0.0.0:0 LISTENING 2900
我该如何解决这个问题?
【问题讨论】:
-
Rabbit 服务似乎没有运行。检查进程的任务管理器?
-
我可以看到它计算机管理 -> 服务和应用程序@PradiptaSarma