Getting Started

From UFRC
Jump to navigation Jump to search

Getting an account

To get an account at the UF HPC Center, you need to read the HPC Center Policies and then put a request in at our request page. That page is located here.

Login

Linux / Unix

Open a terminal and run

ssh -Y <YOUR_USERNAME>@submit.hpc.ufl.edu

where <YOUR_USERNAME> is your HPC Center username, which was sent to you when you got your HPC Center account.

The command ssh -Y <YOUR_USERNAME>@submit.hpc.ufl.edu is what you would type in at a command prompt on your system. After this, it asks you for a password, which you type in. After that, you are logged in and ready to work. As a concrete example, if your HPC Center username is "smith", you would use the command ssh smith@submit.hpc.ufl.edu to log into the HPC Center.

The -Y option is used to indicate that X11 forwarding should be enabled on the connection. If your desktop supports an X Windows server, X11 forwarding will allow you to run X Windows clients on the HPC Center's interactive servers and view the display on your desktop. Otherwise, the -Y option is not necessary.

Windows

Microsoft Windows does not come with a built-in SSH client. You have to download a client from the web. We recommend the following software:

X Windows for MS Windows

For Windows users who would like to run X Windows applications, there are several X Windows servers available for the MS Windows operating system.

MacOS

For MacOS users, the connection instructions are very similar to those for Linux/Unix users.

Terminal, the terminal emulation application under MacOS is located in Applications/Utilities.

Both FileZilla and Cyberduck are available for MacOS if you prefer a graphical interface for transferring files.

Getting Help

If you are having problems connecting to the HPC system, please let the HPC Staff know by submitting a Support Request.

Interactive work under Linux

Once you are logged in to an HPC Center server, you will find yourself at a Linux command line prompt. That may be daunting at first. However, you only need to know a small subset of Linux commands to accomplish most tasks. There are many Linux "Getting Started" guides online and in print. Below are just a few possibilities. Many more are easily found via a Google search.

A Few Basic Commands

While it is advantageous to have a working knowledge of the most common Linux commands, it is not a requirement. For the uninitiated, the following information may be useful as well as a good "Introduction to Using Linux" book.

Command Description
ls List files in the current directory
cd Change directory
more View a file's contents
mkdir <dir> Create a directory
cp file1 file2 Copy a file
mv file1 file2 Move (i.e. rename) a file
rm file Delete a file
rmdir dir Delete an empty directory

File System

We have a structured file system that is important to know about. Please read about it here: HPC File System

Editing

Editing files on the cluster can be done through a couple of different methods...

Native Editors

  • vi - The visual editor (vi) is the traditonal Unix editor. However, it is not necessarily the most intuitive editor. That being the case, if you are unfamiliar with it, the following tutorial may be useful.
    • VI Tutorial
    • Another resource for vi is right here on our wiki.
    • There is also a vi tutorial, vimtutor. Once logged in, simply type "vimtutor" at the command line to start the tutorial.
  • emacs - Emacs is a much heavier duty editor, but again has the problem of having commands that are non-intuitive. Again, we have provided a link to a tutorial for this editor.
  • pico - While pico is not installed on the system, nano is installed, and is a pico work-a-like.
  • nano - Nano has a good bit of on-screen help to make it easier to use.

External Editors

You can also use your favorite editor on your local machine and then transfer the files over to the HPC Center afterwards. One caveat to this is that with files created on Windows machines, usually contain unprintable characters which may be misinterpreted by Linux command interpreters (shells). If this happens, there is a utility called dos2unix that you can use to convert the text file from DOS/Windows formatting to Linux formatting.

Running Jobs

General Scheduling

Jobs from faculty investors in the HPC Center are now favored over jobs from groups who did not invest in the HPC Center.

Job scheduling has been a big topic with the HPC committee in the last several months. The HPC Center staff has been directed by the committee to improve the quality of service of job scheduling for jobs coming from investors in the HPC Center. This means reducing the time spent in the queues and allowing jobs from the investors to capture the full share of the resources that they have paid for. The HPC committee recently adopted a document which spells out what they want.

Jobs can be submitted on submit.hpc.ufl.edu.

Torque Resource Manager

The Torque Resource Manager is an open-source port of the old Portable Batch System (PBS) and is used at the HPC Center along with Moab for scheduling.

Trivial Example

#! /bin/sh
#PBS -N testjob
#PBS -o testjob.out
#PBS -e testjob.err
#PBS -M <INSERT EMAIL HERE>
#PBS -r n
#PBS -l walltime=00:01:00
#PBS -l nodes=1:ppn=1
#PBS -l pmem=100mb

date
hostname

module load python
python -V

To submit this job from submit.hpc.ufl.edu, you would use the following command:

$ qsub <your job script>

To check the status of running jobs, you would use the following command:

$ qstat [-u <username>]

or HPC --> Utilization --> Torque Queue Status


Notes:

  • More Sample Scripts for more information on PBS scripts.
  • See Modules for more information on using the installed software via the environment modules system.

Notes on Batch Scripts

  • The script can handle only one set of directives. Do not submit a script that has more than one set of directives included in it, as this will cause the Moab/Torque system to reject the script with a qsub: Job rejected by all possible destinations error. This problem was first seen when a user complained about a script that was being rejected with this error. Upon further inspection of their script, it was found that the script had concatenated versions of itself in the same file.
  • For a more detailed explanation of what is going on in a batch script

Troubleshooting Batch Scripts

  • Ensure that you are using the preferred MPI application launcher. At the HPC Center, mpiexec is the recommended and preferred launcher.

Compiling your own

By default, when you first login to the system you have compilers setup for the Intel OpenMPI compilers. This gives you access to C, C++, F77 and F90 compilers in your path, as well as the mpicc and mpif90 compilers for OpenMPI applications. If you want to change this, you can use the modules system to select a different compiler suite and MPI implementation.