You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

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

I want to run this on a Ubuntu VM. Since Lucid is just around the corner and the beta seems to work OK, I will try to get grouper to work on Lucid.
The old Ubuntu Hardy does not have tomcat6 either.

I would like to stick as much as possible to Ubuntu provided packages (no manual source compilation), yet also try to stick with the stuff that the I2 guys have experience with (Tomcat, Sun Java, MySQL).
The Sun apps used to be in multiverse in Hardy, but they seem to have moved to a more fenced-off repository called 'partner'. See /etc/apt/sources.list on how to enable that. If you try to install sun-java6-jdk without it you'll get this warning:

Package sun-java6-jdk is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package sun-java6-jdk has no installation candidate

After enabling the partner repository you can install the needed packages (this will also pull down all the depending packages). The resulting syste

apt-get install sun-java6-jdk tomcat6 tomcat6-admin ant libmysql-java mysql-server

The grouper quickstart already hung because of not enough memory it seems, fixed by putting this in /etc/default/tomcat6:

JAVA_OPTS="-Djava.awt.headless=true -Xms256m -Xmx512m -XX:MaxPermSize=256m"

To be finished...

  • No labels