本来想给我本地的 Ngrok 内网穿透服务添加开机启动,结果用了各种方法,包括使用 update-rc.d 以及 rc.local 等方法,就是不生效。最后在 ubuntu 的官方论坛看到原来 ubuntu 16.10 开始不再使用 initd 管理系统,改用 systemd …
所以在 Ubuntu 19 系统不能像其它 Ubuntu 16 一样采用编辑 rc.local 文件来设置开机启动脚本,不过可以同过如下设置来使 rc.local 文件可用,这里记录一下
systemd 默认读取 /etc/systemd/system 下的配置文件,该目录下的文件会链接 /lib/systemd/system/ 下的文件,先看看有没有 /etc/systemd/system/rc-local.service 文件,没有就创建一个,然后输入如下代码,保存
# SPDX-License-Identifier: LGPL-2.1+
#
# 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
Documentation=man:systemd-rc-local-generator(8)
ConditionFileIsExecutable=/etc/rc.local
After=network.target
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
RemainAfterExit=yes
GuessMainPID=no
[Install]
WantedBy=multi-user.target
Alias=rc-local.service
简单介绍一下配置文件的意思
[Unit] 段: 启动顺序与依赖关系
[Service] 段: 启动行为,如何启动,启动类型
[Install] 段: 定义如何安装这个配置文件,即怎样做到开机启动
Ubuntu 19.10 默认是没有 /etc/rc.local 这个文件的,需要自己创建一下
sudo touch /etc/rc.local
写入 rc.local 脚本
#!/bin/sh -e
# rc.local
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
# In order to enable or disable this script just change the execution
# bits.
# By default this script does nothing.
echo "好傻好天真提示您:自启脚本添加成功" > /usr/local/rc.log
exit 0
给 rc.local 可执行权限
sudo chmod +x /etc/rc.local
然后开启服务
sudo systemctl enable rc-local
启动服务并检查状态,直接运行以下两个命令:
sudo systemctl start rc-local.service
sudo systemctl status rc-local.service
然后重启电脑或者服务器,使用 cat 查看是否输出 “/usr/local/rc.log” ,如果有的话就是添加成功了,如果失败的话再看看是不是漏了步骤,实在不行回复一下我看看能不能帮你解决吧…
cat /usr/local/rc.log
# 应该输出 好傻好天真提示您:自启脚本添加成功