欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

systemd添加自定义系统服务设置自定义开机启动的方法

程序员文章站 2022-06-19 18:58:16
1.服务权限 systemd有系统和用户区分;系统(/user/lib/systemd/system/)、用户(/etc/lib/systemd/user/).一般系统管...

1.服务权限

systemd有系统和用户区分;系统(/user/lib/systemd/system/)、用户(/etc/lib/systemd/user/).一般系统管理员手工创建的单元文件建议存放在/etc/systemd/system/目录下面。

2.创建服务文件

[unit]
description=nginx - high performance web server
documentation=http://nginx.org/en/docs/
after=network.target remote-fs.target nss-lookup.target
 
[service]
type=forking
pidfile=/run/nginx.pid
execstartpre=/usr/sbin/nginx -t -c /etc/nginx/nginx.conf
execstart=/usr/sbin/nginx -c /etc/nginx/nginx.conf
execreload=/bin/kill -s hup $mainpid
execstop=/bin/kill -s quit $mainpid
privatetmp=true
 
[install]
wantedby=multi-user.target

[unit]

description : 服务的简单描述

documentation : 服务文档

before、after:定义启动顺序。before=xxx.service,代表本服务在xxx.service启动之前启动。after=xxx.service,代表本服务在xxx.service之后启动。

requires:这个单元启动了,它需要的单元也会被启动;它需要的单元被停止了,这个单元也停止了。

wants:推荐使用。这个单元启动了,它需要的单元也会被启动;它需要的单元被停止了,对本单元没有影响。

[service]

type=simple(默认值):systemd认为该服务将立即启动。服务进程不会fork。如果该服务要启动其他服务,不要使用此类型启动,除非该服务是socket激活型。

type=forking:systemd认为当该服务进程fork,且父进程退出后服务启动成功。对于常规的守护进程(daemon),除非你确定此启动方式无法满足需求,使用此类型启动即可。使用此启动类型应同时指定 pidfile=,以便systemd能够跟踪服务的主进程。

type=oneshot:这一选项适用于只执行一项任务、随后立即退出的服务。可能需要同时设置 remainafterexit=yes 使得 systemd 在服务进程退出之后仍然认为服务处于激活状态。

type=notify:与 type=simple 相同,但约定服务会在就绪后向 systemd 发送一个信号。这一通知的实现由 libsystemd-daemon.so 提供。

type=dbus:若以此方式启动,当指定的 busname 出现在dbus系统总线上时,systemd认为服务就绪。

type=idle: systemd会等待所有任务(jobs)处理完成后,才开始执行idle类型的单元。除此之外,其他行为和type=simple 类似。

pidfile:pid文件路径

execstart:指定启动单元的命令或者脚本,execstartpre和execstartpost节指定在execstart之前或者之后用户自定义执行的脚本。type=oneshot允许指定多个希望顺序执行的用户自定义命令。

execreload:指定单元停止时执行的命令或者脚本。

execstop:指定单元停止时执行的命令或者脚本。

privatetmp:true表示给服务分配独立的临时空间

restart:这个选项如果被允许,服务重启的时候进程会退出,会通过systemctl命令执行清除并重启的操作。

remainafterexit:如果设置这个选择为真,服务会被认为是在激活状态,即使所以的进程已经退出,默认的值为假,这个选项只有在type=oneshot时需要被配置。

[install]

alias:为单元提供一个空间分离的附加名字。

requiredby:单元被允许运行需要的一系列依赖单元,requiredby列表从require获得依赖信息。

wantby:单元被允许运行需要的弱依赖性单元,wantby从want列表获得依赖信息。

also:指出和单元一起安装或者被协助的单元。

defaultinstance:实例单元的限制,这个选项指定如果单元被允许运行默认的实例。

3.重载服务

systemctl enable nginx.service

就会在/etc/systemd/system/multi-user.target.wants/目录下新建一个/usr/lib/systemd/system/nginx.service 文件的链接。

4.操作服务

#启动服务
$ sudo systemctl start nginx.service
 
#查看日志
$ sudo journalctl -f -u nginx.service
— logs begin at 四 2015-06-25 17:32:20 cst. —
6月 25 10:28:24 leco.lan systemd[1]: starting nginx – high performance web server…
6月 25 10:28:24 leco.lan nginx[7976]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
6月 25 10:28:24 leco.lan nginx[7976]: nginx: configuration file /etc/nginx/nginx.conf test is successful
6月 25 10:28:24 leco.lan systemd[1]: started nginx – high performance web server.
 
#重启
$ sudo systemctl restart nginx.service
 
#重载
$ sudo systemctl reload nginx.service
 
#停止
$ sudo systemctl stop nginx.service

以上就是小编为大家带来的systemd添加自定义系统服务设置自定义开机启动的方法全部内容了,希望大家多多支持~