1

我有以下脚本在我的 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

当我将脚本添加到 update-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'

但是我已经在脚本中添加了Required-Stop 和 Default-Stop。

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

4

1 回答 1

0

问题不在您的 apache2 初始化脚本中,而是在“jexec”中,它说“脚本 jexec 已损坏”。

那个缺少Required-Stop和Default-Stop

我的 SLES boxen 也有同样的问题。不过不用担心,即使它向您显示这些错误,一切仍然运行良好!

高温高压

于 2013-07-04T11:43:44.217 回答