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"
CodePudding user response:
What's operation system do you use?
usually you need to enable autostart by executing command
sudo systemctl enable rabbitmq-server
CodePudding user response:
It's most likely a service installation issue, follow this steps.
Check the service status You can use the CLI tools provided by RabbitMQ to check the service status.
Do the following:
Open a command-line console (run as Administrator) and change to the RabbitMQ batch scripts folder;
Execute the following command: rabbitmqctl.bat status
If thesame output you might have to reinstall the package
I sure hope this helps