Difference between revisions of "HOWTO login"
m (→Xming) |
m (→Xming) |
||
Line 89: | Line 89: | ||
Install from http://sourceforge.net/projects/xming. | Install from http://sourceforge.net/projects/xming. | ||
− | Xming allows graphical programs to run on the cluster, but display on your own Windows machine. For it to work correctly, '''X11 forwarding''' must be enabled in your SSH client. In TeraTerm Pro enable it in the ''Setup|SSH Forwarding...'' menu (remember to ''Setup|Save setup...'' and restart TeraTerm Pro). In PuTTY, enable it in the ''Connection|SSH|X11'' menu on the left when connecting to the server. | + | Xming allows graphical programs to run on the cluster, but display on your own Windows machine. For it to work correctly, '''X11 forwarding''' must be enabled in your SSH client. In TeraTerm Pro enable it in the ''Setup|SSH Forwarding...'' menu (remember to ''Setup|Save setup...'' and restart TeraTerm Pro). In PuTTY, enable it in the ''Connection|SSH|X11'' menu on the left when connecting to the server. You do not need this if you have MobaXterm. |
Once your SSH connection is open, check whether it works by seeing whether the <code>DISPLAY</code> variable is set: | Once your SSH connection is open, check whether it works by seeing whether the <code>DISPLAY</code> variable is set: |
Revision as of 07:17, 1 June 2017
Contents
SSH connection details
HPC1 (also known as Rhasatsha)
Use the following connection details to log in:
- Host Name: hpc1.sun.ac.za
- Port: 22 (the default)
- Connection type: SSH (the default)
Please note that your username and password are the same as for your email.
CAF HPC1
Use the following connection details to log in:
- Host Name: caf-hpc1.sun.ac.za
- Port: 22 (the default)
- Connection type: SSH (the default)
Please note that your username and password are the same as for your email.
You will only be able to connect to the HPC while on campus (wired only, no Wifi access), or if you have a VPN connection open to campus.
SSH clients
All interaction with the cluster is done securely with SSH.
Your interaction with the cluster will entail two major activities:
- file transfer
- job submission
Linux / MacOS X clients
Use the Terminal or Konsole to SSH to the cluster using the ssh
command in the form:
$ ssh username@hpc1.sun.ac.za
$ ssh username@caf-hpc1.sun.ac.za
To transfer files, use Konqueror (if you are using KDE) and the fish
command in the form:
fish://username@hpc1.sun.ac.za
fish://username@caf-hpc1.sun.ac.za
If you are using Gnome, open Gnome Commander and create a new Remote Connection.
You can also use the Terminal or Konsole to transfer files using the scp
command.
To copy a file localfile from your machine to your home directory on the HPC, use scp localfile username@hpc1.sun.ac.za:~/
.
To copy a file remotefile from the HPC to your local machine in the current directory, use scp username@hpc1.sun.ac.za:~/pathtofile/remotefile .
.
To copy an entire directory localdir, use scp -r localdir username@hpc1.sun.ac.za:~/
.
This list of commands is not exhaustive, see the scp
man pages, or google it.
To enable X11 forwarding, use the -X
parameter with SSH:
$ ssh -X username@hpc1.sun.ac.za
$ ssh -X username@caf-hpc1.sun.ac.za
Windows clients
Files are transferred with the Secure Copy Protocol (SCP). MobaXterm and WinSCP make this really easy.
Jobs are submitted from the console (also called command line). MobaXterm, PuTTY and TeraTerm Pro are SSH clients which will allow console access.
MobaXterm
Install from http://mobaxterm.mobatek.net/ (or local copy, possibly outdated). A very nice client that combines SSH client, SCP client and X11 server. Install this or a combination of the programs below.
MobaXterm sometimes has issues with transferring large amounts of data. Use WinSCP instead if you run into trouble.
PuTTY
Install from http://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html (or local copy, only available on campus, possibly outdated).
TeraTerm Pro
Install from https://osdn.net/projects/ttssh2/releases (or local copy, only available on campus, possibly outdated).
WinSCP
Install from https://winscp.net/eng/download.php (or local copy, only available on campus, possibly outdated).
Xming
Install from http://sourceforge.net/projects/xming.
Xming allows graphical programs to run on the cluster, but display on your own Windows machine. For it to work correctly, X11 forwarding must be enabled in your SSH client. In TeraTerm Pro enable it in the Setup|SSH Forwarding... menu (remember to Setup|Save setup... and restart TeraTerm Pro). In PuTTY, enable it in the Connection|SSH|X11 menu on the left when connecting to the server. You do not need this if you have MobaXterm.
Once your SSH connection is open, check whether it works by seeing whether the DISPLAY
variable is set:
[username@hpc1 ~]$ export | grep DISPLAY declare -x DISPLAY="localhost:10.0"
Make sure Xming is running in the system tray, and then run a program in your SSH console which has a graphical frontend (like xterm
):
[username@hpc1 ~]$ xterm
A graphical xterm console should open on your Windows desktop.
Please note that you do not need to install this if you use MobaXterm.