3 navsection: installguide
4 title: Install a shell server
7 Copyright (C) The Arvados Authors. All rights reserved.
9 SPDX-License-Identifier: CC-BY-SA-3.0
12 There is nothing inherently special about an Arvados shell server. It is just a GNU/Linux machine with Arvados utilites and SDKs installed. For optimal performance, the Arvados shell server should be on the same LAN as the Arvados cluster, but that is not required.
14 h2. Install API tokens
16 Please follow the "API token guide":../user/reference/api-tokens.html to get API tokens for your Arvados account and install them on your shell server. We will use those tokens to test the SDKs as we install them.
18 h2. Install the Ruby SDK and utilities
20 First, install the curl development libraries necessary to build the Arvados Ruby SDK. On Debian-based systems:
23 <pre><code>~$ <span class="userinput">sudo apt-get install libcurl4-openssl-dev</span>
27 On Red Hat-based systems:
30 <pre><code>~$ <span class="userinput">sudo yum install libcurl-devel</span>
34 Next, install the arvados-cli Ruby gem. If you're using RVM:
37 <pre><code>~$ <span class="userinput">sudo /usr/local/rvm/bin/rvm-exec default gem install arvados-cli</span>
41 If you're not using RVM:
44 <pre><code>~$ <span class="userinput">sudo -i gem install arvados-cli</span>
48 h2. Install the Python SDK and utilities
50 {% assign rh_version = "7" %}
51 {% include 'note_python_sc' %}
53 On Red Hat-based systems:
56 <pre><code>~$ <span class="userinput">echo 'exclude=python2-llfuse' | sudo tee -a /etc/yum.conf</span>
57 ~$ <span class="userinput">sudo yum install python-arvados-python-client python-arvados-fuse crunchrunner</span>
61 On Debian-based systems:
64 <pre><code>~$ <span class="userinput">sudo apt-get install python-arvados-python-client python-arvados-fuse crunchrunner</span>
68 h2. Install Git and curl
70 {% include 'install_git_curl' %}
74 Configure git to use the ARVADOS_API_TOKEN environment variable to authenticate to arv-git-httpd. We use the @--system@ flag so it takes effect for all current and future user accounts. It does not affect git's behavior when connecting to other git servers.
78 <code>~$ <span class="userinput">sudo git config --system 'credential.https://git.<b>uuid_prefix.your.domain</b>/.username' none</span></code>
79 <code>~$ <span class="userinput">sudo git config --system 'credential.https://git.<b>uuid_prefix.your.domain</b>/.helper' '!cred(){ cat >/dev/null; if [ "$1" = get ]; then echo password=$ARVADOS_API_TOKEN; fi; };cred'</span></code>
83 h2. Install arvados-login-sync
85 This program makes it possible for Arvados users to log in to the shell server -- subject to permissions assigned by the Arvados administrator -- using the SSH keys they upload to Workbench. It sets up login accounts, updates group membership, and adds users' public keys to the appropriate @authorized_keys@ files.
87 Create an Arvados virtual_machine object representing this shell server. This will assign a UUID.
91 <code>apiserver:~$ <span class="userinput">arv --format=uuid virtual_machine create --virtual-machine '{"hostname":"<b>your.shell.server.hostname</b>"}'</span>
92 zzzzz-2x53u-zzzzzzzzzzzzzzz</code>
96 Create a token that is allowed to read login information for this VM.
100 <code>apiserver:~$ <span class="userinput">arv api_client_authorization create --api-client-authorization '{"scopes":["GET /arvados/v1/virtual_machines/<b>zzzzz-2x53u-zzzzzzzzzzzzzzz</b>/logins"]}'
103 "api_token":"zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz",
109 Note the UUID and the API token output by the above commands: you will need them in a minute.
111 Install the arvados-login-sync program.
117 <code>shellserver:~$ <span class="userinput">sudo -i `which rvm-exec` default gem install arvados-login-sync</span></code>
121 If you're not using RVM:
125 <code>shellserver:~$ <span class="userinput">sudo -i gem install arvados-login-sync</span></code>
131 On Red Hat-based distributions:
134 <pre><code>~$ <span class="userinput">sudo yum install cronie</span>
135 ~$ <span class="userinput">sudo systemctl enable crond</span>
136 ~$ <span class="userinput">sudo systemctl start crond</span>
140 On Debian-based systems:
143 <pre><code>~$ <span class="userinput">sudo apt-get install cron</span>
147 Configure cron to run the @arvados-login-sync@ program every 2 minutes.
153 <code>shellserver:~$ <span class="userinput">sudo bash -c 'umask 077; tee /etc/cron.d/arvados-login-sync' <<'EOF'
154 ARVADOS_API_HOST="<strong>uuid_prefix.your.domain</strong>"
155 ARVADOS_API_TOKEN="<strong>the_token_you_created_above</strong>"
156 ARVADOS_VIRTUAL_MACHINE_UUID="<strong>zzzzz-2x53u-zzzzzzzzzzzzzzz</strong>"
157 */2 * * * * root /usr/local/rvm/bin/rvm-exec default arvados-login-sync
162 If you're not using RVM:
166 <code>shellserver:~$ <span class="userinput">sudo bash -c 'umask 077; tee /etc/cron.d/arvados-login-sync' <<'EOF'
167 ARVADOS_API_HOST="<strong>uuid_prefix.your.domain</strong>"
168 ARVADOS_API_TOKEN="<strong>the_token_you_created_above</strong>"
169 ARVADOS_VIRTUAL_MACHINE_UUID="<strong>zzzzz-2x53u-zzzzzzzzzzzzzzz</strong>"
170 */2 * * * * root arvados-login-sync
175 A user should be able to log in to the shell server when the following conditions are satisfied:
176 * The user has uploaded an SSH public key: Workbench → Account menu → "SSH keys" item → "Add new SSH key" button.
177 * As an admin user, you have given the user permission to log in: Workbench → Admin menu → "Users" item → "Show" button → "Admin" tab → "Setup shell account" button.
178 * Two minutes have elapsed since the above conditions were satisfied, and the cron job has had a chance to run.