The purpose of this page is to illustrate the different components controlling authentication and job submission in the O2 cluster.

There are four main components: Unix account, Unix groups, Slurm accounts and Slurm associations.

Unix account/user

used for O2 login access (your HMS Account)

Any user must have a unix account in order to access the O2 cluster. The unix account is the "identity" of the user, and it is involved in the authentication process when connecting to the cluster. Some key informations are also associated with the unix account such as the default linux shell to be used or the $HOME path. You can use the command  getent passwd $USER to see more about your unix account.

O2 authentication is based on the HMS Accounts, formerly known as Ecommons Accounts. Therefore your unix account name is the same as your HMS Account name and your password for the O2 unix account is the same as your HMS Account password.

Unix group 

Each unix account is in at least one unix group. This "personal user group" has the same name as the unix account.

A unix account may also be a member of other unix groups to provide access to shared storage space or special computational resources on O2.

To see which groups are associated with your unix account, run the command groups.

Slurm Account

Slurm accounts are different than Unix accounts and are used to track cluster utilization, control access to resources, and enforce limits for groups of users (unix accounts). 

Each Lab or Core that uses O2, at HMS or Affiliated Institutions, is assigned a unique Slurm account. Typically the Slurm account name is composed of the PI's last name and his/her HMS account username, like park_pjp8 (or less often just park).

The PI is responsible for the cluster utilization done by all the users associated with his/her Slurm account.

Slurm Association

In order to use O2 and submit jobs to the Slurm scheduler any user (unix account) must be associated with at least one Slurm Account. Typically each user will have a Slurm association with the Slurm Account assigned to his/her Lab/PI.

If a user is working for multiple Labs he/she might have multiple associations with the corresponding Slurm accounts. A simple way to see your association is to run the command sshare -u $USER -U, the first column reports the Slurm account associations. 

For example, the following user is associated with two SLURM accounts (i.e., rccg and lab1).

$ sshare -u $USER -U
             Account       User  RawShares  NormShares    RawUsage  EffectvUsage  FairShare
-------------------- ---------- ---------- ----------- ----------- ------------- ----------
rccg                     ab123          1    0.000241           0      0.000000   1.000000
lab1                     ab123          1    0.000241       21252      0.000066   0.968913

If the user wants to submit jobs using the lab1 SLURM account, then

$ cat sbatch_R_example.slurm
#!/bin/bash

#SBATCH --account=lab1
#SBATCH -p short # Partition to submit to
#SBATCH -t 0-00:01 # Time in minutes DD-HH:MM; DD-HH; MM:SS
#SBATCH -c 1  # Number of cores requested
#SBATCH -N 1  # Ensure that all cores are on one machine
#SBATCH --mem=2G # Memory total in GB
#SBATCH -o hostname.%j.out  #  Standard out goes to this file
#SBATCH -e hostname.%j.err  # Standard err goes to this file

# Commands below
module load gcc/6.2.0
module load R/3.6.1

# To run a R script called my_r_script.R
Rscript my_r_script.R

# Submit non-interactive job
$ sbatch sbatch_R_example.slurm