This is an old revision of the document!
The CHPC hosts a supercomputer comprising:
The cluster will be augmented in the future with:
All these systems are accessed via a single login node: lengau.chpc.ac.za.
Connection to the login node of the CHPC cluster is via the ssh protocol. To connect to the system use
ssh username@lengau.chpc.ac.za
where username is replaced by the user name assigned to your account at the CHPC.
Use scp or sftp to transfer files to or from your home directory on the CHPC systems. For example
scp src.tar.gz username@scp.chpc.ac.za:~/scratch/
to copy the file src.tar.gz to your scratch directory on the CHPC cluster. If you would like a more user-friendly method, consider FileZilla
Note: use scp.chpc.ac.za as the server when transferring files.
A dedicated node, scp.chpc.ac.za will become available for large or long-running transfers:
scp src.tar.gz username@scp.chpc.ac.za:~/scratch/
The best way to connect via ssh is to create ssh keys which authenticate you instead of your password.
First create your private and public keys on your main work computer. These steps assume that is a desktop or laptop computer running Linux:
ssh-keygen -t dsa
This creates two new files in your .ssh directory
| id_dsa | your private key |
| id_dsa.pub | the corresponding public key |
It is the latter file that you need to add to the .ssh/authorized_keys file in your home directory on the CHPC login node.
From a recent Linux distribution you can simply do this :-
ssh-copy-id username@lengau.chpc.ac.za
From older Unix setups you might have to do this :-
cat ~/.ssh/id_dsa.pub | ssh username@lengau.chpc.ac.za "cat >> .ssh/authorized_keys; chmod 0700 .ssh; chmod 0600 .ssh/authorized_keys"
And the next time you ssh or scp to the CHPC login node you won't have to use your password!
Notice that you need to change the permissions of the .ssh directory and the authorized_keys file on the login nodes to make them private and readable by you only before ssh will use the new public key.
Cygwin provides all the above Linux commands for the Windows command line (and replaces the limited CMD.EXE command line).
For first-timers there is a nice introduction at lifehacker.
Should you prefer a MS Windows application with a GUI to connect to the CHPC we suggest you download and install the open source PuTTY and WinSCP clients, or alternatively MobaXterm, which has a free “home” edition.
| Windows Application | Provides | Home page | |
|---|---|---|---|
| PuTTY | ssh | http://www.chiark.greenend.org.uk/~sgtatham/putty/ | download |
| WinSCP | scp/sftp | http://winscp.net/ | download |
| MobaXterm | ssh/scp/X-Forwarding | http://mobaxterm.mobatek.net | http://mobaxterm.mobatek.net/download-home-edition.html |
| Git Bash | Whole unix environment including ssh | https://git-scm.com | https://git-scm.com/download/win |
It is strongly recommended that you use ssh keys to connect to the CHPC. To generate and configure putty-ssh to use keys please see:
To generate and configure Git to use ssh keys please see:
It may be that your account is blocked because of multiple failed logins. Check if that is so via https://users.chpc.ac.za/reports/ip_check/
It is important to note that if you had more than 6 failed login attempts, your account will be blocked and either you will have to log a call on https://users.chpc.ac.za/helpdesk or wait for 30 minutes before trying to login again. However if you wait for 30 minutes and try once again with an incorrect password, you will be locked for another 30 minutes until you login with a correct password where your username will be removed from the blocked list. Only then you will regain your 6 grace failed login attempts.