使用update-rc.d以及rc.local等方法就是不生效。后来在ubuntu的官方论坛ubuntu-16.10开始不再使用initd管理系统改用systemd

ubuntu-18.04 LTS版本用的是systemctl命令来替换了service和chkconfig的功能。

systemd is now used for user sessions. System sessions had already been provided by systemd in previous Ubuntu releases.

比如以前启动 mysql 服务用:

sudo service mysql start

现在用:

sudo systemctl start mysqld.service

其实这个改动到不是算大,主要是开机启动比以前复杂多了。systemd 默认读取 /etc/systemd/system 下的配置文件,该目录下的文件会链接/lib/systemd/system/下的文件。

执行 ls /lib/systemd/system 你可以看到有很多启动脚本,其中就有我们需要的 rc.local.service

打开脚本内容:

cat /lib/systemd/system/rc.local.service

可以看出/lib/systemd/system/rc.local.service的启动顺序是没有Install

#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

# This unit gets pulled automatically into multi-user.target by
# systemd-rc-local-generator if /etc/rc.local is executable.
[Unit]
Description=/etc/rc.local Compatibility
ConditionFileIsExecutable=/etc/rc.local
After=network.target

[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
RemainAfterExit=yes

一般正常的启动文件主要分成三部分

  1. Unit段: 启动顺序与依赖关系
  2. Service段: 启动行为,如何启动,启动类型
  3. Install段: 定义如何安装这个配置文件,即怎样做到开机启动

下面为/lib/systemd/system/rc.local.service添加Install

echo "
[Install]  
WantedBy=multi-user.target  
Alias=rc-local.service" >> /lib/systemd/system/rc.local.service

这里需要注意一下ubuntu-18.04默认是没有/etc/rc.local这个文件的,需要自己创建

sudo touch /etc/rc.local

添加rc.local自定义启动

sudo echo "#!/bin/bash" > /etc/rc.local

添加测试,编辑文件/etc/rc.local中添加

echo "test" > /root/test.txt

给予可执行权限

chmod 755 /etc/rc.local

systemd默认读取/etc/systemd/system下的配置文件, 所以还需要在/etc/systemd/system目录下创建软链接

ln -s /lib/systemd/system/rc.local.service /etc/systemd/system/

重启系统,然后看看/root/test.txt文件的内容为test 是否存在就知道开机脚本是否生效了。