Created
October 12, 2016 15:56
-
-
Save kepbod/ea377920da2483275e06e9139406b765 to your computer and use it in GitHub Desktop.
Remote Access to Jupiter Notebooks via SSH
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
IPYNB_PORT=1075 # same as in server config | |
alias sshpy="ssh -NL $IPYNB_PORT\:localhost:$IPYNB_PORT [email protected] &" # the server should be same with that runing notebook |
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
IPYNB_PORT=1075 # any port you like | |
alias ipynb="nohup jupyter notebook --no-browser --port $IPYNB_PORT &" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
useful