How to disable RabbitMQ default tcp listening port - 5672

前端 未结 3 1692
既然无缘
既然无缘 2021-02-12 13:11

I have configured the RabbitMQ rabbitmq.config file with new port number i.e. 5671 with SSL.

Now I want to disable the default port i.e. 5672.

3条回答
  •  半阙折子戏
    2021-02-12 13:35

    It appears that to disable non-ssl listening with the new file format, you can do the following:

    listeners.tcp  = none
    

    This has the same effect as the other 3.7 answer, but removes the need to do it in the advanced.config.

提交回复
热议问题