Failed to start rabbitmq-management plugin on Windows

前端 未结 2 405
执笔经年
执笔经年 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
    
    0 讨论(0)
  • 2020-12-13 07:24

    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.

    0 讨论(0)
提交回复
热议问题