Changes between Version 4 and Version 5 of Installing
- Timestamp:
- Oct 5, 2009, 6:04:22 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Installing
v4 v5 1 1 == Install == 2 2 3 This topic is still on our TODO list, please see the online [http://democo.gnumims.com Demo] 3 There are two ways to get gnuMims running: 4 1. Download the [http://www.gnumims.org/downloads/gnuMims.war war] file and deploy to a Java Servlet (see bellow). 5 1. Download the source code, build and run with Grails. 6 7 Note: there is an online [http://democo.gnumims.com Demo] 4 8 5 9 '''Requirements''' 6 10 7 * Java servlet, we use tomcat. 8 * Mysql - most databases can be used but the war is built for myslq. 9 * See the the DeveloperStartPage if you want to generate a custom war. 11 * Java servlet, we currently use tomcat5.5. 12 * Sun java sdk, we currently use "1.5.0_17" (Debian Lenny: sun-java5-jdk). 13 * Database 14 * The war is built to use an in memory database (hsqldb), this will NOT save data between restarts! 15 * Most databases can be used, we currently use MySQL (Debian Lenny: mysql-server-5.0) 16 * See the the DeveloperStartPage if you want to build a custom war. 10 17 11 18 '''Steps''' 12 19 13 * Download zip file 14 * Extract the zip file into a directory of your choice 15 * Run SQL script setup.sql 16 * Copy the gnumims.war file into the [tomcat.home]/webapps folder or choose to upload through the Tomcat online console. 17 * Point your web-browser to !http://myserver:port/gnumims 20 * Copy the war file into the [$TOMCAT_HOME]/webapps folder or choose to upload through the Tomcat online console. 21 * Point your web browser to !http://localhost:8180/gnuMims/ or !http://myserver:port/gnuMims . 18 22 * Sign on with the user name "admin" and password "pass" 19 23 * Start using gnuMims. … … 23 27 * In Debian add/adjust the following lines in /etc/default/tomcat5.5: 24 28 * JAVA_HOME=/usr/lib/jvm/java-1.5.0-sun/ 29 * JAVA_OPTS="-Djava.awt.headless=true -Xmx256M" 25 30 * TOMCAT5_SECURITY=no 26 27 * Note: the security settings should not be used in production, see http://tomcat.apache.org/tomcat-5.5-doc/security-manager-howto.html 31 * Note: the above security settings should not be used in production, see http://tomcat.apache.org/tomcat-5.5-doc/security-manager-howto.html