SSH client on macOS and Linux
On Unix-based systems like macOS and Linux, it is recommended to connect to CSC supercomputers using the pre-installed terminal program.
Basic usage
The OpenSSH client typically comes pre-installed on macOS and Linux systems. You can create a remote SSH connection by opening the terminal and running:
# Replace <username> with the name of your CSC user account and
# <host> with "puhti" or "mahti"
ssh <username>@<host>.csc.fi
Graphical connection
Displaying graphics, such as GUIs and plots, over an SSH connection requires a window system. Most macOS and Linux systems have a server program for the X window system (X11) installed by default.
To enable displaying graphics over SSH, use the -X
(X11 forwarding) or -Y
(trusted X11 forwarding) option when launching the SSH client:
For more information about the X11 forwarding options, run man ssh
in the
terminal.
Generating SSH keys
On macOS and Linux, you can use the ssh-keygen
command-line utility for
generating SSH keys:
You will be asked to type a passphrase. Please choose a secure passphrase. It should be at least 8 characters long and contain numbers, letters and special characters. Never leave the passphrase empty!
Using SSH keys
See the page on setting up SSH keys for general information about using SSH keys for authentication.
Copying public key to supercomputer
The recommended way to copy a public key to a supercomputer is
through the My CSC customer portal.
Alternatively, you can use the ssh-copy-id
utility:
You will be asked for your CSC password (not the passphrase for the SSH key). Subsequent logins using the SSH key pair will ask for the passphrase.
Authentication agent
To avoid having to type your passphrase every time you connect to a CSC
supercomputer, the ssh-agent
utility can hold your keys in memory. The
program's behavior depends on your system:
- On Linux systems,
ssh-agent
is typically configured and run automatically at login and requires no additional actions on your part. -
On macOS systems, you should add the following lines to the
~/.ssh/config
file:
For more information about ssh-agent
, see the
relevant SSH Academy tutorial.