Hello,
why is there no startscipt integrated in TC ?
The server should normals run when the server is on.
If you don't use the mod_jk.conf-auto, it doesn't matter if apache start
bevor or after tomcat.
Here is a simple Linux start/stop script to insert in /etc/rc.d/init.d
#!/bin/sh
# description: Start Tomcat 3.2.2b4 for Apache
case "$1" in
'start')
/usr/local/jakarta-tomcat-3.2.2b4/bin/startup.sh
touch /var/lock/subsys/tomcat
;;
'stop')
/usr/local/jakarta-tomcat-3.2.2b4/bin/shutdown.sh
rm -f /var/lock/subsys/tomcat
;;
*)
echo "Usage: $0 { start | stop }"
;;
esac
exit 0
--
Greetings,
Michael