I run the following commands on Ubuntu 20.04
sudo apt-get install rabbitmq-server
sudo systemctl enable rabbitmq-server
sudo systemctl start rabbitmq-server
systemctl status rabitmq-server
and I get this output
Unit rabbitmq-server.service could not be found.
I got a similar problem using redis, both locally and on heroku. Please help me.
Your last command has a typo - it should be systemctl status rabbitmq-server
(your command was missing one 'b').