NVIDIA / DIGITS

Deep Learning GPU Training System
https://developer.nvidia.com/digits
BSD 3-Clause "New" or "Revised" License
4.12k stars 1.38k forks source link

Cannot access to webserver from browser #1469

Open serchu opened 7 years ago

serchu commented 7 years ago

Hi

I've installed NVIDIA DIGITS on a server, in which I don't have root access, by downloading the source code (and checkout to branch v5.0.0). Everything seems to be installed properly (Caffe and all the Python requirements). When I run the digits-devserver script, it seems to work properly.

In fact, if I do ./digits-devserver -p 34449 the output is:

  ___ ___ ___ ___ _____ ___
 |   \_ _/ __|_ _|_   _/ __|
 | |) | | (_ || |  | | \__ \
 |___/___\___|___| |_| |___/ 5.0.0

2017-02-22 13:31:40 [INFO ] Loaded 0 jobs.

and by doing netstat -ntlp | grep LISTEN I see that the port is open and listening:

tcp 0 0 0.0.0.0:34449 0.0.0.0:* LISTEN 23593/python

The problem is in the browser when I put: http://<ip_address>:34449 it says loading but nothing appears.

Something that might be important is the fact that some other user in the machine has NVIDIA DIGITS 4 server running. So If I put in the browser just http://<ip_address> I access to the digits webserver (version 4, which is not what I want)

Thank you

jedrus2000 commented 7 years ago

Hello!

Can you try run it on port 5000 ?

I've faced other issues. I thought that it can be good time to try docker stuff and DIGITS too :) My system is Linux Mint 18.1. 4.4.0-64-generic #85-Ubuntu SMP Mon Feb 20 11:50:30 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux stretch/sid

I've followed instructions from https://github.com/NVIDIA/nvidia-docker/wiki/DIGITS When trying this command : nvidia-docker run --name digits -d -p 5000:34448 nvidia/digits couldn't connect to localhost:5000

docker exec digits netstat -ntlp | grep LISTEN
 tcp        0      0 0.0.0.0:5000            0.0.0.0:*               LISTEN      1/python
docker port digits
34448/tcp -> 0.0.0.0:5000

But if I change port command to: -p 5000:5000, I can connect to DIGITS.

On other hand is this normal that if I issue :docker attach digit no prompt, nothing happens until I press Ctrl+C

Best regards.

serchu commented 7 years ago

@jedrus2000 Hi, thank you very much for your replied. I did try to run it on port 5000, actually it is the default port in DIGITS 5.0, but still not connecting.

I would like to give a chance to run it using Docker but it is not installed and I cannot do it since I don't have root access. I am also waiting for the deb package to be available and ask my administrator to install it and I hope it will work since DIGITS 4 is installed and working.

lukeyeager commented 7 years ago

@flx42 just updated that nvidia-docker wiki page. Thanks, Felix!