Table of Contents

Connecting to the cluster(s)

Access to cluster resources is provided via secure shell (SSH) login.

Most Unix-like operating systems (Mac OS X, Linux, etc) provide an ssh utility by default that can be accessed by typing the command ssh in a terminal window.

You can login to one of the head nodes of these clusters. Check the Cluster specific pages for the current head node, see the Usage Page.

Note :

Linux & Mac

To login to a headnode from a Linux or Mac computer, open a terminal and at the command line enter:

$ ssh <UserId>@<NodeName>.ewi.utwente.nl

Note :

Windows

Windows users will first need to download an ssh client which will allow you to interact with the remote Unix command line. When setting up your connection to the cluster, use the following information:

Hostname: <NodeName>.ewi.utwente.nl
Port:     22
Username: <UserID>
Password: <Password>

Use one of the following clients :

X11 applications

To display the gui applications on your desktop, you need to enable (trusted) X11 forwarding. When connecting through ssh, add the “-Y” parameter.

$ ssh -Y <UserId>@<NodeName>.ewi.utwente.nl

Windows users needs to set this option in the used application (Putty : Session Configuration→Connection→SSH→X11→Enable X11 forwarding).

Use one of the following clients :

To allow the remote computer to display on your workstation, either use the xhosts command or add the remote server to the X0.hosts file, this will authorize displaying on your computer.

Data transfer (SCP)

Secure copy or SCP is a means of securely transferring computer files between a local host and a remote host. It is based on the Secure Shell (SSH) and Secure File Transfer (SFTP) protocols.

Command-Line Operation:

Most UNIX-like operating systems (Mac OS X, Linux, etc) provide a scp command which can be accessed from the command line. To transfer files from your local computer to your home directory on the cluster, open a terminal window and issue the command:

$ scp <some file> <UserID>@<NodeName>.ewi.utwente.nl:
$ scp -r <some dir> <UserID>@<NodeName>.ewi.utwente.nl:
$ scp -r <some dir> <UserID>@<NodeName>.ewi.utwente.nl:/deepstore/project2

When prompted, enter your password.

GUI Clients:

Thera are gui based tools as well, a few are listed below :