How do I stop the RabbitMQ server on localhost

前端 未结 3 636
温柔的废话
温柔的废话 2021-01-30 20:46

I installed RabbitMQ server on OS X, and started it on command line. Now, it is not obvious that how I should stop it from running? After I did:

sudo rabbitmq-se         


        
3条回答
  •  醉酒成梦
    2021-01-30 21:19

    In my dev environment where I keep it running all the time, I use:

    launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.rabbitmq.plist
    

    and to start it

    launchctl load ~/Library/LaunchAgents/homebrew.mxcl.rabbitmq.plist
    

    Even easier....

    brew services stop rabbitmq
    brew services start rabbitmq
    

提交回复
热议问题