Skip to content

Instantly share code, notes, and snippets.

@MdSadiqMd
Last active August 7, 2024 15:30
Show Gist options
  • Save MdSadiqMd/4088e98a4975788f9185bbd0fd47e2b0 to your computer and use it in GitHub Desktop.
Save MdSadiqMd/4088e98a4975788f9185bbd0fd47e2b0 to your computer and use it in GitHub Desktop.

RabbitMQ

Configuration

  1. To start the RabbitMQ server:

    sudo systemctl start rabbitmq-server
  2. To stop the RabbitMQ server:

    sudo systemctl stop rabbitmq-server
  3. To check the status (Start/Stop or Logs) of the RabbitMQ server:

    systemctl status rabbitmq-server
  4. To access the RabbitMQ management interface, the default username and password is guest. You can add custom users as needed: http://localhost:15672

  5. RabbitMQ will start automatically on system boot if it is enabled. To prevent it from starting automatically:

    sudo systemctl disable rabbitmq-server

Additional Resources:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment