Service ApacheInit.d脚本

Service ApacheInit.d脚本,service,debian,init.d,Service,Debian,Init.d,在我的debian 7中,我有以下脚本来启动、停止、重新启动apache2 #!/bin/sh ### BEGIN INIT INFO # Provides: apache2 # Required-Start: $all # Required-Stop: $all # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: apache2 # Description: S

在我的debian 7中,我有以下脚本来启动、停止、重新启动apache2

#!/bin/sh
### BEGIN INIT INFO
# Provides:          apache2
# Required-Start:    $all
# Required-Stop:     $all
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: apache2
# Description: Start apache2
### END INIT INFO

case "$1" in
start)
        echo "Starting Apache ..."
        # Change the location to your specific location
        /usr/local/apache2/bin/apachectl start
;;
stop)
        echo "Stopping Apache ..."
        # Change the location to your specific location
        /usr/local/apache2/bin/apachectl stop
;;
graceful)
        echo "Restarting Apache gracefully..."
        # Change the location to your specific location
        /usr/local/apache2/bin/apachectl graceful
;;
restart)
        echo "Restarting Apache ..."
        # Change the location to your specific location
        /usr/local/apache2/bin/apachectl restart
;;
*)
        echo "Usage: '$0' {start|stop|restart|graceful}"
        exit 64
;;
esac
exit 0
当我添加脚本以更新rc.d时,我看到以下警告:

root@pomelo:/etc/init.d# update-rc.d apache2 defaults
update-rc.d: using dependency based boot sequencing
insserv: Script jexec is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: missing `Default-Stop:'   entry: please add even if empty.
insserv: Default-Stop  undefined, assuming empty stop  runlevel(s) for script `jexec'
但是我已经在脚本中添加了必需的停止和默认停止


有人知道如何解决这个问题吗?

问题不在apache2初始化脚本中,而是在“jexec”中,它说“脚本jexec坏了”

该站点缺少所需的停止和默认停止

我的SLES拳击服也有同样的问题。尽管如此,不要担心,即使它显示了这些错误,一切仍然正常