温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

CentOS7中systemd怎么添加自定义系统服务

发布时间:2022-04-12 15:26:24 来源:亿速云 阅读:367 作者:iii 栏目:编程语言

这篇文章主要介绍“CentOS7中systemd怎么添加自定义系统服务”,在日常操作中,相信很多人在CentOS7中systemd怎么添加自定义系统服务问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”CentOS7中systemd怎么添加自定义系统服务”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

systemd:

centos 7的服务systemctl脚本存放在:/usr/lib/systemd/,有系统(system)和用户(user)之分,即:/usr/lib/systemd/system ,/usr/lib/systemd/user

每一个服务以.service结尾,一般会分为3部分:[unit]、[service]和[install],就以nginx为例吧,具体内容如下:

创建service:

在/usr/lib/systemd/system下创建nginx.service文件内容如下(看应用需求也可以在 /usr/lib/systemd/usr下创建):

[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 : 服务文档

after= : 依赖,仅当依赖的服务启动之后再启动自定义的服务单元

[service]
type : 启动类型simple、forking、oneshot、notify、dbus

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认为服务就绪。

pidfile : pid文件路径
execstartpre :启动前要做什么,上文中是测试配置文件 -t 
execstart:启动
execreload:重载
execstop:停止
privatetmp:true表示给服务分配独立的临时空间

[install]

wantedby:服务安装的用户模式,从字面上看,就是想要使用这个服务的有是谁?上文中使用的是:multi-user.target ,就是指想要使用这个服务的目录是多用户。「以上全是个人理解,瞎猜的,如有不当,请大家多多指教」每一个.target实际上是链接到我们单位文件的集合,当我们执行:

$ sudo systemctl enable nginx.service

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

操作service:

#启动服务
$ 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

到此,关于“CentOS7中systemd怎么添加自定义系统服务”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI