Hi,
I am trying to figure out how to use Slurm on the cluster, and I am following the suggested Slurm Quick Start Tutorial (
http://www.ceci-hpc.be/slurm_tutorial.html). However, all Slurm commands seem to hang indefinitely:
[michaelk@fe2 test]$ sinfo
Nothing happens...
I also tried creating and submitting a test script,
#!/bin/bash
#
#SBATCH --job-name=test
#SBATCH --output=res.txt
#
#SBATCH --ntasks=1
#SBATCH --time=10:00
#SBATCH --mem-per-cpu=100
srun hostname
srun sleep 60
[michaelk@fe2 test]$ sbatch submit.sh
Nothing happens. It just hangs.
Any clue what could possibly be wrong?
Thanks,
Michael Knudsen