Linux ubuntu 自启动程序配置(rc.local)

一、编写测试脚本

sudo vim /opt/sh/autoRun.sh

#!/bin/bash

date >> /opt/sh/autoRun.log

exit 0

二、设置权限

sudo chmod 755 /opt/sh/autoRun.sh

三、配置自启动   

自定义启动文件名称(rc-local.service)

注意:如果调用其他命令,如java -jar,由于部分环境变量未生效,所以需要写全路径
           如: /opt/java/java8/bin/java -jar xxxxx

sudo systemctl enable rc-local.service

#创建 rc.local

sudo touch /etc/rc.local

#设置权限

sudo chmod 755 /etc/rc.local

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

四、设置rc-local.service开机自启 

sudo vim /etc/systemd/system/rc-local.service 

[Unit]
After=network.target

[Service]
ExecStart=/opt/sh/autoRun.sh

[Install]
WantedBy=multi-user.target
Alias=rc-local.service

sudo systemctl enable rc-local.service

sudo systemctl status rc-local.service

注意:后缀名一定要是service ,否则会报错

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值