systemd创建自定义服务(Ubuntu)
Posted geek power
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了systemd创建自定义服务(Ubuntu)相关的知识,希望对你有一定的参考价值。
/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)的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu20.04设置开机自启脚本开机自启命令(ubuntu自启,ubuntu开机自启)rc(run command)(systemd)(/etc/rc.local)(开机启动原理)
Ubuntu20.04设置开机自启脚本开机自启命令(ubuntu自启,ubuntu开机自启)rc(run command)(systemd)(/etc/rc.local)(开机启动原理)开机自启动