3
votes

I have copied plugins to plugins folder in rabbitmq-server.

When I run command to enable stomp plugin like the following:

$rabbitmq-plugins enable rabbitmq_stomp

Plugin configuration remains unchanged.

Applying plugin configuration to rabbit@pts00449-vm19... failed. Error: {enabled_plugins_mismatch,"/etc/rabbitmq/enabled_plugins", "/does-not-exist"}

Can anyone please help me?

1
are you using the RabbitMQ server on windows platform?Rezoan
@rezoan I am using rhel platformR_SS
I am unable to restart server.But I am able to run testcases related to stomp plugin. Which are all passing.R_SS

1 Answers

2
votes

There is plugins mismatch in your "enabled_plugins" directory. Please check if you have enabled "rabbitmq_stomp" twice.

Try to disable the rabbitmq_stomp plugin and then you may restart the rabbitmq-server doing following steps:

rabbitmq-plugins disable rabbitmq_stomp

rabbitmq-server start