码迷,mamicode.com
首页 > 系统相关 > 详细

systemd创建自定义服务(Ubuntu)

时间:2018-11-10 10:54:17      阅读:727      评论:0      收藏:0      [点我收藏+]

标签:art   ice   sig   pre   nts   multi   top   tar   bash   

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

vim /lib/systemd/system/test.service

[Unit]
Description=Test

[Service]
#EnvironmentFile=/etc/systemd/test.conf
ExecStart=/opt/test.sh
ExecReload=/bin/kill -SIGHUP $MAINPID
ExecStop=/bin/kill -SIGINT $MAINPID

[Install]
WantedBy=multi-user.target

 

创建test.sh

vim /opt/test.sh

#!/bin/bash
  
while true
do
        echo `date`,"ok" >>/tmp/test.log
done

 

设置开机启动

systemctl enable test.service

显示

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

 

重启

reboot

 

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

vim /opt/test.log

 

systemd创建自定义服务(Ubuntu)

标签:art   ice   sig   pre   nts   multi   top   tar   bash   

原文地址:https://www.cnblogs.com/wintersoft/p/9937839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!