Skip to content

Instantly share code, notes, and snippets.

@Colelyman
Last active October 24, 2018 11:07
Show Gist options
  • Select an option

  • Save Colelyman/04ad042fe7b975050ee84ecd02074c48 to your computer and use it in GitHub Desktop.

Select an option

Save Colelyman/04ad042fe7b975050ee84ecd02074c48 to your computer and use it in GitHub Desktop.
Get Jupyter Notebook Running in SSH Tunnel
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
@imflash217

Copy link
Copy Markdown

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment