Last active
October 24, 2018 11:07
-
-
Save Colelyman/04ad042fe7b975050ee84ecd02074c48 to your computer and use it in GitHub Desktop.
Get Jupyter Notebook Running in SSH Tunnel
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
| user@server$ jupyter notebook --no-browser --port=8889 | |
| # run client side | |
| user@client$ ssh -N -f -L localhost:8000:localhost:8889 remote_user@remote_host | |
| firefox http://localhost:8000 | |
| # source: https://coderwall.com/p/ohk6cg/remote-access-to-ipython-notebooks-via-ssh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How can i access notebook running on LXC containers (hosted on server) from my local machine (i.e. client)......
When i run the above scripts i am not able to connect....
Thanks