Node failed to boot with ERROR: distribution port 25672 in use by another node #2460
-
I'm trying to start my rabbitmq server using command:systemctl start rabbitmq-server on centos 7.5 docker but it crashes.
Any help would be great。 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
is quite specific: another node, named You have to stop that node before this one can start e.g. using
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. |
Beta Was this translation helpful? Give feedback.
-
Thx. |
Beta Was this translation helpful? Give feedback.
-
You can check this answer in Stack Overflow |
Beta Was this translation helpful? Give feedback.
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
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.