You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my experience this is often one of the blocker because when you don't know them, it is super hard to find them by googling. It'd be good to have quick examples and point to some good reference doc for more details.
~/.ssh/config tricks with ProxyCommand
Generally you need two ProxyCommand (working from home going through your institute SSH gateway and then your authorised machine before reaching Jean Zay) but we chould start with one ProxyCommand (for example you are working from one machine that is not the authorised machine but can reach the authorised machine with ssh) to be easier to understand
change web browser proxy to use the socks proxy (on firefox it looks like this probably similar for other browsers)
Use fixed jean-zay machine so that you keep your tmux sessions.
Host jean-zay
# 3 login nodes: jean-zay1, jean-zay2, jean-zay3 at the time of writing: 2019-11-04
# better to keep it fixed for example for your tmux sessions to be on the same host
hostname jean-zay1.idris.fr
ProxyCommand ssh -W %h:%p your-authorised-machine
user your-jean-zay-login
and explain the trade-off that this particular login node can go down in which case you need to edit your ~/.ssh/config or add more aliases for the other login nodes.
sshfs in combination with Tensorboard running locally
In my experience this is often one of the blocker because when you don't know them, it is super hard to find them by googling. It'd be good to have quick examples and point to some good reference doc for more details.
~/.ssh/config tricks with ProxyCommand
Generally you need two ProxyCommand (working from home going through your institute SSH gateway and then your authorised machine before reaching Jean Zay) but we chould start with one ProxyCommand (for example you are working from one machine that is not the authorised machine but can reach the authorised machine with ssh) to be easier to understand
Access IDRIS JupyterHub (https://jupyterhub.idris.fr) or extranet (https://extranet.idris.fr) if you are working from home
Use fixed jean-zay machine so that you keep your tmux sessions.
and explain the trade-off that this particular login node can go down in which case you need to edit your
~/.ssh/config
or add more aliases for the other login nodes.sshfs in combination with Tensorboard running locally
already documented in https://jean-zay-doc.readthedocs.io/en/latest/tips-and-tricks/#run-sshfs-tensorboard-locally
The text was updated successfully, but these errors were encountered: