systemd管理服务

本文介绍了systemd命令作为系统服务管理器的功能,包括systemctl常用指令、设置自定义开机启动的方法,以及unit、Service和Install的详细配置。systemd将service和chkconfig命令结合,服务类型包括simple、forking、oneshot等,支持启动顺序设定和依赖管理。通过systemctl enable可设置开机启动,通过查看target和unit关系理解服务的组织结构。
摘要由CSDN通过智能技术生成

systemctl介绍

systemctl命令是系统服务管理器指令,它实际上将 service 和 chkconfig 这两个命令组合到一起。

常用指令列表

任务 旧指令 新指令
使某服务自动启动 chkconfig –level 3 httpd on systemctl enable httpd.service
使某服务不自动启动 chkconfig –level 3 httpd off systemctl disable httpd.service
检查服务状态 service httpd status systemctl status httpd.service(服务详细信息) systemctl is-active httpd.service(仅显示是否Active)
显示所有已启动的服务 chkconfig –list systemctl list-units –type-service
启动某服务 service httpd start systemctl start httpd.service
停止某服务 service httpd stop systemctl stop httpd.service
重启某服务 service httpd restart systemctl restart httpd.service

设置自定义开机启动的方法

1、服务权限

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

2、创建服务文件

[Unit] 
Description=nginx - high performance web server 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值