-
Notifications
You must be signed in to change notification settings - Fork 2.2k
RabbitMQ: correct the management UI port recommended in the README #2653
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
rabbitmq/content.md
Outdated
| $ 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). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤔 hmm, that still won't actually work via localhost or the host IP unless there is a -p 15672:15672 on the docker run. Or we can swap this to http://container-ip:15672 like the "Management Plugin" section below and let the management section describe the docker -p of exposing the port.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, I will have to read the entire document and suggest larger edits.
Co-authored-by: Luke Bakken <lukerbakken+github@gmail.com>
Co-authored-by: Tianon Gravi <admwiggin@gmail.com>
Closes docker-library/rabbitmq#796.