Fix 2.4.2 upgrade notes formatting refs #19330
[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 @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       Workbench1:
33         ExternalURL: <span class="userinput">"https://workbench.ClusterID.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 in <span class="userinput">red</span>.
56
57 <notextile>
58 <pre><code>server {
59     listen       80;
60     server_name  workbench.<span class="userinput">ClusterID.example.com</span>;
61     return 301   https://workbench.<span class="userinput">ClusterID.example.com</span>$request_uri;
62 }
63
64 server {
65   listen       443 ssl;
66   server_name  workbench.<span class="userinput">ClusterID.example.com</span>;
67
68   ssl_certificate     <span class="userinput">/YOUR/PATH/TO/cert.pem</span>;
69   ssl_certificate_key <span class="userinput">/YOUR/PATH/TO/cert.key</span>;
70
71   root /var/www/arvados-workbench/current/public;
72   index  index.html;
73
74   passenger_enabled on;
75   # If you're using RVM, uncomment the line below.
76   #passenger_ruby /usr/local/rvm/wrappers/default/ruby;
77
78   # `client_max_body_size` should match the corresponding setting in
79   # the API.MaxRequestSize and Controller's server's Nginx configuration.
80   client_max_body_size 128m;
81 }
82 </code></pre>
83 </notextile>
84
85 h2(#trusted_client). Trusted client flag
86
87 In the <strong>API server</strong> project root, start the Rails console.  {% include 'install_rails_command' %}
88
89 Create an ApiClient record for your Workbench installation with the @is_trusted@ flag set.
90
91 <notextile><pre><code>irb(main):001:0&gt; <span class="userinput">include CurrentApiClient</span>
92 =&gt; true
93 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>
94 =&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;
95 </code></pre>
96 </notextile>
97
98 {% assign arvados_component = 'arvados-workbench' %}
99
100 {% include 'install_packages' %}
101
102 {% include 'restart_api' %}
103
104 h2(#confirm-working). Confirm working installation
105
106 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.