2.nano /etc/systemd/system/rc-local.service 新增文件

复制代码,保存进配置文件
[Unit]
Description=/etc/rc.local
ConditionPathExists=/etc/rc.local
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardOutput=tty
RemainAfterExit=yes
SysVStartPriority=99
[Install]
WantedBy=multi-user.target

3.nano /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.

exit 0

4.chmod +x /etc/rc.local 添加权限

5.systemctl enable rc-local 设置系统开机启动

6.systemctl start rc-local.service 启动脚本

7.systemctl status rc-local.service 检查服务状态