-
To start the RabbitMQ server:
sudo systemctl start rabbitmq-server
-
To stop the RabbitMQ server:
sudo systemctl stop rabbitmq-server
-
To check the status (Start/Stop or Logs) of the RabbitMQ server:
systemctl status rabbitmq-server
-
To access the RabbitMQ management interface, the default username and password is
guest
. You can add custom users as needed: http://localhost:15672 -
RabbitMQ will start automatically on system boot if it is enabled. To prevent it from starting automatically:
sudo systemctl disable rabbitmq-server
Additional Resources: