Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

Panel
panelIconIdatlassian-info
panelIcon:info:
bgColor#FFBDAD

Starting Release 8.2, Zephyr Enterprise documentation has moved from its current location on Atlassian to a dedicated, standalone Zephyr Enterprise Documentation page. Please see: https://support.smartbear.com/zephyr-enterprise/docs/en/zephyr-enterprise/zephyr-installation---upgrade-guides/zephyr-on-premise-production-installation/zephyr-enterprise-services/rabbitmq-deployment/rabbitmq-deployment--ubuntu-.html

Table of Contents
minLevel1
maxLevel3
outlinefalse
stylenone
typelist
printablefalse

...

  1. Cloudsmith Quick Start Script.
    Run the below script file to install RabbitMQ on Ubuntu.

    image-20240328-062631.png
    For more installing details please refer: Installing on Debian and Ubuntu — RabbitMQ

    NOTE:
    In the above script file, we have used the Distribution as “focal” like below, since our Ubuntu version is 20.04.
    deb [signed … /ubuntu focal main
    deb-src [signed-by…ubuntu focal main
    etc…

    Please replace “focal” and use the appropriate Distribution name in your script file from the below table.
    jammy for Ubuntu 23.04
    jammy for Ubuntu 22.04
    focal for Ubuntu 20.04
    bionic for Ubuntu 18.04
    buster for Debian Buster, Bullseye, and Sid

  2. Once the RabbitMQ server package is installed, start and enable the RabbitMQ service with the following command:

    Code Block
    sudo systemctl start rabbitmq-server
    sudo systemctl enable rabbitmq-server
  3. Lastly, run the following command to verify the rabbitmq-server service’s status.
    sudo systemctl status rabbitmq-server

  4. You can also verify the version of RabbitMQ on your system using the following command.

    Code Block
    sudo rabbitmq-diagnostics server_version

     

...

  1. Cloudsmith Quick Start Script.
    Run the below script file to install RabbitMQ on Ubuntu.

    image-20240328-062650.png
    For more installing details please refer: Installing on Debian and Ubuntu — RabbitMQ
    NOTE:
    In the above script file, we have used the Distribution as “focal” like below, since our Ubuntu version is 20.04.
    deb [signed … /ubuntu focal main
    deb-src [signed-by…ubuntu focal main
    etc…

    Please replace “focal” and use the appropriate distribution name in your script file from the below table.
    jammy for Ubuntu 23.04
    jammy for Ubuntu 22.04
    focal for Ubuntu 20.04
    bionic for Ubuntu 18.04
    buster for Debian Buster, Bullseye, and Sid

  2. Once the RabbitMQ server package is installed, start and enable the RabbitMQ service with the following command:

    Code Block
    sudo systemctl start rabbitmq-server
    sudo systemctl enable rabbitmq-server
  3. Lastly, run the following command to verify the rabbitmq-server service’s status.
    sudo systemctl status rabbitmq-server

  4. You can also verify the version of RabbitMQ on your system using the following command.

    Code Block
    sudo rabbitmq-diagnostics server_version

...