TLDR V. needed help accessing ZO in Docker on a VM from a different machine. Prabhat provided assistance and suggestions, eventually resolving the issue as a networking problem.
Default port is 5080
In your case you have it mapped with port 3389. Try accessing it on port 3389
Thank you for the quick answer! Yeah, I tried from the outside with 3389, but no response. The localhost:3389 works, the question is, can i access it on like; 192.168.1.15:3389?
how are you running it? Did you follow the quickstart guide
```mkdir data docker run -v $PWD/data:/data -e OO_DATA_DIR="/data" -p 5080:5080 \ -e [email protected] -e OO_ROOT_USER_PASSWORD=Complexpass#123 \ public.ecr.aws/zinclabs/openobserve:latest```
zincobserve
Yes, and the localhost works perfectly!
I just want to access it from a different URL than localhost:5080
Sorry if I made the question confusing :slightly_smiling_face:
How did you manage to get the port 3389 ?
-p 3389:5080
ok
are you running on mac?
debian
The port is not important i just want to use 192.168.1.1:5080, not localhost
Are you able to access any other service on this machine from outside. The way you are accessing should have just worked
as long as the IP address is correct too
Yes, zincsearch worked, grafana worked, etc. Hmm.
Thank you! I will continue with nginx proxy or the linux binary then
Have you tried the binary directly instead of the container? or is container must?
Not yet, but I will try it. In the meantime I tested it on ubuntu22 server and same. outside, not worked, localhost worked :slightly_smiling_face:
If you could try the binary from
and let me know.
I will be around for a while before heading to sleep.
Ohhh. I think i have old cpu under the VM, error message is "Illegal instruction".
Interesting, but under docker it could run?
You must have picked the wrong binary to download
there are a couple of them.
If you are on intel/amd then pick
Unfortunately this was the one i picked. Intel Xeon is the cpu
Look, I think lets stop now, I will test the docker and binary in a different enviroment next week,
Thank you for your help!
Hello, Thank you for your help, after a fresh start, I was able to access it through the exact docker port I wanted. Currently I still figuring what was the problem (probably network issue on my side...), but it is working!
:joy: . Welcome to networking. Thanks for letting us know.
V.
Fri, 26 May 2023 18:20:08 UTCHi Guys, sorry if this is too basic, but what is the enviroment variable for listening url? I ask this, because I wanted to launch ZO in docker on a VM, and access it from a different machine; so its properly starting in a second, i expose it on a different port, but i guess it should not be the problem, I even see that in the logs, HTTP server at: 0.0.0.0:5080, but I cannot access ZO from a different machine, only from localhost. Is this intended maybe? With zincsearch I could access it in this way. Thank you in advance!