首页 文章

Apache init.d脚本

提问于
浏览
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 .

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

1 回答

  • 0

    问题不在你的apache2初始化脚本中,它在'jexec'中它说'脚本jexec被破坏' .

    那个缺少必需 - 停止和默认 - 停止

    在我的SLES盒子上有同样的问题 . 不过不要担心,即使它显示了这些错误,一切仍然运行良好!

    HTH

相关问题