首页 > 系统服务 > 详细

ubuntu 20.04通过systemd方式增加开机启动

时间:2021-09-03 22:40:21      阅读:43      评论:0      收藏:0      [点我收藏+]

ubuntu 20.04通过systemd方式增加开机启动

 

说在前面:

 在ubuntu 20.04上是没有像centos 那样的/etc/rc.local文件的。如果要加开机启动,可以通过systemd的方式。

方式如下

1. 在 /etc/systemd/system 文件下新建一个文件xx.service

2. 编辑内容

 

技术分享图片
[Unit]
Description=xx app init service
Documentation=see /opt/init.sh
After=network.target auditd.service

[Service]
ExecStart=/bin/bash /opt/init.sh
Restart=on-failure
Type=oneshot
RemainAfterExit=yes

[Install]
WantedBy=multi-user.target
Alias=tsingyun.service
技术分享图片

这里需要注意2点

   1. Type=oneshot ,这种方式可以让你用nohup 起动某些服务,比如spring boot 之类

   2. RemainAfterExit=yes 表示虽然nohup后台运行了,也认为这个服务是起来的。可以通过systemctl status xx.service 查看状态

3. 要启动的程序可以写在/opt/init.sh中

例如

#!/bin/bash
# 开机启动脚本,一定要后台运行。java程序要加nohup
export JAVA_HOME=/opt/jdk1.8.0_281
export PATH=$PATH:$JAVA_HOME/bin
/opt/apache-activemq-5.15.15/bin/activemq start

 

4. 

systemctl enable xx.service

systemctl restart xx.service 

 

参考文档

http://manpages.ubuntu.com/manpages/focal/man5/systemd.service.5.html

ubuntu 20.04通过systemd方式增加开机启动

原文:https://www.cnblogs.com/miaojx/p/15223688.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!