Password less ssh setup - jniedzie/SVJanalysis_wiki GitHub Wiki

To ssh to the T3 without having to type your password all the time (also works for VSCode), follow the instructions below. The instructions here only work for Linux and Mac OS.

Create a public-private key pair using, press Enter to have an empty passphrase:

ssh-keygen -t rsa -b 4096 -f ${HOME}/.ssh/t3key

Copy the public key to the remote host:

ssh-copy-id -i ${HOME}/.ssh/t3key <user>@t3ui01.psi.ch

where you have to replace <user> by your T3 username.

Now try to login (replace <user> by your T3 username):

ssh <user>@t3ui01.psi.ch

You should be able to login without password!

Below is an example of a working execution of the above commands:
image

⚠️ **GitHub.com Fallback** ⚠️