Salt installer change: standardize on putting the certs directory under
[arvados.git] / doc / install / salt-single-host.html.textile.liquid
1 ---
2 layout: default
3 navsection: installguide
4 title: Single host Arvados
5 ...
6 {% comment %}
7 Copyright (C) The Arvados Authors. All rights reserved.
8
9 SPDX-License-Identifier: CC-BY-SA-3.0
10 {% endcomment %}
11
12 # "Limitations of the single host install":#limitations
13 # "Prerequisites":#prerequisites
14 # "Download the installer":#single_host
15 # "Choose the SSL configuration":#certificates
16 ## "Using a self-signed certificate":#self-signed
17 ## "Using a Let's Encrypt certificate":#lets-encrypt
18 ## "Bring your own certificate":#bring-your-own
19 # "Further customization of the installation (modifying the salt pillars and states)":#further_customization
20 # "Run the provision.sh script":#run_provision_script
21 # "Install the CA root certificate":#ca_root_certificate
22 # "Initial user and login":#initial_user
23 # "Test the installed cluster running a simple workflow":#test_install
24 # "After the installation":#post_install
25
26 h2(#limitations). Limitations of the single host install
27
28 <b>NOTE: The single host installation is a good choice for evaluating Arvados, but it is not recommended for production use.</b>
29
30 Using the default configuration, this installation method has a number of limitations:
31
32 * all services run on the same machine, and they will compete for resources. This includes any compute jobs.
33 * it uses the local machine disk for Keep storage (under the @/tmp@ directory). There may not be a lot of space available.
34 * it installs the @crunch-dispatch-local@ dispatcher, which can run just eight concurrent CWL jobs. These jobs will be executed on the same machine that runs all the Arvados services and may well starve them of resources.
35
36 It is possible to start with the single host installation method and modify the Arvados configuration file later to address these limitations. E.g. switch to a "different storage volume setup":{{site.baseurl}}/install/configure-s3-object-storage.html for Keep, and switch to "the cloud dispatcher":{{site.baseurl}}/install/crunch2-cloud/install-dispatch-cloud.html to provision compute resources dynamically.
37
38 h2(#prerequisites). Prerequisites and planning
39
40 Prerequisites:
41
42 * git
43 * a dedicated (virtual) machine for your Arvados server with at least 2 cores and 8 GiB of RAM, running a "supported Arvados distribution":{{site.baseurl}}/install/install-manual-prerequisites.html#supportedlinux
44 * a DNS hostname that resolves to the IP address of your Arvados server
45 * ports 443, 8800-8805 need to be reachable from your client (configurable in @local.params@, see below)
46 * port 80 needs to be reachable from everywhere on the internet (only when using "Let's Encrypt":#lets-encrypt)
47 * an SSL certificate matching the hostname in use (only when using "bring your own certificate":#bring-your-own)
48
49 h2(#single_host). Download the installer
50
51 {% include 'branchname' %}
52
53 This procedure will install all the main Arvados components to get you up and running in a single host.
54
55 This is a package-based installation method, however the installation script is currently distributed in source form via @git@:
56
57 <notextile>
58 <pre><code>git clone https://git.arvados.org/arvados.git
59 git checkout {{ branchname }}
60 cd arvados/tools/salt-install
61 </code></pre>
62 </notextile>
63
64 The @provision.sh@ script will help you deploy Arvados by preparing your environment to be able to run the installer, then running it. The actual installer is located in the "arvados-formula git repository":https://git.arvados.org/arvados-formula.git/tree/refs/heads/{{ branchname }} and will be cloned during the running of the @provision.sh@ script.  The installer is built using "Saltstack":https://saltproject.io/ and @provision.sh@ performs the install using master-less mode.
65
66 First, copy the configuration files:
67
68 <notextile>
69 <pre><code>cp local.params.example.single_host_single_hostname local.params
70 cp -r config_examples/single_host/single_hostname local_config_dir
71 </code></pre>
72 </notextile>
73
74 Edit the variables in the <i>local.params</i> file. Pay attention to the <b>*_PORT, *_TOKEN</b> and <b>*KEY</b> variables. The *SSL_MODE* variable is discussed in the next section.
75
76 h2(#certificates). Choose the SSL configuration (SSL_MODE)
77
78 Arvados requires an SSL certificate to work correctly. This installer supports these options:
79
80 * @self-signed@: let the installer create a self-signed certificate
81 * @lets-encrypt@: automatically obtain and install an SSL certificate for your hostname
82 * @bring-your-own@: supply your own certificate in the `certs` directory
83
84 h3(#self-signed). Using a self-signed certificate
85
86 In the default configuration, this installer uses self-signed certificate(s):
87
88 <notextile>
89 <pre><code>SSL_MODE="self-signed"
90 </code></pre>
91 </notextile>
92
93 When connecting to the Arvados web interface for the first time, you will need to accept the self-signed certificate as trusted to bypass the browser warnings.
94
95 h3(#lets-encrypt). Using a Let's Encrypt certificate
96
97 To automatically get a valid certificate via Let's Encrypt, change the configuration like this:
98
99 <notextile>
100 <pre><code>SSL_MODE="lets-encrypt"
101 </code></pre>
102 </notextile>
103
104 The hostname for your Arvados cluster must be defined in @HOSTNAME_EXT@ and resolve to the public IP address of your Arvados instance, so that Let's Encrypt can validate the domainname ownership and issue the certificate.
105
106 When using AWS, EC2 instances can have a default hostname that ends with <i>amazonaws.com</i>. Let's Encrypt has a blacklist of domain names for which it will not issue certificates, and that blacklist includes the <i>amazonaws.com</i> domain, which means the default hostname can not be used to get a certificate from Let's Encrypt.
107
108 h3(#bring-your-own). Bring your own certificate
109
110 To supply your own certificate, change the configuration like this:
111
112 <notextile>
113 <pre><code>SSL_MODE="bring-your-own"
114 </code></pre>
115 </notextile>
116
117 Copy your certificate files to the directory specified with the variable @CUSTOM_CERTS_DIR@. The provision script will find it there. The certificate and its key need to be copied to a file named after @HOSTNAME_EXT@. For example, if @HOSTNAME_EXT@ is defined as @my-arvados.example.net@, the script will look for
118
119 <notextile>
120 <pre><code>${CUSTOM_CERTS_DIR}/my-arvados.example.net.crt
121 ${CUSTOM_CERTS_DIR}/my-arvados.example.net.key
122 </code></pre>
123 </notextile>
124
125 All certificate files will be used by nginx. You may need to include intermediate certificates in your certificate file. See "the nginx documentation":http://nginx.org/en/docs/http/configuring_https_servers.html#chains for more details.
126
127 h2(#further_customization). Further customization of the installation (modifying the salt pillars and states)
128
129 If you want or need further customization, you can edit the Saltstack pillars and states files. Pay particular attention to the <i>pillars/arvados.sls</i> one. Any extra <i>state</i> file you add under <i>local_config_dir/states</i> will be added to the salt run and applied to the host.
130
131 h2(#run_provision_script). Run the provision.sh script
132
133 When you finished customizing the configuration, you are ready to copy the files to the host (if needed) and run the @provision.sh@ script:
134
135 <notextile>
136 <pre><code>scp -r provision.sh local* tests user@host:
137 ssh user@host sudo ./provision.sh
138 </code></pre>
139 </notextile>
140
141 and wait for it to finish. The script will need 5 to 10 minutes to install and configure everything.
142
143 If everything goes OK, you'll get final output that looks similar to this:
144
145 <notextile>
146 <pre><code>arvados: Succeeded: 151 (changed=36)
147 arvados: Failed:      0
148 </code></pre>
149 </notextile>
150
151 h2(#ca_root_certificate). Install the CA root certificate (SSL_MODE=self-signed only)
152
153 Arvados uses SSL to encrypt communications. The web interface uses AJAX which will silently fail if the certificate is not valid or signed by an unknown Certification Authority.
154
155 For this reason, the @arvados-formula@ has a helper state to create a root certificate to authorize Arvados services. The @provision.sh@ script will leave a copy of the generated CA's certificate (@arvados-snakeoil-ca.pem@) in the script's directory so you can add it to your workstation.
156
157 Installing the root certificate into your web browser will prevent security errors when accessing Arvados services with your web browser.
158
159 # Go to the certificate manager in your browser.
160 #* In Chrome, this can be found under "Settings &rarr; Advanced &rarr; Manage Certificates" or by entering @chrome://settings/certificates@ in the URL bar.
161 #* In Firefox, this can be found under "Preferences &rarr; Privacy & Security" or entering @about:preferences#privacy@ in the URL bar and then choosing "View Certificates...".
162 # Select the "Authorities" tab, then press the "Import" button.  Choose @arvados-snakeoil-ca.pem@
163
164 The certificate will be added under the "Arvados Formula".
165
166 To access your Arvados instance using command line clients (such as arv-get and arv-put) without security errors, install the certificate into the OS certificate storage.
167
168 * On Debian/Ubuntu:
169
170 <notextile>
171 <pre><code>cp arvados-root-cert.pem /usr/local/share/ca-certificates/
172 /usr/sbin/update-ca-certificates
173 </code></pre>
174 </notextile>
175
176 * On CentOS:
177
178 <notextile>
179 <pre><code>cp arvados-root-cert.pem /etc/pki/ca-trust/source/anchors/
180 /usr/bin/update-ca-trust
181 </code></pre>
182 </notextile>
183
184 h2(#initial_user). Initial user and login
185
186 At this point you should be able to log on to your new Arvados cluster. The workbench URL will be
187
188 * https://@HOSTNAME_EXT@
189
190 By default, the provision script creates an initial user for testing purposes. This user is configured as administrator of the newly created cluster. The username, password and e-mail address for the initial user are configured in the @local.params@ file. Log in with the e-mail address and password.
191
192 h2(#test_install). Test the installed cluster running a simple workflow
193
194 The @provision.sh@ script saves a simple example test workflow in the @/tmp/cluster_tests@ directory in the node. If you want to run it, just ssh to the node, change to that directory and run:
195
196 <notextile>
197 <pre><code>cd /tmp/cluster_tests
198 sudo ./run-test.sh
199 </code></pre>
200 </notextile>
201
202 It will create a test user (by default, the same one as the admin user), upload a small workflow and run it. If everything goes OK, the output should similar to this (some output was shortened for clarity):
203
204 <notextile>
205 <pre><code>Creating Arvados Standard Docker Images project
206 Arvados project uuid is 'arva2-j7d0g-0prd8cjlk6kfl7y'
207 {
208  ...
209  "uuid":"arva2-o0j2j-n4zu4cak5iifq2a",
210  "owner_uuid":"arva2-tpzed-000000000000000",
211  ...
212 }
213 Creating initial user ('admin')
214 Setting up user ('admin')
215 {
216  "items":[
217   {
218    ...
219    "owner_uuid":"arva2-tpzed-000000000000000",
220    ...
221    "uuid":"arva2-o0j2j-1ownrdne0ok9iox"
222   },
223   {
224    ...
225    "owner_uuid":"arva2-tpzed-000000000000000",
226    ...
227    "uuid":"arva2-o0j2j-1zbeyhcwxc1tvb7"
228   },
229   {
230    ...
231    "email":"admin@arva2.arv.local",
232    ...
233    "owner_uuid":"arva2-tpzed-000000000000000",
234    ...
235    "username":"admin",
236    "uuid":"arva2-tpzed-3wrm93zmzpshrq2",
237    ...
238   }
239  ],
240  "kind":"arvados#HashList"
241 }
242 Activating user 'admin'
243 {
244  ...
245  "email":"admin@arva2.arv.local",
246  ...
247  "username":"admin",
248  "uuid":"arva2-tpzed-3wrm93zmzpshrq2",
249  ...
250 }
251 Running test CWL workflow
252 INFO /usr/bin/cwl-runner 2.1.1, arvados-python-client 2.1.1, cwltool 3.0.20200807132242
253 INFO Resolved 'hasher-workflow.cwl' to 'file:///tmp/cluster_tests/hasher-workflow.cwl'
254 ...
255 INFO Using cluster arva2 (https://arva2.arv.local:8443/)
256 INFO Upload local files: "test.txt"
257 INFO Uploaded to ea34d971b71d5536b4f6b7d6c69dc7f6+50 (arva2-4zz18-c8uvwqdry4r8jao)
258 INFO Using collection cache size 256 MiB
259 INFO [container hasher-workflow.cwl] submitted container_request arva2-xvhdp-v1bkywd58gyocwm
260 INFO [container hasher-workflow.cwl] arva2-xvhdp-v1bkywd58gyocwm is Final
261 INFO Overall process status is success
262 INFO Final output collection d6c69a88147dde9d52a418d50ef788df+123
263 {
264     "hasher_out": {
265         "basename": "hasher3.md5sum.txt",
266         "class": "File",
267         "location": "keep:d6c69a88147dde9d52a418d50ef788df+123/hasher3.md5sum.txt",
268         "size": 95
269     }
270 }
271 INFO Final process status is success
272 </code></pre>
273 </notextile>
274
275 h2(#post_install). After the installation
276
277 Once the installation is complete, it is recommended to keep a copy of your local configuration files. Committing them to version control is a good idea.
278
279 Re-running the Salt-based installer is not recommended for maintaining and upgrading Arvados, please see "Maintenance and upgrading":{{site.baseurl}}/admin/maintenance-and-upgrading.html for more information.