Habeeb Tijani
Habeeb Tijani

Reputation: 109

RabbitMQ not starting automatically after installation

RabbitMQ does not start automatically after installation on my system.

Tried checking the status by running the following line of code

sudo rabbitmqctl status

output: "The handle is invalid"

Upvotes: 0

Views: 187

Answers (1)

Alex Kapustin
Alex Kapustin

Reputation: 2459

What's operation system do you use?

usually you need to enable autostart by executing command

sudo systemctl enable rabbitmq-server

Upvotes: 1

Related Questions