• Home
  • Resources
    Education Techs Posts Kitab Kuning Blog Journey
  • Portfolios

Run Jupyter Notebook via SSH

Connect to your remote computer / server
$ ssh -X account@IP
for instance:
ssh -X ee401_2@140.118.102.213
Run jupyter without browser
ee401_2@140.118.102.213 $ jupyter notebook --no-browser --port=8887

On your local computer, run terminal
ssh -N -L localhost:8888:localhost:8887 ee401_2@140.118.102.213
-L binds the local_address:port1 to a remote_address:port2, while -N specifies not to execute a remote command. Open your browser and navigate to localhost:8888.

Let's Connect