Changes between Version 5 and Version 6 of InstallationTips


Ignore:
Timestamp:
Jun 24, 2010, 12:31:05 PM (14 years ago)
Author:
Gavin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationTips

    v5 v6  
    77We would rather help than have you give up and miss out on a great application. [[BR]]
    88
    9 '''Tomcat Setup Tips'''
     9'''Debian GNU/Linux'''
     10
     11We highly recommend using Debian stable as the host operating system. [[BR]]
     12It is a free, stable, powerful and very widely used operating system for servers. [[BR]]
     13All our testing and configuration is done against Debian servers. [[BR]]
     14
     15 * Install sun-java5, be sure that no gcj (GNU java) packages are installed:
     16{{{
     17dpkg --get-selections |grep gcj
     18}}}
     19 Note: The above search command must return NO packages.
     20{{{
     21aptitude install sun-java5-jdk
     22}}}
     23
     24 * Install tomcat:
     25{{{
     26aptitude install tomcat5.5
     27}}}
     28
     29 * Install mysql:
     30{{{
     31aptitude install mysql-server
     32}}}
     33
     34'''Tomcat'''
    1035
    1136 * In Debian add/adjust the following lines in /etc/default/tomcat5.5:
     
    5176JkMount /*/servlet/ ajp13_worker
    5277}}}
     78  * To configure mod-jk in Debian double check these lines in /etc/libapache2-mod-jk/workers.properties:
     79{{{
     80workers.tomcat_home=/var/lib/tomcat5.5
     81workers.java_home=/usr/lib/jvm/java-1.5.0-sun
     82}}}
    5383  * Then run:
    5484   * a2enmod jk
     
    5888
    5989 * In Debian MySQL only listens on 127.0.0.1 out of the box.
    60   * Comment this line out in /etc/mysql/my.cnf:
     90 * ONLY if you need to access mysql from outside, then comment this line out in /etc/mysql/my.cnf:
    6191  * #bind-address           = 127.0.0.1
    6292