I\'m a beginner on RabbitMQ and i\'m having some problems to enable management plugin. The rabbitmq server is up and running, but when i try to enable the plugin, i get this
Just so it shows up as an answer: From this link in OP's comment.
The problem was that %HOMEDRIVE% was pointing to U: instead of C:
To resolve and install the management plugin, just repoint HOMEDRIVE
.
SET HOMEDRIVE=C:
rabbitmq-plugins.bat enable rabbitmq_management
rabbitmq-service.bat stop
rabbitmq-service.bat install
rabbitmq-service.bat start
I had the same problem and I solved it by using NET USE in command line.
If U: is a network drive, try first to connect to the network drive by using NET USE:
NET USE U: \\server\folder
Then try to re-install RabbitMQ.