- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
04-23-2024 06:11 AM
Hi @S.Bradley
The root cause of the issue is that the used repository to get erlang > 25+ packages is not longer accessible.
Instead I found another one available.
I will be updating the installer script but in the meantime you should be good to execute above commands to reinstall the repositories and get the proper rabbitmq-server version.
Commands to execute:
// we need to execute above commands as root
sudo su root
// remove any potential version installed
apt-get remove rabbitmq-server && apt-get purge rabbitmq-server
apt-get remove erlang && apt-get purge erlang
// disable the legacy repository for erlang > 25+ packages
echo "#deb https://packages.erlang-solutions.com/ubuntu focal contrib" | sudo tee /etc/apt/sources.list.d/erlang-solution.list
// disable the legacy rabbitmq-server
echo "#deb [trusted=yes] http://www.rabbitmq.com/debian/ testing main" | sudo tee /etc/apt/sources.list.d/rabbitmq.list
// update the apt list
apt update
// add the new repository storing erlang > 25+ packages
add-apt-repository -y ppa:rabbitmq/rabbitmq-erlang-25
// update the apt list
apt update
// add the rabbitmq repository just in case the installer script did not add it
curl -s https://packagecloud.io/install/repositories/rabbitmq/rabbitmq-server/script.deb.sh | sudo bash
// update the apt list
apt update
// fix any broken dependency on the apt install package
sudo apt --fix-broken install
// install the
apt-get install rabbitmq-server=3.11.4-1
Please let me know if this work at your end.
Best regards,
David