ubuntu 20.04 使用systemd创建自定义服务

1、/lib/systemd/system下创建test.service文件

sudo vim /etc/systemd/system/test.service

[Unit]

Description=test

 

[Service]

Type=forking

#EnvironmentFile=/etc/systemd/test.conf

ExecStart=/opt/systemd-sh/test.sh

ExecReload=/bin/kill -SIGHUP $MAINPID

ExecStop=/bin/kill -SIGINT $MAINPID

 

[Install]

WantedBy=multi-user.target

#将文件格式转换为linux格式,否则会出现莫名起来的sh文件格式问题
dos2unix test.service

2、修改配置文件后需要重加载配置

sudo systemctl daemon-reload

3、创建test.sh

sudo vim /opt/systemd-sh/test.sh

#!/bin/bash
  
echo `date`,"ok" >>/tmp/test.log
#将文件格式转换为linux格式,否则会出现莫名起来的sh文件格式问题
dos2unix test.sh

4、赋予可执行权限

sudo chmod +x /opt/systemd-sh/test.sh

5、设置开机启动

systemctl enable test.service

会显示:

Created symlink /etc/systemd/system/multi-user.target.wants/test.service → /lib/systemd/system/test.service.

6、重启系统

reboot

7、重启后,看下/tmp/test.log的内容

vim /opt/test.log

8、systemd集中式日志管理
查看该unit的日志

sudo journalctl -u test.service

(完)



作者:小桥流水啦啦啦
链接:https://www.jianshu.com/p/ed709fcc54c6
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值