系统相关
首页 > 系统相关> > Ubuntu 21.04 配置自启动脚本

Ubuntu 21.04 配置自启动脚本

作者:互联网

网上有许多配置自启动脚本的内容是修改/etc/rc.local,但是过时的,最新版本的系统都不行,下面的方法通过实验,可适用新系统。

首先建立脚本文件

vi /home/vpn.sh

#!/bin/sh
ps -fe|grep processString |grep -v grep
if [ $? -ne 0 ]
then
nohup /usr/local/bin/**(二进制文件)** -config /usr/local/etc/***(配置文件)*** &
else
echo "vpn is runing....."
fi

然后编辑启动服务文件

vi /lib/systemd/system/vpn.service

[Unit]
Description=vpn
Requires=network-online.target
After=network-online.target

[Service]
Type=forking
ExecStart=/bin/bash /home/vpn.sh

[Install]
WantedBy=multi-user.target

 systemctl daemon-reload
 systemctl enable vpn.service
 systemctl status vpn.service

标签:bin,grep,service,21.04,systemctl,Ubuntu,自启动,vpn,local
来源: https://blog.csdn.net/tangbozhi1/article/details/122707128