From d5e8414fd42d4305bbeb6168282725a335387183 Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Mon, 2 Feb 2026 19:51:48 -0800 Subject: [PATCH 1/3] Closes #796 --- rabbitmq/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rabbitmq/content.md b/rabbitmq/content.md index c95e8217849a..e715e893ea95 100644 --- a/rabbitmq/content.md +++ b/rabbitmq/content.md @@ -62,7 +62,7 @@ If you wish to change the default username and password of `guest` / `guest`, yo $ docker run -d --hostname my-rabbit --name some-rabbit -e RABBITMQ_DEFAULT_USER=user -e RABBITMQ_DEFAULT_PASS=password %%IMAGE%%:3-management ``` -You can then go to `http://localhost:8080` or `http://host-ip:8080` in a browser and use `user`/`password` to gain access to the management console +You can then go to `http://localhost:15672` or `http://host-ip:15672` in a browser and use `user`/`password` to gain access to the [management UI](https://www.rabbitmq.com/docs/management). ### Setting default vhost From 898c5ad2af663d0a7384f1abaa050689280b4f68 Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Tue, 3 Feb 2026 11:42:25 -0800 Subject: [PATCH 2/3] Suggest using `docker run` with `--detach` Co-authored-by: Luke Bakken --- rabbitmq/content.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rabbitmq/content.md b/rabbitmq/content.md index e715e893ea95..2b3e9727893a 100644 --- a/rabbitmq/content.md +++ b/rabbitmq/content.md @@ -59,7 +59,11 @@ RABBITMQ_VM_MEMORY_HIGH_WATERMARK If you wish to change the default username and password of `guest` / `guest`, you can do so with the `RABBITMQ_DEFAULT_USER` and `RABBITMQ_DEFAULT_PASS` environmental variables. These variables were available previously in the docker-specific entrypoint shell script but are now available in RabbitMQ directly. ```console -$ docker run -d --hostname my-rabbit --name some-rabbit -e RABBITMQ_DEFAULT_USER=user -e RABBITMQ_DEFAULT_PASS=password %%IMAGE%%:3-management +$ docker run --detach --hostname my-rabbit --name some-rabbit \ + --env RABBITMQ_DEFAULT_USER=user \ + --env RABBITMQ_DEFAULT_PASS=password %%IMAGE%%:management \ + --publish 15672:15672 \ + --publish 5672:5672 ``` You can then go to `http://localhost:15672` or `http://host-ip:15672` in a browser and use `user`/`password` to gain access to the [management UI](https://www.rabbitmq.com/docs/management). From 73f88bd783925345262ae7957e2eceb2263bbc21 Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Tue, 3 Feb 2026 12:42:35 -0800 Subject: [PATCH 3/3] One more `docker run` example tweak Co-authored-by: Tianon Gravi --- rabbitmq/content.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rabbitmq/content.md b/rabbitmq/content.md index 2b3e9727893a..333d530e5f21 100644 --- a/rabbitmq/content.md +++ b/rabbitmq/content.md @@ -61,9 +61,10 @@ If you wish to change the default username and password of `guest` / `guest`, yo ```console $ docker run --detach --hostname my-rabbit --name some-rabbit \ --env RABBITMQ_DEFAULT_USER=user \ - --env RABBITMQ_DEFAULT_PASS=password %%IMAGE%%:management \ + --env RABBITMQ_DEFAULT_PASS=password \ --publish 15672:15672 \ - --publish 5672:5672 + --publish 5672:5672 \ + %%IMAGE%%:management ``` You can then go to `http://localhost:15672` or `http://host-ip:15672` in a browser and use `user`/`password` to gain access to the [management UI](https://www.rabbitmq.com/docs/management).