docker安装RabbitMQ:Error starting userland proxy: listen tcp 0.0.0.0:15672: bind: address already in u

When installed with docker rabbitmq, the run-time image, the installation error occurred container rabbitmq

Here Insert Picture Description
From the above error, we can know, listen tcp 0.0.0.0:15672 error, see if we have this process:

netstat -tanlp

Here Insert Picture Description
The tcp tcp 0.0.0.0:15672 No. 18042. Next, we will kill:

sudo kill 18042

Running on it!

Here Insert Picture Description

Guess you like

Origin blog.csdn.net/weixin_42236165/article/details/92121106