From 2baa33dc7e6bba8d5adb293f2d0b265e56197a41 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Tue, 12 May 2020 14:04:12 +0200 Subject: [PATCH] Document how to access the web UI of rabbitmq Signed-off-by: Pierre-Yves Chibon --- access_rabbitmq_ui.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 access_rabbitmq_ui.md diff --git a/access_rabbitmq_ui.md b/access_rabbitmq_ui.md new file mode 100644 index 0000000..bd6309f --- /dev/null +++ b/access_rabbitmq_ui.md @@ -0,0 +1,14 @@ +# How to access the rabbitmq administrative UI? + +The UI is only available on localhost, so you will need to do a port forwarding +using ssh. +This can be done using: + +:: + + ssh -L 15672:localhost:15672 rabbitmq01.phx2.fedoraproject.org + +You can seen visit: http://localhost:15672/ to see the web UI for rabbitmq. + +It will ask you to log in, use the username and the password set in the private +repository.