Hi, The init.d start up script which is being distributed by many, is having the following test:
# Source function library. if [ -x /etc/rc.d/init.d/functions ]; then . /etc/rc.d/init.d/functions fi That will not work correctly on RHEL as on RHEL this file is read only (not executable). Was also discussed here: https://roosbertl.blogspot.com/2011/12/tomcat7-on-centos7-right-way.html?showComment=1366685221068#c9019320598583823471 <https://roosbertl.blogspot.com/2011/12/tomcat7-on-centos7-right-way.html?showComment=1366685221068#c9019320598583823471> The file might have been executable in earlier version but with RHEL 6 and 7 this is no longer the case. Thank you, Casper