Failed to start rabbitmq-management plugin on Windows

前端 未结 2 406
执笔经年
执笔经年 2020-12-13 06:34

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

2条回答
  •  北海茫月
    2020-12-13 07:17

    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
    

提交回复
热议问题