Created
November 19, 2020 13:48
-
-
Save andmax/d4f4355006573178d7a61d8600e1c6c8 to your computer and use it in GitHub Desktop.
Simple way to do ssh tunnel to access jupyter notebook on server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. On server side do: | |
$ jupyter notebook --port 9999 --ip=* --no-browser | |
2. On client side do: | |
$ ssh -NL 9999:localhost:9999 user@server | |
3. Then open browser and access: | |
htpp://localhost:9999 | |
4. Put the token that appear on the server side |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment