You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
$ docker run --detach --hostname my-rabbit --name some-rabbit \
63
+
--env RABBITMQ_DEFAULT_USER=user \
64
+
--env RABBITMQ_DEFAULT_PASS=password \
65
+
--publish 15672:15672 \
66
+
--publish 5672:5672 \
67
+
%%IMAGE%%:management
63
68
```
64
69
65
-
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
70
+
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).
0 commit comments