| Description | Download | |
|---|---|---|
| .deb for Debian-based Linux (from GitHub) | rabbitmq-server_3.7.2-1_all.deb | (Signature) |
| .deb for Debian-based Linux (from Bintray) | rabbitmq-server_3.7.2-1_all.deb |
rabbitmq-server is included in standard Debian and Ubuntu repositories. However, the versions included are often quite old. You will probably get better results installing the .deb from the apt repository on rabbitmq.com or Package Cloud. Check the Debian package and Ubuntu package details for which version of the server is available for which versions of the distribution.
You can either download it with the link above and install with dpkg, or use our APT repository (see below).
Below is a list of supported Debian-based distributions as of RabbitMQ 3.7.0:
RabbitMQ needs Erlang/OTP to run. Erlang/OTP packages in standard Debian and Ubuntu also can be quite outdated. Consider installing a newer version, such as 19.3.6.
| Erlang Release Series | Repositories that provide it | Notes |
| 20.x | Erlang Solutions. Debian Buster | Supported starting with 3.6.11. See Erlang compatibility guide. |
apt package pinning can be used to avoid undesired Erlang upgrades. The following preference file example will pin esl-erlang package to to 19.3.6 and erlang-* packages to 19.3 (assuming package epoch for those packages is 1):
# /etc/apt/preferences.d/erlang Package: erlang* Pin: version 1:19.3-1 Pin-Priority: 1000 Package: esl-erlang Pin: version 1:19.3.6 Pin-Priority: 1000The above example should be placed into a file under /etc/apt/preferences.d/, e.g. /etc/apt/preferences.d/erlang.
Effective package pinning policy can be verified with
sudo apt-cache policy
When installing with apt, all dependencies other than Erlang/OTP should be met automatically in recent distributions (e.g. Ubuntu 16.04 or later, Debian Jessie). When that's not the case, dependency packages should be available from an appropriate backports repository. However, when installing via dpkg that's not the case. Below is the list of dependencies of RabbitMQ server as of 3.6.3:
RabbitMQ Apt repositories are available from Package Cloud and Bintray.
First make sure a supported version of Erlang is available for installation from an apt repository on your system.
To add the Apt repository to your Apt source list directory (/etc/apt/sources.list.d), use:
echo "deb https://dl.bintray.com/rabbitmq/debian {distribution} main" | sudo tee /etc/apt/sources.list.d/bintray.rabbitmq.list
where {distribution} is the name of the Debian or Ubuntu distribution used, e.g. xenial for Ubuntu 16.04,
artful for Ubuntu 17.10, or stretch for Debian Stretch.
So, on Ubuntu 16.04 the above command becomes
echo "deb https://dl.bintray.com/rabbitmq/debian xenial main" | sudo tee /etc/apt/sources.list.d/bintray.rabbitmq.listand on Ubuntu 17.10 it would be
echo "deb https://dl.bintray.com/rabbitmq/debian artful main" | sudo tee /etc/apt/sources.list.d/bintray.rabbitmq.listSupported distributions are
Next add our public key to your trusted key list using apt-key(8):
wget -O- https://dl.bintray.com/rabbitmq/Keys/rabbitmq-release-signing-key.asc |
sudo apt-key add -
Our public signing key is also available from rabbitmq.com:
wget -O- https://www.rabbitmq.com/rabbitmq-release-signing-key.asc | sudo apt-key add -.
Run the following command to update the package list:
sudo apt-get update
Install rabbitmq-server package:
sudo apt-get install rabbitmq-server
PackageCloud is another distribution channel that provides an Apt repository. A quick way to install uses a Package Cloud-provided script.
There are more installation options available:
Note that Package Cloud signs distributed packages using their own GPG key.
The server is started as a daemon by default when the RabbitMQ server package is installed. It will run as a non-privileged user rabbitmq.
As an administrator, start and stop the server as usual for Debian-based systems: service rabbitmq-server start.
On most systems, a node should be able to start and run with all defaults. Please refer to the Configuration guide to learn more and Production Checklist for guidelines beyond development environments.
Note: The server is set up to run as system user rabbitmq. If you change the location of the node database or the logs, you must ensure the files are owned by this user (and also update the environment variables).
SELinux, and similar mechanisms may prevent RabbitMQ from binding to a port. When that happens, RabbitMQ will fail to start. Firewalls can prevent nodes and CLI tools from communicating with each other. Make sure the following ports can be opened:
The broker creates a user guest with password guest. Unconfigured clients will in general use these credentials. By default, these credentials can only be used when connecting to the broker as localhost so you will need to take action before connecting from any other machine.
See the documentation on access control for information on how to create more users, delete the guest user, or allow remote access to the guest user.
RabbitMQ installations running production workloads may need system limits and kernel parameters tuning in order to handle a decent number of concurrent connections and queues. The main setting that needs adjustment is the max number of open files, also known as ulimit -n. The default value on many operating systems is too low for a messaging broker (eg. 1024 on several Linux distributions). We recommend allowing for at least 65536 file descriptors for user rabbitmq in production environments. 4096 should be sufficient for most development workloads.
There are two limits in play: the maximum number of open files the OS kernel allows (fs.file-max) and the per-user limit (ulimit -n). The former must be higher than the latter.
On distributions that use systemd, the OS limits are controlled via a configuration file at /etc/systemd/system/rabbitmq-server.service.d/limits.conf, for example:
[Service] LimitNOFILE=300000
The most straightforward way to adjust the per-user limit for RabbitMQ on distributions that do not use systemd is to edit the /etc/default/rabbitmq-server (provided by the RabbitMQ Debian package) or rabbitmq-env.conf to invoke ulimit before the service is started.
ulimit -S -n 4096
This soft limit cannot go higher than the hard limit (which defaults to 4096 in many distributions). The hard limit can be increased via /etc/security/limits.conf. This also requires enabling the pam_limits.so module and re-login or reboot.
Note that limits cannot be changed for running OS processes.
For more information about controlling fs.file-max with sysctl, please refer to the excellent Riak guide on open file limit tuning.
RabbitMQ management UI displays the number of file descriptors available for it to use on the Overview tab.
rabbitmqctl statusincludes the same value.
The following command
cat /proc/$RABBITMQ_BEAM_PROCESS_PID/limitscan be used to display effective limits of a running process. $RABBITMQ_BEAM_PROCESS_PID is the OS PID of the Erlang VM running RabbitMQ, as returned by rabbitmqctl status.
Configuration management tools (e.g. Chef, Puppet, BOSH) provide assistance with system limit tuning. Our developer tools guide lists relevant modules and projects.
To stop the server or check its status, etc., you can use package-specific scripts (e.g. the service tool) or invoke rabbitmqctl (as an administrator). It should be available on the path. All rabbitmqctl commands will report the node absence if no broker is running.
More info on rabbitmqctl.
Output from the server is sent to a RABBITMQ_NODENAME.log file in the RABBITMQ_LOG_BASE directory. Additional log data is written to RABBITMQ_NODENAME-sasl.log.
The broker always appends to the log files, so a complete log history is retained.
You can use the logrotate program to do all necessary rotation and compression, and you can change it. By default, this script runs weekly on files located in default /var/log/rabbitmq directory. See /etc/logrotate.d/rabbitmq-server to configure logrotate.