Changes between Version 2 and Version 3 of Installation


Ignore:
Timestamp:
2010-10-07T14:55:32+02:00 (14 years ago)
Author:
jvelde
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installation

    v2 v3  
    22This 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.
    33
     4Please note that most or all of these commands should be executed as root user, or with '''sudo'''.
     5
    46=== Install Eclipse ===
    5  * '''sudo apt-get install eclipse''', this also installs Java 6 JDK (openjdk)
     7 * '''apt-get install eclipse''', this also installs Java 6 JDK (openjdk)
    68
    79=== Install MySQL ===
    8  * '''sudo apt-get install mysql-server''', set root user password when prompted
     10 * Install using '''apt-get install mysql-server''', set root user password when prompted
    911 * Start MySQL using: '''mysql -u root -p''', enter your password
    1012 * Create database with '''create database xgap_1_4_distro;'''
     
    1214
    1315=== 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'''
    1820 * In the Nano editor, add “'''export JAVA_HOME=/usr/lib/jvm/java-6-openjdk'''”, save and quit
    1921 * Grant rights to Tomcat: '''sudo chmod 777 /usr/local/tomcat * -R'''