目标:

重新安装了一台本地的Ubuntu服务器,需要通过lanproxy穿透到外网,服务器重启的时候,这个lanproxy服务需要自动启动,方便进行远程管理

系统环境

ubuntu 20.04

过程

配置/lib/systemd/system/rc-local.service文件

vim /lib/systemd/system/rc-local.service

#  SPDX-License-Identifier: LGPL-2.1+
# 
#  This file is part of systemd.
#  SPDX-License-Identifier: LGPL-2.1+
#
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

# This unit gets pulled automatically into multi-user.target by
# systemd-rc-local-generator if /etc/rc.local is executable.
[Unit]
Description=/etc/rc.local Compatibility
Documentation=man:systemd-rc-local-generator(8)
ConditionFileIsExecutable=/etc/rc.local
After=network.target

[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
RemainAfterExit=yes
GuessMainPID=no

# 把下面的内容,添加到这个文件中,用于设置开机启动
[Install]
WantedBy=multi-user.target
Alias=rc-local.service

保存后,接下来设置第二步

设置/etc/rc.local文件

当前系统没有这个文件,所以你需要新建这个文件

cd /etc/
touch rc.local

编辑这个rc.local文件 编辑内容如下:

#!/bin/sh
sh /path/to/your/proxy-java-client-0.1/bin/startup.sh
exit 0

保存后,给这个rc.local 文件加上可执行权限 sudo chmod +x rc.local

通过以上的设置,你的lanproxy就可以进行开机启动了,你可以重启服务器试试效果 sudo reboot