使用 update-rc.d 更改初始化脚本序列号

使用 update-rc.d 更改初始化脚本序列号

我刚刚使用命令在 LUbuntu 15.04 发行版中安装了 apache2 apt-get install apache2。默认情况下,该服务配置为以序列号 2 启动:

ls -l /etc/rc?.d/*apache2
lrwxrwxrwx 1 root root 17 sep  1 20:14 /etc/rc0.d/K01apache2 -> ../init.d/apache2
lrwxrwxrwx 1 root root 17 sep  1 20:14 /etc/rc1.d/K01apache2 -> ../init.d/apache2
lrwxrwxrwx 1 root root 17 sep  7 17:20 /etc/rc2.d/S02apache2 -> ../init.d/apache2
lrwxrwxrwx 1 root root 17 sep  7 17:20 /etc/rc3.d/S02apache2 -> ../init.d/apache2
lrwxrwxrwx 1 root root 17 sep  7 17:20 /etc/rc4.d/S02apache2 -> ../init.d/apache2
lrwxrwxrwx 1 root root 17 sep  7 17:20 /etc/rc5.d/S02apache2 -> ../init.d/apache2
lrwxrwxrwx 1 root root 17 sep  1 20:21 /etc/rc6.d/K01apache2 -> ../init.d/apache2

我正在尝试为 apache2 服务启动分配另一个序列号,使用以下命令:

sudo update-rc.d apache2 defaults 91

该命令没有返回任何错误,但它没有更改配置。有什么线索可以告诉我我做错了什么吗?

提前致谢。

相关内容