Mark L
Mark L

Reputation: 13435

Why does rabbitmq listen on port 43411?

I can't for the life of me get it to bind to 127.0.0.1:43411 instead of 0.0.0.0:43411. Any ideas?

beam.smp  18538   rabbitmq   10u     IPv4    5797637      0t0        TCP *:43411 (LISTEN)

Rabbitmq had a few ports open, Making RabbitMQ listen only to the loopback interface? helped me bind some of them to loopback but this last one is persistent.

Upvotes: 1

Views: 571

Answers (1)

Ivan Blinkov
Ivan Blinkov

Reputation: 2554

I think this port is configured with:

[{kernel, [{inet_dist_use_interface, {127, 0, 0, 1}}]}].

in config file

Upvotes: 1

Related Questions