我在Ubuntu 11.10上使用了RabbitMQ 2.8.6并且成功了很长时间 并且最近决定将其升级到最新版本(3.1.x)。
我通过使用管理插件的可能性来使用RabbitMQ的自定义监视 不幸的是,在最新版本上,这台显示器并没有因某种未知原因而起作用。 我甚至试图发送简单的检查可行性的请求
curl -i -u guest:guest http://127.0.0.1:55672/api/overview
并得到奇怪的回应
HTTP/1.1 301 Moved Permanently Server: MochiWeb/1.0 (Any of you quaids got a smint?) Location: http://localhost:15672/api/overview Date: Sat, 11 May 2013 09:37:04 GMT Content-Length: 0
代替(如前所述)
HTTP/1.1 200 OK Server: MochiWeb/1.1 WebMachine/1.9.0 (someone had painted it blue) Date: Sat, 11 May 2013 09:54:49 GMT Content-Type: application/json Content-Length: 1659 Cache-Control: no-cache {"management_version":"2.8.6","statistics_level":"fine",...
我注意到MochiWeb服务器版本被降级了。这是一个RabbitMQ BUG还是我的错误?
答案 0 :(得分:3)
查看官方文档: http://www.rabbitmq.com/blog/2012/11/19/breaking-things-with-rabbitmq-3-0/
管理插件现在侦听15672而不是55672
此外,从回复中可以清楚地看到该页面已永久移至http://localhost:15672/api/overview