...
Code Block |
---|
language | bash |
---|
title | Open terminal on your machine |
---|
|
> ssh-keygen -t rsa -C "FLARECAST Infrastructureyourmail-address" # -C is just a comment
Enter file in which to save the key (/Users/mercuron/.ssh/id_rsa): # use default
Enter passphrase (empty for no passphrase): # protect your private key
Enter same passphrase again: # protect your private key
...
Your public key has been saved in ~/.ssh/id_rsa.pub.
...
> scp ~/.ssh/id_rsa.pub msoldati@iasusername@ias-ssh.ias.u-psud.fr:~/.ssh/authorized_keys |
Code Block |
---|
language | bash |
---|
title | Now connect to ias-ssh.ias.u-psud.fr |
---|
|
>inf-ssh2> ssh username@ias-ssh.ias.u-psud.fr
> nano .ssh/config inf-ssh2> ssh-keygen -t rsa -C "yourmail-address" # -C is just a comment
# use default settings and no password
inf-ssh2> scp ~/.ssh/id_rsa.pub username@cluster-head:~/.ssh/authorized_keys
inf-ssh2> ssh username@cluster-head # to test the connection
cluster-head> exit
inf-ssh2> exit
> |
Code Block |
---|
language | bash |
---|
title | On your maschine |
---|
|
> nano .ssh/config # create this file to auto-forward yourself to cluster-head
#content of .ssh/config
Host clusterflarecast-infra
ProxyCommand ssh username@ias-ssh.ias.u-psud.fr nc cluster-head.ias.u-psud.fr 22
User username
ForwardX11ForwardX11Trusted yes
ProtocolKeepAlivesServerAliveInterval 300
|
60
# Ctrl-x y <return> to save and close
> ssh flarecast-infra
# accept fingerprint
# enter FLARECAST cluster password
# you can ignore message: /usr/bin/xauth: file ~/.Xauthority does not exist
cluster-head> exit
> |
Test installation
Note: Windows has not been tested yet
...