notebook configuration file
1 | jupyter notebook --generate-config |
Password setup
1 | jupyter notebook password |
Edit configuration file
1 | c.NotebookApp.ip = '*' |
Runs in the background
1 | <!-- nohup jupyter notebook & --> |
Local port forwarding
1 | ssh -N -f -L localhost:{local port}:localhost:{remote port} -p {ssh port} {user}@{remote ip} |