Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
Starting Release October 11, 2024 (Zephyr Enterprise 8.2), the Zephyr Enterprise documentation has moved from its current location on Atlassian to a dedicated, standalone Zephyr Enterprise Documentation 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 |
...
Cloudsmith Quick Start Script.
Run the below script file to install RabbitMQ on Ubuntu.
For more installing details please refer: Installing on Debian and Ubuntu — RabbitMQNOTE:
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.04jammy
for Ubuntu 22.04focal
for Ubuntu 20.04bionic
for Ubuntu 18.04buster
for Debian Buster, Bullseye, and SidOnce 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
Lastly, run the following command to verify the
rabbitmq-server
service’s status.sudo systemctl status rabbitmq-server
You can also verify the version of RabbitMQ on your system using the following command.
Code Block sudo rabbitmq-diagnostics server_version
...
Cloudsmith Quick Start Script.
Run the below script file to install RabbitMQ on Ubuntu.
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.04jammy
for Ubuntu 22.04focal
for Ubuntu 20.04bionic
for Ubuntu 18.04buster
for Debian Buster, Bullseye, and SidOnce 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
Lastly, run the following command to verify the
rabbitmq-server
service’s status.sudo systemctl status rabbitmq-server
You can also verify the version of RabbitMQ on your system using the following command.
Code Block sudo rabbitmq-diagnostics server_version
...