tomcat startup on boot
Hi,
I am using Debian and have a startup script setup, which if I add echo commands, I can see that it runs. The problem is that tomcat does not startup when I add it's startup script. Does anyone have this working, or know what I am doing wrong?
Cheers
malbery
------------------
$ ls -al /etc/rc*.d/*local
lrwxrwxrwx 1 root root 20 2004-10-19 16:58 /etc/rc2.d/S99local -> /etc/init.d/rc.local
lrwxrwxrwx 1 root root 20 2004-10-19 16:58 /etc/rc3.d/S99local -> /etc/init.d/rc.local
lrwxrwxrwx 1 root root 20 2004-10-19 16:58 /etc/rc4.d/S99local -> /etc/init.d/rc.local
lrwxrwxrwx 1 root root 20 2004-10-19 16:58 /etc/rc5.d/S99local -> /etc/init.d/rc.local
lrwxrwxrwx 1 root root 20 2004-10-19 16:58 /etc/rc6.d/S99local -> /etc/init.d/rc.local
$ ls -al /etc/init.d/rc.local
-rwxr-xr-x 1 root root 135 2005-01-23 21:17 /etc/init.d/rc.local
$ cat /etc/init.d/rc.local
#!/bin/sh
/usr/share/jakarta-tomcat-5.0.29/bin/startup.sh
|