Merge branch 'master' into 9998-no-count-items-available
[arvados.git] / doc / install / install-shell-server.html.textile.liquid
1 ---
2 layout: default
3 navsection: installguide
4 title: Install a shell server
5 ...
6
7 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.
8
9 h2. Install API tokens
10
11 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.
12
13 h2. Install the Ruby SDK and utilities
14
15 First, install the curl development libraries necessary to build the Arvados Ruby SDK.  On Debian-based systems:
16
17 <notextile>
18 <pre><code>~$ <span class="userinput">sudo apt-get install libcurl4-openssl-dev</span>
19 </code></pre>
20 </notextile>
21
22 On Red Hat-based systems:
23
24 <notextile>
25 <pre><code>~$ <span class="userinput">sudo yum install libcurl-devel</span>
26 </code></pre>
27 </notextile>
28
29 Next, install the arvados-cli Ruby gem.  If you're using RVM:
30
31 <notextile>
32 <pre><code>~$ <span class="userinput">sudo /usr/local/rvm/bin/rvm-exec default gem install arvados-cli</span>
33 </code></pre>
34 </notextile>
35
36 If you're not using RVM:
37
38 <notextile>
39 <pre><code>~$ <span class="userinput">sudo -i gem install arvados-cli</span>
40 </code></pre>
41 </notextile>
42
43 h2. Install the Python SDK and utilities
44
45 {% assign rh_version = "6" %}
46 {% include 'note_python_sc' %}
47
48 On Red Hat-based systems:
49
50 <notextile>
51 <pre><code>~$ <span class="userinput">echo 'exclude=python2-llfuse' | sudo tee -a /etc/yum.conf</span>
52 ~$ <span class="userinput">sudo yum install python-arvados-python-client python-arvados-fuse crunchrunner</span>
53 </code></pre>
54 </notextile>
55
56 On Debian-based systems:
57
58 <notextile>
59 <pre><code>~$ <span class="userinput">sudo apt-get install python-arvados-python-client python-arvados-fuse crunchrunner</span>
60 </code></pre>
61 </notextile>
62
63 h2. Install Git and curl
64
65 {% include 'install_git_curl' %}
66
67 h2. Update Git Config
68
69 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.
70
71 <notextile>
72 <pre>
73 <code>~$ <span class="userinput">sudo git config --system 'credential.https://git.<b>uuid_prefix.your.domain</b>/.username' none</span></code>
74 <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>
75 </pre>
76 </notextile>
77
78 h2. Install arvados-login-sync
79
80 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.
81
82 Create an Arvados virtual_machine object representing this shell server. This will assign a UUID.
83
84 <notextile>
85 <pre>
86 <code>apiserver:~$ <span class="userinput">arv --format=uuid virtual_machine create --virtual-machine '{"hostname":"<b>your.shell.server.hostname</b>"}'</span>
87 zzzzz-2x53u-zzzzzzzzzzzzzzz</code>
88 </pre>
89 </notextile>
90
91 Create a token that is allowed to read login information for this VM.
92
93 <notextile>
94 <pre>
95 <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"]}'
96 {
97  ...
98  "api_token":"zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz",
99  ...
100 }</code>
101 </pre>
102 </notextile>
103
104 Note the UUID and the API token output by the above commands: you will need them in a minute.
105
106 Install the arvados-login-sync program.
107
108 If you're using RVM:
109
110 <notextile>
111 <pre>
112 <code>shellserver:~$ <span class="userinput">sudo -i `which rvm-exec` default gem install arvados-login-sync</span></code>
113 </pre>
114 </notextile>
115
116 If you're not using RVM:
117
118 <notextile>
119 <pre>
120 <code>shellserver:~$ <span class="userinput">sudo -i gem install arvados-login-sync</span></code>
121 </pre>
122 </notextile>
123
124 Install cron.
125
126 On Red Hat-based distributions:
127
128 <notextile>
129 <pre><code>~$ <span class="userinput">sudo yum install cronie</span>
130 ~$ <span class="userinput">sudo systemctl enable crond</span>
131 ~$ <span class="userinput">sudo systemctl start crond</span>
132 </code></pre>
133 </notextile>
134
135 On Debian-based systems:
136
137 <notextile>
138 <pre><code>~$ <span class="userinput">sudo apt-get install cron</span>
139 </code></pre>
140 </notextile>
141
142 Configure cron to run the @arvados-login-sync@ program every 2 minutes.
143
144 If you're using RVM:
145
146 <notextile>
147 <pre>
148 <code>shellserver:~$ <span class="userinput">sudo bash -c 'umask 077; tee /etc/cron.d/arvados-login-sync' &lt;&lt;'EOF'
149 ARVADOS_API_HOST="<strong>uuid_prefix.your.domain</strong>"
150 ARVADOS_API_TOKEN="<strong>the_token_you_created_above</strong>"
151 ARVADOS_VIRTUAL_MACHINE_UUID="<strong>zzzzz-2x53u-zzzzzzzzzzzzzzz</strong>"
152 */2 * * * * root /usr/local/rvm/bin/rvm-exec default arvados-login-sync
153 EOF</span></code>
154 </pre>
155 </notextile>
156
157 If you're not using RVM:
158
159 <notextile>
160 <pre>
161 <code>shellserver:~$ <span class="userinput">sudo bash -c 'umask 077; tee /etc/cron.d/arvados-login-sync' &lt;&lt;'EOF'
162 ARVADOS_API_HOST="<strong>uuid_prefix.your.domain</strong>"
163 ARVADOS_API_TOKEN="<strong>the_token_you_created_above</strong>"
164 ARVADOS_VIRTUAL_MACHINE_UUID="<strong>zzzzz-2x53u-zzzzzzzzzzzzzzz</strong>"
165 */2 * * * * root arvados-login-sync
166 EOF</span></code>
167 </pre>
168 </notextile>
169
170 A user should be able to log in to the shell server when the following conditions are satisfied:
171 * The user has uploaded an SSH public key: Workbench &rarr; Account menu &rarr; "SSH keys" item &rarr; "Add new SSH key" button.
172 * As an admin user, you have given the user permission to log in: Workbench &rarr; Admin menu &rarr; "Users" item &rarr; "Show" button &rarr; "Admin" tab &rarr; "Setup shell account" button.
173 * Two minutes have elapsed since the above conditions were satisfied, and the cron job has had a chance to run.