在我的Debian7中,我有以下脚本来启动、停止、重新启动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。
有人知道如何解决这个问题吗?
发布于 2013-07-04 19:43:44
问题不在你的apache2初始化脚本中,而是在“jexec”中,它说“脚本jexec已被破坏”。
该命令缺少所需的-Stop和Default-Stop
在我的SLES boxen上也有同样的问题。不过不用担心,即使它显示了这些错误,一切都运行得很好!
HTH
https://stackoverflow.com/questions/16556067
复制相似问题