How to access Jaeger UI outside localhost. Currently its running as a docker container on a linux machine. No Kubernetes involved

57 views Asked by At

I deployed a jaeger container using docker run -d -p 6831:6831/udp -p 16686:16686 jaegertracing/all-in-one:latest on a SLES linux. but how do i access it from a remote browser.

The linux ip is pingable but http://linuxip:16686 does not work.

I am not using kubernetes.

1

There are 1 answers

2
danielRICADO On

if you can't curl it on "curl -v http://localhost:16686" from the host machine then it is an issue with the container check you're ports are mapped correctly

https://www.jaegertracing.io/docs/1.53/getting-started/

if you can curl it on the host machine but not access it from a browser on another computer within the network then it's a network issue, check no firewalls are blocking the ports both on the linux host and the computer you're trying to access from (windows and company antivirus/firewall software likes to do this)

If you can to both those things and it's an external network you're trying do access it from then remember to setup port forwarding on the router/gateway

any other possible issue you'll need to post some logs before anyone here can help you.