At IU, how do I use HSI to access my SDA account?
On this page:
Introduction
The Hierarchical Storage Interface (HSI) application was created by Michael Gleicher, of Gleicher Enterprises, LLC, to conveniently access much of the functionality of HPSS. The HSI interface is similar to that of FTP. Its companion program, HTAR, can simplify aggregation of many files into one large file, which is the preferred method of storing things in HPSS.
Note: For information about other methods of accessing the SDA, see At IU, how do I access the SDA?
Accessing HSI
On the Research Database Complex at Indiana University,
HSI is installed in /usr/local/bin (so it's in the
default path). On Big Red and Quarry, you may
need to add +hpss to the beginning of your
.soft file, and then give the resoft command
to make it available (you need do this only once).
To use HSI on your personal workstation, download a copy from the HSI page.
HSI commands
HSI commands will seem familiar to Unix and FTP users. A session
might look like the following (% is the Unix shell
prompt, and ? is the HSI prompt):
You can find general documentation for these utilities at the HPSS Consortium's web site or from IU. The HTAR documentation is in chapter 8 of the HSI manual.
Using alternate authentication with HSI or HTAR
By default, HSI and HTAR will prompt for login information. HSI and HTAR refer to this as the combo authentication method. In addition, you can authenticate using a Kerberos keytab (keytab method), existing Kerberos credentials (Kerberos method), or TeraGrid credentials (gsi method), if these methods are built into the binary you are using.
To select an authentication method for HSI, use the command line
options, a .hsirc file in your home directory, or
environment variables. The command line options and
.hsirc do not work for HTAR; the only way to set the
authentication method for HTAR is to use the environment
variables.
To set the authentication method, use one of the following:
- Use the
-A methodoption for HSI. - Add
authmethod = methodto the.hsircfile. - Set the HPSS_AUTH_METHOD environment variable to the appropriate method.
Replace method with the name of the method:
combo, keytab, kerberos, or
gsi.
If you're using the keytab method, you must also specify the keytab file. Do this in one of the following ways:
- Set the keytab filename with the
-k /path/to/mykeytaboption for HSI. - Add
keytab = /path/to/mykeytabto the.hsircfile. - Set the HPSS_KEYTAB_PATH environment variable to the path to the keytab.
If you're using the keytab method, you must also specify the login
name. Do this in one of the following ways (replacing
username with your username):
- Set the login name with the
-l usernameoption for HSI. - Add
principal = usernamein the.hsircfile. - Set the HPSS_PRINCIPAL environment variable to the username.
The following examples show how to define the environment variables for the keytab method (for either HTAR or HSI):
- If you use
cshortcsh: setenv HPSS_PRINCIPAL username setenv HPSS_AUTH_METHOD keytab setenv HPSS_KEYTAB_PATH /home/username/mykeytab - If you use
kshorbash: export HPSS_PRINCIPAL=username export HPSS_AUTH_METHOD=keytab export HPSS_KEYTAB_PATH=/home/username/mykeytab
Replace username with your username, and
mykeytab with the name of your keytab file.
The following example shows how to set these options on the command line (HSI only):
hsi -A keytab -k /path/to/mykeytab -l usernameThe following example shows how to set these options in your
.hsirc file (HSI only):
Last modified on July 28, 2011.







