Permalink
Oct 13, 2017
Oct 13, 2017
Oct 13, 2017
Oct 13, 2017
Newer
100644
63 lines (44 sloc)
2.82 KB
1
## Overview
2
This set of docker images supports a demonstration of the TIER architecture, and
3
how it can be used for role-based access control (RBAC) in a complex setting.
4
For more information about this demo, see [Tier Canvas Provisioning Demo -
5
TechEx
6
2017](https://docs.google.com/presentation/d/1RT448nvR3gZ2hFUteqSQ6LgOYMwlgua0x0hQBZFrVWE/edit#slide=id.p)
7

8
The Group Docker image is based on Unicon's work, and relies on a seperate MySQL container for subject source and grouper's own database. The Grouper component has the Grouper UI, Grouper Web Services, and an active Grouper Daemon which runs the Grouper Loader. The Grouper loader kicks off all loader jobs and AMQP Message Publisher every 10 seconds, so changes are rapidly propagated through the demo.
9
10
> This image does not follow best Docker practices. It is intended from demo/class usage. It can also be useful for use as a base image for Grouper development.
11
12
## Building
13
14
To build the demo:
15
16
```
17
./build.sh
18
```
19
In order to configure the Canvas provisioning components, you'll need a Canvas
20
instance and will need to generate an API key. Please see [Getting Started With
21
the Canvas
22
API](https://canvas.instructure.com/courses/785215/pages/getting-started-with-the-api)
23
for more information about this.
24
25
There are a number of containers in the demo, so you may need to increase RAM

36
You can log into the Grouper UI with "tjordan/12345". The account is a sysadmin. Through the back door (port 8080), anyone can access Grouper but through the portal proxy, the user will need to be a member of app:grouper:users. There are lots of "user" accounts that can be enrolled in courses and granted access to various parts of the demo. You can view them all at http://localhost:3000/users.

38
The LDAP admin bind account is "cn=admin,dc=example,dc=edu/password". The MySql admin account is "root/<nopassword>". There are a few schemas here for the SIS app (used as subject source) and Grouper's own database

42
* https://localhost:9443 -> Portal/Proxy web app
43
* https://localhost:443 -> ShibIdP
44
* localhost:3306 -> MySQL Database
45
* localhost:389 -> LDAP...used only for authentication
46
* http://localhost:8080 -> Grouper Back Door. Uses LDAP auth.
47
* http://localhost:15672 -> RabbitMQ Web Interface (log in with guest/guest)
48
* http://localhost:3000 -> SIS Web App. Use to add / edit users, and enroll them in courses
49
50
51
## Authors
52
* James Babb (james.babb@wisc.edu)
53
* Tom Jordan (tom.jordan@wisc.edu)