Changes between Version 2 and Version 3 of Installation
- Timestamp:
- 2010-10-07T14:55:32+02:00 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Installation
v2 v3 2 2 This is a very detailed installation manual written for Ubuntu 10.04, AMD64 Desktop edition. The installation for other operating systems is quite similar and often much easier. Notes about the key differences should be added at some point. 3 3 4 Please note that most or all of these commands should be executed as root user, or with '''sudo'''. 5 4 6 === Install Eclipse === 5 * ''' sudoapt-get install eclipse''', this also installs Java 6 JDK (openjdk)7 * '''apt-get install eclipse''', this also installs Java 6 JDK (openjdk) 6 8 7 9 === Install MySQL === 8 * '''sudoapt-get install mysql-server''', set root user password when prompted10 * Install using '''apt-get install mysql-server''', set root user password when prompted 9 11 * Start MySQL using: '''mysql -u root -p''', enter your password 10 12 * Create database with '''create database xgap_1_4_distro;''' … … 12 14 13 15 === Install Tomcat 6 === 14 * '''wget !http://apache.xl-mirror.nl//tomcat/tomcat-6/v6.0.29/bin/apache-tomcat-6.0.29.tar.gz'''15 * '''tar xvzf apache-tomcat-6.0.29.tar.gz'''16 * '''mv apache-tomcat-6.0.29 /usr/local/tomcat'''17 * '''nano ~/.bashrc'''16 * Download Tomcat 6: '''wget !http://apache.xl-mirror.nl//tomcat/tomcat-6/v6.0.29/bin/apache-tomcat-6.0.29.tar.gz''' 17 * Untar: '''tar xvzf apache-tomcat-6.0.29.tar.gz''' 18 * Move: '''mv apache-tomcat-6.0.29 /usr/local/tomcat''' 19 * Edit the bash for the appropriate user: '''nano ~/.bashrc''' 18 20 * In the Nano editor, add “'''export JAVA_HOME=/usr/lib/jvm/java-6-openjdk'''”, save and quit 19 21 * Grant rights to Tomcat: '''sudo chmod 777 /usr/local/tomcat * -R'''