Merge branch '21721-refresh-python-deps'
[arvados.git] / doc / install / install-workbench2-app.html.textile.liquid
1 ---
2 layout: default
3 navsection: installguide
4 title: Install Workbench 2
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 # "Update config.yml":#update-config
13 # "Update Nginx configuration":#update-nginx
14 # "Install arvados-workbench2":#install-packages
15 # "Restart the API server and controller":#restart-api
16 # "Confirm working installation":#confirm-working
17 # "Trusted client setting":#trusted_client
18
19 Workbench2 is the web-based user interface for Arvados.
20
21 {% include 'notebox_begin' %}
22 Workbench2 is the replacement for Arvados Workbench. Workbench2 is suitable for day-to-day use, but does not yet implement every feature of the traditional Workbench.
23 {% include 'notebox_end' %}
24
25 h2(#configure). Update config.yml
26
27 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
28
29 <notextile>
30 <pre><code>    Services:
31       Workbench2:
32         ExternalURL: <span class="userinput">"https://workbench2.ClusterID.example.com"</span>
33 </code></pre>
34 </notextile>
35
36 h2(#update-nginx). Update Nginx configuration
37
38 Workbench2 does not require its own database. It is a set of html, javascript and css files that are served as static files from Nginx.
39
40 Use a text editor to create a new file @/etc/nginx/conf.d/arvados-workbench2.conf@ with the following configuration.  Options that need attention are marked in <span class="userinput">red</span>.
41
42 <notextile>
43 <pre><code>server {
44     listen       80;
45     server_name  workbench2.<span class="userinput">ClusterID.example.com</span>;
46     return 301   https://workbench2.<span class="userinput">ClusterID.example.com</span>$request_uri;
47 }
48
49 server {
50   listen       443 ssl;
51   server_name  workbench2.<span class="userinput">ClusterID.example.com</span>;
52
53   ssl_certificate     <span class="userinput">/YOUR/PATH/TO/cert.pem</span>;
54   ssl_certificate_key <span class="userinput">/YOUR/PATH/TO/cert.key</span>;
55
56   index  index.html;
57
58   # <span class="userinput">Workbench2 uses a call to /config.json to bootstrap itself</span>
59   # <span class="userinput">and find out where to contact the API server.</span>
60   location /config.json {
61     return 200 '{ "API_HOST": "<span class="userinput">ClusterID.example.com</span>" }';
62   }
63
64   location / {
65     root      /var/www/arvados-workbench2/workbench2;
66     index     index.html;
67     try_files $uri $uri/ /index.html;
68     if (-f $document_root/maintenance.html) {
69       return 503;
70     }
71   }
72 }
73 </code></pre>
74 </notextile>
75
76 h2. Vocabulary configuration
77
78 Workbench2 will load, if available, a vocabulary definition which lists available metadata properties for groups and collections.  To learn how to configure the property vocabulary definition, please visit the "Metadata Vocabulary Format":{{site.baseurl}}/admin/metadata-vocabulary.html page in the Admin section.
79
80 {% assign arvados_component = 'arvados-workbench2' %}
81
82 {% include 'install_packages' %}
83
84 {% include 'restart_api' %}
85
86 h2(#confirm-working). Confirm working installation
87
88 Visit @https://workbench2.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.
89
90 h2(#trusted_client). Trusted client flag
91
92 Log in to Workbench once to ensure that the Arvados API server has a record of the Workbench client. (It's OK if Workbench says your account hasn't been activated yet. We'll deal with that next.)
93
94 In the <strong>API server</strong> project root, start the Rails console.  {% include 'install_rails_command' %}
95
96 At the console, enter the following commands to locate the ApiClient record for your Workbench installation (typically, while you're setting this up, the @last@ one in the database is the one you want), then set the @is_trusted@ flag for the appropriate client record:
97
98 <notextile><pre><code>irb(main):001:0&gt; <span class="userinput">wb = ApiClient.all.last; [wb.url_prefix, wb.created_at]</span>
99 =&gt; ["https://workbench.example.com/", Sat, 19 Apr 2014 03:35:12 UTC +00:00]
100 irb(main):002:0&gt; <span class="userinput">include CurrentApiClient</span>
101 =&gt; true
102 irb(main):003:0&gt; <span class="userinput">act_as_system_user do wb.update!(is_trusted: true) end</span>
103 =&gt; true
104 </code></pre>
105 </notextile>