rabbitmq refusing to start

后端 未结 8 1518
伪装坚强ぢ
伪装坚强ぢ 2021-01-30 00:33

I have installed rabbitmq on ubuntu and trying to start it using rabbitmq-server start, however, I\'m getting this error:

Activating Ra         


        
8条回答
  •  一整个雨季
    2021-01-30 01:00

    If the standard stop and start are not working, list the rabbitmq processes that are running using

    ps aux | grep rabbitmq
    

    Kill the beam.smp process using

    kill -9 {process id} 
    

    and start the rabbitmq-server again.

提交回复
热议问题