Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

I would like to stick as much as possible to Ubuntu provided packages, preferably the latest versions of everything. Confirmed on the list that Grouper can run fine with OpenJDK, so no need for the Sun Oracle Java stuff any more . So(which was tedious to install and update since Oracle ended their Operating System Distributor License for Java in August 2011). So, at the moment it looks like we're going to use:

To get these installed page described how to get all various components installed and running on a pristine Ubuntu 12.04 system:.

 

Grouper core

This is the core, and consists of a database and the grouper/ directory in the repository - which is downloaded later.

Code Block
apt-get install --no-install-recommends subversion postgresql libpgjava tomcat6 openjdk-7-jdk ant

...

Code Block
apt-get purge openjdk-6-jre-headless

 

Download Now download the source code, in this case we're fetching the latest version of the 2.1 .1 branch, and stick that under /opt:

Code Block
cd /opt
svn co http://anonsvn.internet2.edu/svn/i2mi/tags/GROUPER_2_1_1BRANCH/

 

Create the PostgreSQL database and credentials:

...

Code Block
cd /opt/GROUPER_2_1_1BRANCH/grouper/conf
cp grouper.hibernate.example.properties grouper.hibernate.properties

...

Code Block
languagebash
# Example:
hibernate.connection.url              = jdbc:postgresql://ip6localhostip6-localhost:5432/grouper
hibernate.connection.username         = grouper_user 
hibernate.connection.password         = hackme

...

Code Block
ln -s /usr/share/java/postgresql-jdbc4.jar /opt/GROUPER_2_1_1BRANCH/grouper/lib/custom/

 

Compile sources:

Code Block
cd /opt/GROUPER_2_1_1BRANCH/grouper
ant dist

Create the database structure:

...

No errors should be reported in the end.

 

Configure the subject source(s)

At this stage the database structure is in place to manage groups, but obviously you need something to group (wink).

Often you'll want to group users together. In Grouper-speak users are called subjects.

Grouper needs to know about the subjects before it can group them. This is done by configuring one or more subject sources.

There are several options: let Grouper look stuff up in a directory, an SQL database, etc, depending on the local situation.

Our users subjects are stored in a PostgreSQL database on a remote server. I created a dedicated view in the database, just for Grouper, which is handy because you can add whatever you like, without affecting the rest of the database.

 

User interface

This sits is the web interface that comes as another java app, and sits in /grouper-ui of the repository.

 

First change the version statement to 1.7 to make sure it works with JDK1.7:

 

Code Block
languagebash
cd /opt/GROUPER_2_1_1BRANCH/grouper-ui
sed -i -e 's/"1\.5"/"1.7"/g' build.xml

...

Code Block
languagehtml/xml
<?xml version="1.0" encoding="UTF-8"?>
<Context
        path="/grouper"
        docBase="/opt/GROUPER_2_1_1BRANCH/grouper-ui/dist/grouper"
        reloadable="false"
/>

...

Code Block
chown tomcat6:tomcat6 /opt/GROUPER_2_1_1BRANCH/grouper/logs

Restart tomcat

...