Skip to content
Discussion options

You must be logged in to vote
ERROR: distribution port 25672 in use by another node: rabbit@prod

is quite specific: another node, named rabbit@prod, uses port 25672. With some very specific exceptions, and certainly in the case of RabbitMQ, two processes cannot use the same port: the OS will not allow for that.

You have to stop that node before this one can start e.g. using

rabbitmqctl shutdown -n rabbit@prod

If you are looking to run several cluster nodes on a single host, see this Clustering guide section. This is definitely not something that we'd recommend in "prod" (production) systems.

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by michaelklishin
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #2460 on October 05, 2020 13:53.