It seems that the Aachen cluster is not accessible to researchers and students form Maastricht University anymore. Try out the new Maastricht cluster:
- Request a DKE cluster account here
- You will recieve one email from Aachen and one from Maastricht
- Following instruction in Aachen email to activate and create the cluster account
- Reply to Maastricht email with newly created User ID and wait for reply
- Go to your Aachen account here, select the
Accounts and Passwords
page, and set a new password forHochleistungsrechnen RWTH Aachen
andWLAN/VPN
services
- Establish VPN connection to Aachen following instructions here
- Login with your new RWTH Aachen account:
ssh <Your User ID>@login18-1.hpc.itc.rwth-aachen.de
- Check manual for commands here
- Here an example
submit.sh
job script:
#!/bin/bash
#SBATCH --job-name=cytoeffect_short
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=8
#SBATCH --mem-per-cpu=4GB
#SBATCH --time=01:00:00
#SBATCH --account=um_dke
R -e "rmarkdown::render('Reanalysis_Aghaeepour2017_Poisson.Rmd')"
- Submit the script to the scheduler:
sbatch submit.sh
- Check status (change
YOUR_USERNAME
to your username):
squeue -u YOUR_USERNAME
First install RStudio. This will allow you to knit Rmd files.
cd $HOME
RSTUDIO_VERSION=rstudio-server-rhel-1.2.1335-x86_64
mkdir $RSTUDIO_VERSION
cd $RSTUDIO_VERSION
wget https://download2.rstudio.org/server/centos6/x86_64/${RSTUDIO_VERSION}.rpm
rpm2cpio ${RSTUDIO_VERSION}.rpm | cpio -idmv
cd ..
echo "export RSTUDIO_VERSION=$RSTUDIO_VERSION" >> .zprofile
echo 'export PATH=$HOME/${RSTUDIO_VERSION}/usr/lib/rstudio-server/bin/pandoc:$PATH' >> .zprofile
source .zprofile
Now clone a repository and submit a job script. This example should take about 30 min. It will request one node with 8 cores for 1 hour.
git clone https://github.com/ChristofSeiler/blish_cytoeffect_tutorial.git
cd blish_cytoeffect_tutorial
sbatch submit.sh
- Backed up:
$HOME
- Not backed up:
$WORK
and$HPCWORK