Allas connection configuration
The easiest general option to set up Allas connection configuration is to use allas-conf
tool:
- Sets up connection configuration for many different tools
- Swift or S3 connection
- Is itself a command-line tool.
- Available on CSC supercomputers
- Can be installed to Linux and Mac, but not Windows.
- Suits well, if only one CSC project at a time in use for Allas.
Alternatively, one can use Puhti or Mahti web interface:
- Sets up connection configuration for web interface file section and
rclone
, but not other Allas clients. - Swift or S3 connection
- Available in web-interface, so no installations needed for using it, but the CSC project must have Puhti or Mahti service enabled.
- Suits well, if one or several CSC projects in use for Allas.
allas-conf
availability
Available on CSC supercomputers with allas module. Can be (installed)[allas-conf-installation] to Linux and Mac, but not Windows.
allas-conf
configure connection
SWIFT connection
is valid for up to eight hours
Configure Allas access using Swift protocol:
Theallas-conf
command prompts for your CSC password (University/Haka password will not work here). It lists your Allas projects and asks you to define a project (if not already defined as an argument).
By default, allas-conf
lists your projects that have access to Allas, but if you know the name of the project, you
can also give it as an argument:
allas-conf
enables you to use only one Allas project at a time in one session. You can switch to another project by running allas-conf
again.
Note that the Allas project does not need to be the same as the project you are using in Puhti or Mahti.
allas-conf
generates Swift configuration files for : a-tools,
rcloneand
swift`.
The authentication information is stored in the OS_AUTH_TOKEN
and OS_STORAGE_URL
environment variables. However, you can refresh the authentication at any time by running allas-conf
again. The environment variables are set only for the current login session, so you need to configure authentication individually for each shell with which you wish to access Allas.
If you are running big, multistep processes (e.g. batch jobs), it may be that your data management pipeline takes more than eight hours. In those cases you can add option -k
to the allas-conf
command.
S3 connection
To enable S3 protocol, use option -m S3
The same authentication is used for all login sessions and it does not have an expiration time.
allas-conf
generates configuration files in S3 mode for:
* rclone
: .config/rclone/rclone.conf
* s3cmd
: ~/.s3cfg
* aws
: credentials and S3 region in ~/.aws/credentials
and S3 endpoint in ~/.aws/config
files.
Additionally, Python 'boto3' and R 'aws.s3' libraries use 'aws' configuration files.
This saves the
If you use these keys in other services, your should make sure that the keys always remain private. Any person who has access to these two keys, can access and modify all the data that the project has in Allas.
If needed, you can deactivate an S3 key pair with command:
Note
Remember to be careful and security-aware when configuring S3 connection to Allas. The S3 keys are stored in a readable format in your home directory and anyone who can read your keys can access Allas until the keys are expilicitly revoked from Allas. Removing the keys from your own computer is not enough to deactivate them.
allas-conf
installation
allas-conf
can be installed only to Linux or Mac.
- Download the
allas_conf
script to set up the connection to your Allas project:wget https://raw.githubusercontent.com/CSCfi/allas-cli-utils/master/allas_conf
- Install Rclone for Swift connection OR OpenStack client for S3 connection
If running allas_conf
locally, you should modify all of the commands above with:
- Add
source
the beginning - Use
--user
option to define your CSC username .
For example:
source allas_conf --user your-csc-username -p your-csc-project-name
source allas_conf --user your-csc-username -p your-csc-project-name -m S3
source allas_conf --user your-csc-username -p csc-project-name --s3remove
S3 connection details
To use Allas with S3 on a machine where allas-conf
is not available or with tools not directly supported, usually the following information is needed:
- S3 credentials: access key and secret key
- S3 endpoint:
a3s.fi
orhttps://a3s.fi
- S3 region: sometimes no settings needed, sometimes leave empty (````)
The easiest way to get the S3 credentials is by configuring an S3 connection on a CSC supercomputer (or some other machine that can run allas_conf
tool) and see the keys from the printout of the command.
Later the keys can be found for example with: less ~/.aws/credentials
If you wish to access Allas from a personal laptop or some other server with s3cmd
or aws
command-line tools, you can also copy the setting files as such. Use any file transfer tool, for example scp
.
aws
: copy the~/.aws
-folder to your home directory toC:\Users\username\.aws
on Windows or~/.aws/
on Mac and Linux.s3cmd
: copy the~/.s3cfg
-file to your home directory on Mac and Linux.