新的Linux发行版已经没有rc.local文件了。因为已经将其服务化了。
1.设置rc-local.service
sudo vim /etc/systemd/system/rc-local.service
内容如下:
[Unit]Description=/etc/rc.local CompatibilityConditionPathExists=/etc/rc.local[Service]Type=forkingExecStart=/etc/rc.local startTimeoutSec=0StandardOutput=ttyRemainAfterExit=yesSysVStartPriority=99[Install]WantedBy=multi-user.target
1234567891011121314
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 # 开机自动运行jenkinsexit 0
1234567891011121314151617
给予脚本执行权限
sudo chmod +x /etc/rc.local
转至:https://blog.csdn.net/qq_39809339/article/details/126615591