-
Notifications
You must be signed in to change notification settings - Fork 7
Installing REMITT
Jeff Buchbinder edited this page Oct 31, 2011
·
2 revisions
- JDK 6 (1.6): http://jdk6.java.net/download.html
- Apache Tomcat 7.x: http://tomcat.apache.org/
- MySQL: http://www.mysql.com/
- Build a copy of REMITT following the steps in Building REMITT.
- Copy
src/main/webapp/WEB-INF/remitt.properties
to/etc/remitt.properties
, making adjustments for local settings. - Create a REMITT database:
mysqladmin -uroot create remitt
- Import the REMITT definitions:
mysql -uroot remitt < sql/ddl.sql
- Copy
target/remitt.war
to your Tomcat installation'swebapps
directory. - Adjust the startup script to pass
-Dremitt.properties=/etc/remitt.properties
in JAVA_OPTS. - Start up your Tomcat install as usual. The interface should be available by default at
http://localhost:8080/remitt/
, with username "Administrator" and password "password".