启动时无法启动 apache2 和 mysql 服务器

启动时无法启动 apache2 和 mysql 服务器

我正在使用 Ubuntu 16.04 LTS,每次启动时 mysql-server 和 apache2 都无法启动,当我尝试手动启动时,它会中断并显示以下错误:

重新安装后,它可以正常工作,但下次启动时再次出现同样的问题。在重新安装 apache2 期间:

insserv: warning: script 'K01chilli' missing LSB tags and overrides
insserv: warning: script 'chilli' missing LSB tags and overrides
insserv: warning: script 'K01chilli' missing LSB tags and overrides
insserv: warning: script 'chilli' missing LSB tags and overrides

显示并用于 mysql-server:

insserv: warning: script 'K01chilli' missing LSB tags and overrides
insserv: warning: script 'chilli' missing LSB tags and overrides

答案1

这些只是警告,因为您应该添加更多信息,如果您想避免它们,您应该在 init.d 脚本中添加以下内容:

### BEGIN INIT INFO
# Provides:          scriptname
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start daemon at boot time
# Description:       Enable service provided by daemon.
### END INIT INFO

您可以在那里获取更多信息:https://wiki.debian.org/LSBInitScripts

相关内容