Connecting to ARCHER2 and transferring data

Overview

Teaching: 20 min
Exercises: 15 min
Questions
  • How can I access ARCHER2 interactively and transfer data?

Objectives
  • Understand how to connect to ARCHER2.

  • Know how to transfer data onto and off of ARCHER2 efficiently.

Connecting using SSH

The ARCHER2 login address is

login.archer2.ac.uk

Access to ARCHER2 is via SSH using both a time-based code (TOTP) and a passphrase-protected SSH key pair. As an additional security measure, newly created accounts must also use a one time password retrieved from the SAFE web adminsitration service for the first ever login.

TOTP

A time based one time password (TOTP) is a credential that changes value over time (on ARCHER2, the code changes every 30 seconds). Users link a TOTP app on their mobile device or laptop to their ARCHER2 account using an initial seed (usually provided by a QR code that you scan but can also be a string of characters) and this then allows the app to produce codes that match the ones known by ARCHER2.

When you create an account on ARCHER2, you will need to register TOTP access in a suitable app. Instructions for doing this are available in the SAFE documentation.

You only need to enter the TOTP once every 10 hours for each account and local host that you connect to ARCHER2 from.

SSH keys

As well as TOTP, users are required to add the public part of an SSH key pair to access ARCHER2. The public part of the key pair is associated with your account using the SAFE web interface. See the ARCHER2 User and Best Practice Guide for information on how to create SSH key pairs and associate them with your account:

Log in to ARCHER2

Once you have managed to setup your TOTP and SSH key pair try to log into ARCHER2 for the first time using the command:

ssh -i /path/to/sshkey username@login.archer2.ac.uk

The first time you login, you will be prompted to change your password. You will need to enter your initial password from SAFE again (this will be referred to as your LDAP password). Once you have entered this, you will be prompted to choose a new password which you must enter twice. The new password you enter must conform to the ARCHER2 Password Policy. Once you have changed the passord in this way, you should be able to log on with just the SSH key and TOTP combination.

Data transfer services: scp, rsync

ARCHER2 supports a number of different data transfer mechanisms. The one you choose depends on the amount and structure of the data you want to transfer and where you want to transfer the data to. The three main options are:

More information on data transfer mechanisms can be found in the ARCHER2 User and Best Practice Guide:

Data transfer best practice

There is a lot of information available in the ARCHER2 documentation on how to transfer data using the methods above and how to make it efficient in the documentation linked above.

Here are the main points you should consider:

Creating an uncompressed zip archive and verifying the contents

Using the documentation above, find the command you would use to create an uncompressed zip archive file of all data within a directory called large_data_output/. What command would you use to verify that the archive file you have created is not corrupt so you can safely delete the original data?

Solution

You use the zip command to archive the data. The -r option is used to perform the operation recursively on a directory and the -0 option is used to specify the archive should be uncompressed:

auser@login01-nmn:~> zip -0r large_data_output.zip large_data_output/

To verify the archive is valid, you would use the zip command again, this time with the -T option:

auser@login01-nmn:~> zip -T large_data_output.zip

Key Points

  • ARCHER2’s login address is login.archer2.ac.uk.

  • The password policy for ARCHER2 is well documented.

  • There are a number of ways to transfer data to/from ARCHER2.