Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Addde the houlab

Table of Contents

...

If you're not familiar with basic Linux commands and usage, or if you need a refresher on these topics, please refer to the following resources from our workshop series:

For a list of recorded trainings and upcoming research computing workshops and events, please see:

https://rcfoundationswww.researchcuit.columbia.edu/rcs/training

Logging In


You will need to use SSH (Secure Shell) in order to access the cluster.  Windows users can use PuTTY or Cygwin. MacOS users can use the built-in Terminal application.

...

Users log in to the cluster's submit node, located at Insomnia insomnia.rcs.columbia.edu or use the shorter form burg som.rcs.columbia.edu.  If logging in from a command line, type:

...

Code Block
$ ssh <UNI>@insomnia.rcs.columbia.edu



OR


$ ssh <UNI>@burg<UNI>@som.rcs.columbia.edu


where <UNI> is your Columbia UNI. Please make sure not to include the angle brackets ('<' and' >') in your command; they only represent UNI as a variable entity.

...

You must specify your account whenever you submit a job to the cluster. You can use the following table to identify the account name to use.


Account

Full Name

5sigma

Biostatistics

berkelbach
astro
Chemistrycal
Columbia Astrophysics Lab
berkelbachChemistry
cboyceChemical Engineering
cklabIEOR
dbComputer Science
e3bEcology, Evolution and Environmental Biology
esmaSIPA-CGEP

exposomics

MSPH Exposomics
hill

Physics (Columbia Astrophysics Laboratory)

houlabLaboratory of Wenpin Hou
ieortangIndustrial Engineering and Operations Research (IEOR)
iicdIrving Institute for Cancer Dynamics 
intelseedfree

Special group with access to a non-NVIDIA GPU seed node from Intel. email hpc-support@columbia.edu if interested in details.

mcilvain

Grace McIlvain Lab 

mmsciMultimessenger Science
morpheus

Bianca

M.

Dumitrascu Lab

msphMSPH IT

neuralctrl


Laboratory for Neural Engineering and Control
ntar_labBiomedical Engineering  (Morrison)
pas_labBiological Sciences
ueilBiomedical
Engineering
Engineering  (Konofagou)
qmechQuantum Mechanics/Applied Physics and Applied Math: Marianetti
ssccSocial Science Computing Committee (ISERP, Econ, and CPRC)

tekle_smith

Chemistry Dept - Tekle Smith group
xulabEarth and Environmental Engineering


Your First Cluster Job

While best practice on all Columbia HPC group clusters, it is particularly important on Insomnia to move from the initial login node to a compute node before doing most work. Example:

Code Block
srun --pty -t 0-2:00 -A <ACCOUNT> /bin/bash

Now you have moved from the login node to one of the compute nodes on the cluster. While simple things like editing a file or making new folders can be done on a login node, they can also be done on a compute node, and as you run more complicated jobs on Insomnia, some things simply will not work unless you are first on a compute node.

An example Submit Script


This script will print "Hello World", sleep for 10 seconds, and then print the time and date. The output will be written to a file in your current directory.

...

This job will create one output file name slurm-####.out, where the #'s will be replaced by the job ID assigned by Slurm. If all goes well the file will contain the words "Hello World" and the current date and time.


See the further documentation we have about submitting jobs.  For much more in-depth information, there is a Slurm Quick Start Guide for a more in-depth introduction on using the Slurm schedulerweb.