Using the geo-hpcc cluster#
User accounts#
Accounts have been created for you on geo-hpcc and sculpin, the gateway machine you need to connect through if you are trying to access the cluster from outside the Institute of Seismology. Some basic information about the machines, including how to change your password, can be found below.
sculpin#
Host:
sculpin.seismo.helsinki.fiTo change your password you can log in to sculpin and type
passwd.
geo-hpcc#
Host:
geo-hpfe.seismo.helsinki.fi(geo-hpfe is a frontend virtual machine)To change your password you can log in to geo-hpfe and type
passwd.
Connecting from Windows#
Command line access#
Open PuTTY
Host name:
sculpin.seismo.helsinki.fiClick Open
Type in your username and password
Type the command
ssh USERNAME@geo-hpfe.seismo.helsinki.fi, whereUSERNAMEis your username
File transfers/access#
Open WinSCP
Click New Site, fill in Host name:
geo-hpfe.seismo.helsinki.fi, User name and Password.Click Advanced…
Choose Connection, Tunnel, and check Connect through SSH tunnel
Fill in values: Host name:
sculpin.seismo.helsinki.fi, User name and PasswordClick OK
Click Save
Click Login
The WinSCP session will be saved, so that next time you can just double-click the hostname on the left, and the connection will be opened.
Connecting from Mac/Linux#
Command line access#
ssh USERNAME@sculpin.seismo.helsinki.fissh USERNAME@geo-hpfe.seismo.helsinki.fi
Note, USERNAME should be replaced with your username.
File transfers/access#
There are three options for copying the model files:
To copy the .pvtu and .vut files one by one you can use the following two commands:
scp -O -oProxyCommand="ssh -W %h:%p USERNAME@sculpin.seismo.helsinki.fi" USERNAME@geo-hpfe.seismo.helsinki.fi:/data/home/USERNAME/output-continental_extension/solution/\*.pvtu .scp -O -oProxyCommand="ssh -W %h:%p USERNAME@sculpin.seismo.helsinki.fi" USERNAME@geo-hpfe.seismo.helsinki.fi:/data/home/USERNAME/output-continental_extension/solution/\*.vtu .
Alternatively, you can copy the whole solution directory by typing
scp -r -O -oProxyCommand="ssh -W %h:%p USERNAME@sculpin.seismo.helsinki.fi" USERNAME@geo-hpfe.seismo.helsinki.fi:/data/home/USERNAME/output-continental_extension/solution/ .
If you have created a tar file (e.g.,
modelname.tar.gz) you can use the following:scp -O -oProxyCommand="ssh -W %h:%p USERNAME@sculpin.seismo.helsinki.fi" USERNAME@geo-hpfe.seismo.helsinki.fi:/data/home/USERNAME/output-continental_extension/solution/modelname.tar.gz .
Running ASPECT models#
Load ASPECT and its dependencies using spack
spack load aspectCopy the cookbooks (=input files) to your home directory
cp -r /globalscratch/public/aspect/cookbooks/ ~/Copy the ASPECT run scheduler file to your home directory
cp /globalscratch/public/aspect.batch ~/Now you should be cleared to submit the first ASPECT model by executing
sbatch aspect.batchMonitor the job status:
squeueNote that the directory name of the output is formed from the model name (
output-continental_extension/solution)
Copy VTU files to your local machine (see instructions above) to be opened in ParaView
You can cancel your job with
scancel jobidwhere jobid is the numerical ID of the job, and can be found usingsqueue
To modify your model, open the input file
vim ~/cookbooks/continental_extension/continental_extension.prm…to change the parameters you want.
Monitoring job status/cancelling a job#
squeue: Show a list of models running on the geo-hpcc clusterscancel JOB_ID: Cancel a job running on the cluster