Hi,
I am testing pubsub+ in docker that I pull from docker hub after that running docker container and open port for admin as well. But when I try to access admin console from http://localhost:8080, it’s nothing happen. So what should I check first to get the issue?
@lukmanul, I’d agree it looks like a network issue. The first step is to check docker is exposing port 8080 or if it has been mapped to another port. The easiest way to do that is to use “docker inspect” and check the “HostConfig” section, subsection “PortBindings”: docker inspect pubSubStandardSingleNode
Gives me:
So I can tell that 8080 on my container/broker is mapped to 8080 on my localhost. You may find 8080 on your container has been mapped to a different port, say 8081.
how about trying with other browser or incognito mode? And maybe try with your actual IP address instead of localhost? I’ve had some issues with localhost with Safari/macOS, just to rule that out as I don’t have experience with this on Windows.