RabbitMQ 在单台机器上的集群失败

Clustering on single machine fails with RabbitMQ

我正在使用 RabbitMQ。我正在尝试在 Window 7 台机器上进行集群。我按照下面的程序 link.

http://www.rabbitmq.com/clustering.html#single-machine

我使用了以下命令。

SET RABBITMQ_NODE_PORT=5673 
SET RABBITMQ_SERVER_START_ARGS="-rabbitmq_management listener [{port,15673}]" 
SET RABBITMQ_NODENAME=hare 
rabbitmq-server -detached

当我发出命令时,出现以下错误。

BOOT FAILED
===========

Error description:
   {could_not_start,rabbitmq_stomp,
       {{shutdown,
            {failed_to_start_child,'rabbit_stomp_listener_sup_:::61613',
                {shutdown,
                    {failed_to_start_child,tcp_listener,
                        {cannot_listen,{0,0,0,0,0,0,0,0},61613,eaddrinuse}}}}},
        {rabbit_stomp,start,[normal,[]]}}}

Log files (may contain more information):
   C:/Users/IISU45/AppData/Roaming/RabbitMQ/log/hare .log
   C:/Users/IISU45/AppData/Roaming/RabbitMQ/log/hare -sasl.log

{"init terminating in do_boot",{could_not_start,rabbitmq_stomp,{{shutdown,{faile
d_to_start_child,'rabbit_stomp_listener_sup_:::61613',{shutdown,{failed_to_start
_child,tcp_listener,{cannot_listen,{0,0,0,0,0,0,0,0},61613,eaddrinuse}}}}},{rabb
it_stomp,start,[normal,[]]}}}}
init terminating in do_boot ()

上面我也去过link:

但我仍然面临同样的问题。

RabbitMQ 版本:rabbitmq-server-3.5.0

您已启用 https://www.rabbitmq.com/stomp.html 插件。

端口 61613 正在使用中。

同时更改 stomp 端口:

[
  {rabbitmq_stomp, [{tcp_listeners, [{"127.0.0.1", 61614},
                                     {"::1",       61614}]}]}
].

我也遇到了同样的问题。我的解决方案是:关闭兔子冲突插件。

  1. 使用 rabbitmq-plugins 列表显示启用插件。
  2. Base rabbitmq-plugins list 结果,禁用冲突端口插件。比如你的冲突端口是61613,冲突插件是rabbit_stomp。尽可能禁用冲突插件,你可以创建两个rabbitmq节点。