15572: Install doc updates for workbench, ws, dispatcher
[arvados.git] / doc / install / install-workbench-app.html.textile.liquid
1 ---
2 layout: default
3 navsection: installguide
4 title: Install Workbench
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 # "Install dependencies":#dependencies
13 # "Update config.yml":#update-config
14 # "Update Nginx configuration":#update-nginx
15 # "Trusted client flag":#trusted_client
16 # "Install arvados-workbench":#install-packages
17 # "Restart the API server and controller":#restart-api
18 # "Confirm working installation":#confirm-working
19
20 h2(#dependencies). Install dependencies
21
22 # "Install Ruby and Bundler":ruby.html
23 # "Install nginx":nginx.html
24 # "Install Phusion Passenger":https://www.phusionpassenger.com/library/walkthroughs/deploy/ruby/ownserver/nginx/oss/install_passenger_main.html
25
26 h2(#configure). Update config.yml
27
28 Edit @/etc/arvados/config.yml@ to set the keys below.  The full set of configuration options are in the "Workbench section of config.yml":{{site.baseurl}}/admin/config.html
29
30 <notextile>
31 <pre><code>    Services:
32       Workbench:
33         ExternalURL: <span class="userinput">"https://workbench.ClustedID.example.com"</span>
34     Workbench:
35       SecretKeyBase: <span class="userinput">aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</span>
36     Users:
37       AutoAdminFirstUser: true
38 </code></pre>
39 </notextile>
40
41 This application needs a secret token. Generate a new secret:
42
43 <notextile>
44 <pre><code>~$ <span class="userinput">ruby -e 'puts rand(2**400).to_s(36)'</span>
45 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
46 </code></pre>
47 </notextile>
48
49 Then put that value in the @Workbench.SecretKeyBase@ field.
50
51 You probably want to enable @Users.AutoAdminFirstUser@ .  The first user to log in when no other admin user exists will automatically be made an admin.
52
53 h2(#update-nginx). Update nginx configuration
54
55 Use a text editor to create a new file @/etc/nginx/conf.d/arvados-workbench.conf@ with the following configuration.  Options that need attention are marked with "TODO".
56
57 <notextile>
58 <pre><code>server {
59   listen       *:443 ssl;
60   server_name  workbench.<span class="userinput">ClusterID.example.com</span>;
61
62   ssl on;
63   ssl_certificate     <span class="userinput">/YOUR/PATH/TO/cert.pem</span>;
64   ssl_certificate_key <span class="userinput">/YOUR/PATH/TO/cert.key</span>;
65
66   root /var/www/arvados-workbench/current/public;
67   index  index.html;
68
69   passenger_enabled on;
70   # If you're using RVM, uncomment the line below.
71   #passenger_ruby /usr/local/rvm/wrappers/default/ruby;
72
73   # `client_max_body_size` should match the corresponding setting in
74   # the API.MaxRequestSize and Controller's server's Nginx configuration.
75   client_max_body_size 128m;
76 }
77 </code></pre>
78 </notextile>
79
80 h2(#trusted_client). Trusted client flag
81
82 In the <strong>API server</strong> project root, start the Rails console.  {% include 'install_rails_command' %}
83
84 Create an ApiClient record for your Workbench installation with the @is_trusted@ flag set.
85
86 <notextile><pre><code>irb(main):001:0&gt; <span class="userinput">include CurrentApiClient</span>
87 =&gt; true
88 irb(main):002:0&gt; <span class="userinput">act_as_system_user do ApiClient.create!(url_prefix: "https://workbench.ClusterID.example.com/", is_trusted: true) end</span>
89 =&gt; #&lt;ApiClient id: 2, uuid: "...", owner_uuid: "...", modified_by_client_uuid: nil, modified_by_user_uuid: "...", modified_at: "2019-12-16 14:19:10", name: nil, url_prefix: "https://workbench.ClusterID.example.com/", created_at: "2019-12-16 14:19:10", updated_at: "2019-12-16 14:19:10", is_trusted: true&gt;
90 </code></pre>
91 </notextile>
92
93 {% assign arvados_component = 'arvados-workbench' %}
94
95 {% include 'install_packages' %}
96
97 {% include 'restart_api' %}
98
99 h2(#confirm-working). Confirm working installation
100
101 Visit @https://workbench.ClusterID.example.com@ in a browser.  You should be able to log in using the login method you configured in the previous step.  If @Users.AutoAdminFirstUser@ is true, you will be an admin user.