新的Linux发行版已经没有rc.local文件了。因为已经将其服务化了。
1.设置rc-local.service
sudo vim /etc/systemd/system/rc-local.service
内容如下:
[Unit]
Description=/etc/rc.local Compatibility
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
2.激活rc-local.service
sudo systemctl enable rc-local.service
3.创建/etc/rc.local文件
sudo vim /etc/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.
# 开机启动的命令
/data/soft/jenkins/jenkins.sh start # 开机自动运行jenkins
exit 0
给予脚本执行权限
sudo chmod +x /etc/rc.local
原文链接:https://blog.csdn.net/qq_39809339/article/details/126615591