Shrine SSO runs on three software components: Tomcat, Apache, and Shibboleth.

The following instructions assume that (1) you have installed Shrine, and hence are using Tomcat as your application server, (2) you will install Apache on the same host as Tomcat and (3) you will also install Shibboleth SP 3 on the same host (Shibboleth will run as an apache module + daemon).

Software Installation

Running and Restarting the Software

The appropriate software must be restarted whenever the configuration is modified.

Tomcat

Restart when server.xml, shrine.conf or override.conf are modified

Starting Tomcat:

sudo -u shrine bash

cd /opt/shrine/tomcat

./bin/startup.sh

To deploy a new WAR file:

./bin/shutdown.sh

rm fr ./webapps/shrine api*

cp <Shrine war file> ./webapps

./bin/startup.sh

Shibboleth

Restart when shibboleth2.xml or other Shibboleth configuration files are modified.

sudo -u root bash

service shibd (re)start

Apache

Restart after restarting Shibboleth; or when there is a change in Apache configuration.

sudo -u root bash

service https (re)start