Appendix |
The steps below show how to set up Connect Server as a transfer server for Shares. The procedure assumes you have already set up your Shares application. For general information on setting up a transfer server (using the Node API), see Managing the Node API.
Follow the instructions in Standard Installation to install Connect Server either locally (on the same host as Shares) or remotely.
The steps below must be performed as root.
Aspera's Web applications authenticate to the remote node service using a Node API username and password. The following command creates a Node API user/password and associates it with a file transfer user, asp1, which you will create in the next step. The Node API credentials can then be used to create nodes. Note that different nodes may use different Node API username/password pairs.
# /opt/aspera/bin/asnodeadmin -a -u node_api_username -p node_api_passwd -x asp1
The file transfer user authenticates the actual ascp transfer, and must be an operating system account on the node. To create a transfer user—for example, asp1—run the following command:
# useradd asp1
After you've created the operating system account, set up this user in Connect Server. For instructions on setting up a user, see Setting up Users.
For example, if the file transfer user is asp1, the standard location for the public key is in the user's home directory, as follows:
/home/asp1/.ssh/authorized_keys |
The Aspera-provided key file is located in:
/opt/aspera/var/aspera_id_dsa.pub |
On the command line, run the following to create the user's public key folder (if it does not already exist):
# mkdir /home/asp1/.ssh
Run the following commands to create the keyfile authorized_keys (if it does not already exist), and append the key text to it. Update the directory permissions and ownership if necessary.
# cat /opt/aspera/var/aspera_id_dsa.pub >> /home/asp1/.ssh/authorized_keys
Run the following commands to change the key directory and keyfile's ownership to user asp1, to allow access by the asp1 group, and to set permission bits:
# chown -R asp1:asp1 /home/asp1/.ssh/authorized_keys # chmod 600 /home/asp1/.ssh/authorized_keys # chmod 700 /home/asp1 # chmod 700 /home/asp1/.ssh
The Aspera Node API provides an HTTPS interface for encrypted communication between node machines (on port 9092, by default). To modify the HTTPS port, see aspera.conf for Nodes. For information on maintaining and generating a new SSL certificate, see Setting up SSL for your Node(s).
Make the following changes in the aspera.conf file, located in /opt/aspera/etc:
<central_server> <persistent_store>enable</persistent_store> </central_server> <server> <server_name>server_ip_or_name</server_name> </server>
Whenever you change these settings, you must restart asperacentral and asperanoded.
# /etc/init.d/asperanoded restart # /etc/init.d/asperacentral restart
If you haven't done so already, set up the transfer user with an SSH public key as described in Setting Up Token Authorization.
In your aspera.conf file, add an authorization section for a transfer user as shown for the user asp1 in the example below. The authorization section should specify the following:
<user> <name>asp1</name> <authorization> <transfer> <in> <value>token</value> </in> <out> <value>token</value> </out> </transfer> <token> <encryption_key>gj5o930t78m34ejme9dx</encryption_key> </token> </authorization> <file_system> ... ... </file_system> </user>
Alternatively, you can configure token-authorization settings in a <group> section to be applied to all users in the group. Or, you can configure the settings in the <default> section to apply them globally for all users.
For additional details on configuring token authorization, see Setting Up Token Authorization.