Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note

Work in progress

 

This is the group management app that we intent to use for all our federation plansgroup management.

We will run this on an Ubuntu 12.04 VM.

...

Create the PostgreSQL database and credentials:

Code Block
sudo su - postgres
createuser -D -I -R -S -P grouper_user
createdb -O grouper_user -T template0 grouper
exit

...

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

 

Change all (6) occassions of the version string "1.5" into "1.7" in build.xml:

Code Block
languagebash
sed -i -e 's/"1\.5"/"1.7"/g' conf/build.xml

 

Symlink the database driver:

...