[rabbitmq-discuss] rabbitmq management custom port

Frank Shearar frank.shearar at gmail.com
Thu Apr 4 09:16:23 BST 2013


On 4 April 2013 05:54, sujan dutta <sujandutta at gmail.com> wrote:
> rabbitmq-server 3.0.4
> i could change the rabbitmq-server port but when i am trying to change the
> management port by following config tuple in rabbitmq.config file, nothing
> is changed, it still use 15672 and 55672 to redirect to 15672
>
> {rabbitmq_management, [{listeners, [{port, 55670}]}]}

Rabbit's quite sensitive as to _where_ you put this:

[{rabbit,
    [
        {tcp_listeners, [5672]}
    ]
},
{rabbitmq_management,
    [
        {listener, [
            {port, 12345}
        ]}
    ]
}
].

should work just fine in a 3.0.4 Rabbit.

frank


More information about the rabbitmq-discuss mailing list