Skip to content
Discussion options

You must be logged in to vote

You got me in the right direction. For anyone else running into the same thing, the 'advertised_host' must be set with quotes around the ip address in docker compose.

So this is what you do when you are doing everything on your local machine:
RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS: "-rabbitmq_stream advertised_host localhost advertised_port 5552"

If you want to specify an IP, DO NOT do this:
RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS: "-rabbitmq_stream advertised_host 192.168.1.100 advertised_port 5552"

If you want to specify an IP, you must do this:
RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS: "-rabbitmq_stream advertised_host '192.168.1.100' advertised_port 5552"

In my defense, I didn't find any resource…

Replies: 4 comments 4 replies

Comment options

You must be logged in to vote
1 reply
@Gsantomaggio
Comment options

Comment options

You must be logged in to vote
1 reply
@Gsantomaggio
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@Gsantomaggio
Comment options

@lukebakken
Comment options

Answer selected by adammckay
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
bug Something isn't working
3 participants
Converted from issue

This discussion was converted from issue #434 on September 11, 2025 14:22.