Reputation: 2801
I have installed rabbit MQ 3.8.3 on windows 10 and I can see it is running as windows services. When I try to access http://localhost:15672/ it is unreachable.
I have enabled the rabbit MQ management plugin in sbin directory rabbitmq-plugins enable rabbitmq_management
But still, http://localhost:15672/ is unreachable.
Getting the following error in java service :
org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect
I have also run the command to see if anything is running on port 5672:
Command : netstat -ano | find "5672"
Response : TCP 0.0.0.0:25672 0.0.0.0:0 LISTENING 2900
How do I fix this?
Upvotes: 1
Views: 8706
Reputation: 1
In my case I did the following steps :
Open a command prompt and type
CD C:\Program Files\RabbitMQ Server\rabbitmq_server-3.12.7\sbin
Then
rabbitmq-plugins enable rabbitmq_management
Now you should access it using http://localhost:15672/.
Upvotes: 0
Reputation: 2801
Upvotes: 0
Reputation: 1
The management UI can be accessed using a Web browser at http://{node-hostname}:15672/
The management plugin is included in the RabbitMQ distribution. Like any other plugin, it must be enabled before it can be used.
please refer below URL: https://www.rabbitmq.com/management.html
Upvotes: 0