“node with name ”rabbit“ already running”, but also “unable to connect to node 'rabbit'”

后端 未结 9 1327
[愿得一人]
[愿得一人] 2020-12-23 09:26

Rabbitmq server does not start, saying it\'s already running:

$: rabbitmq-server
Activating RabbitMQ plugins ...
0 plugins activated:

node wit         


        
相关标签:
9条回答
  • 2020-12-23 09:54

    In my case(windows), 1. I just ran the stop service. 2. The started the service.

    0 讨论(0)
  • 2020-12-23 10:06

    In my case under Ubuntu 11.10 it helped to

    #rabbitmqctl cluster MASTER SLAVE
    #rabbitmqctl start_app
    

    before I always got this error message...

    0 讨论(0)
  • 2020-12-23 10:08

    The rabbitmq server was running somewhere but it just couldn't be connected to.

    One of the following will mention something about rabbits:

    $: ps aux | grep epmd
    $: ps aux | grep erl
    

    Kill the process with kill -9 {pid of rabbitmq process}

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