agree with the other posts that installing the binary version of Tomcat might be a good idea. That way you can be sure of where everything is.
the /etc/init.d/tomcat4.start file may be misconfigured. You might be better off running the catalina script directly, as you could see any errors right away. Normally this would be $CATALINA_HOME/bin/catalina.sh, and it should be run like this to start tomcat: $CATALINA_HOME/bin/catalina.sh start or $CATALINA_HOME/bin/catalina.sh run (using the run parameter may give you more error messages) to stop tomcat: $CATALINA_HOME/bin/catalina.sh You can use the actual path rather than $CATALINA_HOME, in your case this might be: /var/tomcat4/bin/catalina.sh >I added the following line to /etc/profile > >PATH="$PATH:/usr/java/jdk1.3.1_02/bin" > >I can type "java -version" or "javac -help" from anywhere and get >meaningful responses so I guess that means the path setting is OK. > >I don't use startup.sh as that file didn't seem to exist(?). I do >"tomcat4 start" from the /etc/init.d folder. > >Z. -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
