Skip to content

Instantly share code, notes, and snippets.

@coodix
Last active July 23, 2016 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coodix/d90785c998aac23f2a016151a86fda1a to your computer and use it in GitHub Desktop.
Save coodix/d90785c998aac23f2a016151a86fda1a to your computer and use it in GitHub Desktop.
RabbitMQ 3.2.4 Localhost Only
export RABBITMQ_NODENAME=rabbit@localhost
export RABBITMQ_NODE_IP_ADDRESS=127.0.0.1
export ERL_EPMD_ADDRESS=::ffff:127.0.0.1
[
{kernel, [
{inet_dist_use_interface,{127,0,0,1}}
]},
{rabbit, [
{tcp_listeners, [{"127.0.0.1", 5672}]}
]},
{rabbitmq_management,
[{listener, [{port, 15672},
{ip, "127.0.0.1"}
]}
,{redirect_old_port, false}
]}
].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment