简体   繁体   中英

rabbitmq shovel state always starting

With the following rabbitmq config

[   {mnesia, [{dump_log_write_threshold, 100}]},
    {rabbit, [{vm_memory_high_watermark, 0.4}]},
    {rabbitmq_shovel,
        [{shovels,
            [{devShovel,
                [{sources, [{broker, "amqp://shoveluser:shoveluser@server2:5672"}]},
                 {destinations, [{broker, "amqp://shoveluser:shoveluser@localhost:5672"}]},
                 {queue, <<"queue">>},
                 {publish_fields,[{exchange,<<"DataExchange">>}]}
                ]
            }]

        }]
    }
].

and all of the relevant queues / exchanges declared I am able to start my rabbitmq server. However, when I check the shovel management, the plugin always displays starting as the state of the shovel. What causes this and is there any way to get more info ?

确保检查用户在代理上的设置是否正确。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM