...
Code Block |
---|
apt-get install subversion postgresql libpgjava tomcat7 openjdk-7-jdk ant |
Download the source code, in this case we're fetching version 2.1.1 and stick that under /opt:
Code Block |
---|
cd /opt
svn co http://anonsvn.internet2.edu/svn/i2mi/tags/GROUPER_2_1_1/ |
Remove the old JDK6:
Code Block |
---|
apt-get remove openjdk-6-jre-headless |
...
Make JDK7 the default (FIXME: is this still needed?)
Code Block |
---|
update-java-alternatives --jre-headless -s java-1.7.0-openjdk-amd64 |
Download the source code, in this case we're fetching version 2.1.1 and stick that under /opt:
Code Block |
---|
cd /opt
svn co http://anonsvn.internet2.edu/svn/i2mi/tags/GROUPER_2_1_1/ |
Create the PostgreSQL database and credentials:
...