Hi, I am not fully aware of what the rpm scripts do, but the first thing to check would be to see if the startup script is being called by init.
As root, run chkconfig --list tomcat (where tomcat is the exact name of the script). It will return something like: tomcat 0:off 1:off 2:on 3:on 4:on 5:on 6:off where each entry is the init runlevel and whether tomcat is set to be running at that runlevel. If each of these is set to off, then it won't start. To set it to start, as root run chkconfig --level 2345 tomcat on This should update the links for init so it will start on next reboot. If you have already done all this, then please ignore this. Regards Sam -----Original Message----- From: Kwok Peng Tuck [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 10 September 2002 11:29 AM To: [EMAIL PROTECTED] Subject: Rpm start up scripts. Is anyone having issues with the tomcat start up scripts that get installed with the rpm binaries? I'm installing on Redhat 7.2 & using ' tomcat4-4.0.4-full.2jpp.noarch.rpm ' . The issues is that the tomcat doesn't startup on reboot, even though I've made the neseccary changes, like the JAVA_HOME and things like that.The script does work from the command line. Any ideas would be helpful. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
