How to stop RabbitMQ starting on Ubuntu bootup?
Use update-rc.d
:
update-rc.d -f rabbitmq-server remove
With Ubuntu 15.10 (using systemd), I used systemctl:
sudo systemctl disable rabbitmq-server
Use update-rc.d
:
update-rc.d -f rabbitmq-server remove
With Ubuntu 15.10 (using systemd), I used systemctl:
sudo systemctl disable rabbitmq-server