Inhalt |
---|
To login to system Lise please
- choose a login node of your Compute partitions and
- specify your SSH key when connecting. A pair of SSH keys consists of a
...
- private key. The
...
- private key must be stored safely on the local machine - protected by a passphrase
...
- .
- public key.
Create a pair of SSH
...
keys
Create an SSH key pair with a passphrase that is not used anywhere else.
...
Erweitern | ||
---|---|---|
| ||
Directory At least with Safari you can press Also, you can press Or, another workaround: copy your public key file to a path not containing any hidden files/directories. |
Login using SSH keys
Specify your private key when connecting to our login nodes (either via ssh -i <your_private_key_file>
or in your local SSH configuration).For ssh login please use ssh software on your local machine. On linux and windows systems OpenSSH and PuTTY is appropriate software, respectively.
OpenSSH
With the -i
option to the ssh
command you can specify the full path of your private SSH key file when you log in to one of the NHR@ZIB login nodes. You will be asked for the passphrase of your private key.
Example:
Kein Formatcode | ||
---|---|---|
| ||
$ ssh -i $HOME/.ssh/id_rsa_nhr your_username@blogin.nhr.zib.de Enter passphrase for key '/<home_directory>/.ssh/id_rsa_nhr': [...] |
...