jupyter-notebook-on-server
06-13-2022 || 16:25
Tags: #deep-learning
jupyter-notebook-on-server
Open 2 terminal tab.
-
One will be used to run jupyter notebook on server, run this on the server
jupyter notebook --no-browser --port=<PORT_SERVER>
this
<PORT_SERVER>
is the port no in server for jupyter notebook -
Another one will be used to tunnel the jupyter notebook local to server, run this on local
ssh -L <PORT_LOCAL>:localhost:<PORT_SERVER> <REMOTE_USER>@<REMOTE_HOST>
Here,
<PORT_LOCAL>
is the port number for local pc
<PORT_SERVER>
is the port number that you choose on the step 1
<REMOTE_USER>
is the user name of the server
<REMOTE_HOST>
is the host name of the servere.g.
jupyter notebook --no-browser --port=3000 ssh -L 8080:localhost:3000 sroydip1@ada.rs.umbc.edu
Then go to 127.0.0.1:8080
to connect to the jupyter notebook that is running on the server.