Returned 5 Results for "tomcat" Ordered By Relevance
relevance: [4.31]
2007-09-14
to make mod jk under debian enter the following command to make sure your compiler environment is working
set up your environment with
apt-get install libtool autoconf gcc apache2-prefork-dev
great.. now we are ready to compile
copy the tomcat source native directory over to the server...
relevance: [3.73]
2007-09-10
excluding sub-directories from mod_jk (mod jk) and allowing apache to execute them natively can be done with with SetEnvIf no-jk. simply add the following code to either the httpd.conf or the mod-jk.conf
DocumentRoot /var/www/html/
SetEnvIf Request_URI "/munin/*" no-jk
JkMount /* ajp13...
relevance: [3.6]
2007-09-13
make sure the file msvcr71.dll is present in the system path
intall java jre
install tomcat
copy the deployment directory onto the local drive
edit:
..\Apache Software Foundation\Tomcat 6.0\conf\server.xml
to include the deployment path to the application
this looks l...
relevance: [3.23]
2007-09-13
When tomcat generates something similar to the following log output chances are its missing the Windows C dll MSVCR71.dll - Tomcat needs this to initialise java when the service starts. Put a copy in your c:\windows\system32 directory or wherever you want as long as its in your system path
[200...
relevance: [1.56]
2007-09-14
Following on from the previous article Java should now be located in
/usr/lib/j2re1.6-sun/bin
You will have to set up
JAVA_HOME and JRE_HOME
these can be set in
/etc/environment
add the lines
JAVA_HOME = "/usr/lib/j2re1.6-sun"
export JAVA_HOME
CATALINA_HOME= "/opt/Tomcat5...