Set Up your NCI Account
The steps in this section are aimed at new users who would like to do any of the following tasks:
- Run their own experiment
- Analyse model data outputs
- Browse observational data catalogues
- Evaluate model performance
- Perform other tasks involving ACCESS models or evaluation tools
Create an NCI user account
Most of the data and models you will need are available at the National Computing Infrastructure (NCI).
To access these, you need an NCI account. If you do not have one, sign up here.
Warning
You will need an institutional email address with an organisation that allows access to NCI (e.g., an Australian university, ACCESS-NRI, CSIRO, BoM, CLEX, etc.).
Once you sign up, you will be assigned a username (e.g., ab1234
).
Join relevant NCI projects
NCI provides multiple services that are necessary for climate research. These include the access to supercomputing resources, data storage, and data collections management.
For technical reasons, to access either of these services you need to join a specific project
.
Each project has an ID (e.g. xp65
), which is what the term project actually refers to.
If you are interested in datasets and data collections, you can browse the NCI Data Catalogue and follow the NCI Data Catalogue User Guide.
To run models on Gadi instead, you need to join a project with computing resources, also called Service Units (SU). The project ID will be provided by your supervisor, research project or institution.
To join a project, search for it on NCI website and request membership.
Tip
The first project you join will become your default one. If you would like to change this, check out how to change your default project on Gadi.
There are several NCI projects that may be relevant to you, depending on the tasks you want to carry out.
For tasks supported by ACCESS-NRI (e.g., running a supported model configuration, using a supported model evaluation tool, etc.), you will find a list of relevant projects to join in the pages relative to each respective task.
Login to Gadi
Operations involving model runs and data collections take place on the Gadi supercomputer.
Prerequisites
- Internet connection
-
Terminal with built-in SSH
LinuxMacOSWindows 10 (or later) operative system already has a terminal with built-in SSH.
Users of Windows 9 (or earlier) can install Windows Subsystems for Linux (WSL).Tip
Alternatively, you can login through the ARE Gadi Terminal.
However, it is recommended that you connect to Gadi from your local machine's terminal without using ARE.
- git-bash
You can installgit
andgit-bash
at this link.
To login to Gadi using SSH, on your local machine's terminal run the following command, replacing <your-NCI-username>
with your NCI username (e.g., ab1234
):
ssh <your-NCI-username>@gadi.nci.org.au
You will be prompted to enter your NCI password, and then you will be connected to Gadi:
Automatic login
To simplify the login and avoid being prompted every time to enter your NCI password, follow these steps:
Create an SSH key
To create an SSH key, in your local machine's git-bash
terminal run:
mkdir -p ~/.ssh
ssh-keygen -t ed25519 -f ~/.ssh/id_gadi
Warning
For security reasons, it is recommended to enter a passphrase rather than leave it empty.
As you will see in the next step, you will not need to enter the passphrase every time you login to Gadi.
Add the SSH key to the SSH-agent
An SSH-agent is an SSH key manager that avoids you having to enter your passphrase every time you connect to a server.
To add the SSH key to the SSH-agent, in your local machine's git-bash
terminal run:
eval "$(ssh-agent -s)"
ssh-add --apple-use-keychain ~/.ssh/id_gadi
You will be prompted to enter your SSH key passphrase, which will be stored inside the SSH-agent:
Warning
If you are using a MacOS version prior to Monterey (12.0), substitute the --apple-use-keychain
flag with -K
.
Create/Update the SSH config file
The ~/.ssh/config
is a file where you can store labelled SSH configurations for different remote servers you regularly connect to, so you do not have to remember them all.
To create an SSH config file and add (append) the SSH configuration for Gadi, in your local machine's git-bash
terminal run (by replacing <your-NCI-username>
with your NCI username, e.g., ab1234
):
cat >> ~/.ssh/config << EOF
Host gadi
Hostname gadi.nci.org.au
User <your-NCI-username>
ForwardX11 true
ForwardX11Trusted yes
IdentityFile ~/.ssh/id_gadi
AddKeysToAgent yes
ForwardAgent yes
UseKeychain yes
EOF
Warning
If you have an existing ~/.ssh/config
file which contains hosts with wildcards (*
) in their names so that gadi
would be included in the wildcard expansion (e.g., Host *
), make sure you don't duplicate any of the SSH configuration keywords above.
Add the SSH key to the authorised keys
To enable automatic connection to a server, that server needs to recognise the SSH key as authorised. The list of authorised keys for a certain server is stored in the file ~/.ssh/authorized_keys
.
To add the newly created SSH key as an authorised key for Gadi, in your local machine's git-bash
terminal run the following command:
ssh gadi "mkdir -p .ssh && cat >> .ssh/authorized_keys <<< '$(cat ~/.ssh/id_gadi.pub)'"
You will be prompted to enter your NCI password. If you did all of the above steps correctly, this should be the last time you need to do so.
Success
Your automatic Gadi connection is set up!
Now you should be able to connect to Gadi from your local machine's terminal simply by running:
ssh gadi
Change default project on Gadi
It is recommended that you check what your default project on Gadi is set to. The default project should be set to the computational project you will most likely use to run simulations/evaluations and store data.
You can check which is your default project by logging into Gadi and running:
echo $PROJECT
To change your default project on Gadi, you need to manually change the PROJECT
field in the ~/.config/gadi-login.conf
file.
Alternatively, you can run the following command on Gadi's terminal (by substituting <new-default-project>
with the project you want to set as default):
sed -i "s/\(PROJECT \)\w*/\1<new-default-project>/" ~/.config/gadi-login.conf
Once this is done, exit from Gadi and log back in.
For example, if you want to change your default project to tm70
on Gadi: