Reputation: 355
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?
Upvotes: 3
Views: 3331
Reputation: 108
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
Upvotes: 2