Run “rabbitmq-plugins enable rabbitmq_management” .. failed

pluginsrabbitmq

Firstly, installed

  1. erlang

  2. rabbitmqserver

Then, try to run command to enable plugin like the following:


C:\Program Files (x86)\RabbitMQ Server\rabbitmq_server-3.6.9\sbin>rabbitmq-plugins enable rabbitmq_management

Plugin configuration unchanged.

Applying plugin configuration to rabbit@PVGN50886410A… failed.

  • Could not contact node rabbit@PVGN50886410A.
    Changes will take effect at broker restart.

  • Options: –online – fail if broker cannot be contacted.
    –offline – do not try to contact broker.

C:\Program Files (x86)\RabbitMQ Server\rabbitmq_server-3.6.9\sbin>rabbitmq-plugins enable –offline rabbitmq_priority_queue

Error: The following plugins could not be found:
rabbitmq_priority_queue


Can anyone help on this?

Best Answer

check this link: https://www.rabbitmq.com/windows-quirks.html

This makes it impossible to use rabbitmqctl.

Workarounds:

Run the installer as an administrator or Copy the file .erlang.cookie manually from %SystemRoot% to %HOMEDRIVE%%HOMEPATH%.

and also check this answer:

Cannot enable rabbitmq-management plugin on Windows

Related Topic