centos(linux): systemctl列出所有运行中/自启动的服务

一,列出所有服务:

 systemctl list-units --type=service 

二,列出所有运行中的服务

1, 用--state指定状态

systemctl list-units --type=service --state=running

2,直接grep

systemctl list-units --type=service | grep running

三,列出所有自启动的服务

1,列出所有自启动的单元

除了服务,还包括:socket/target/timer

systemctl list-unit-files --state=enabled

2,列出所有自启动的服务

systemctl list-unit-files --type=service --state=enabled

 

posted @ 2024-10-24 09:43  刘宏缔的架构森林  阅读(360)  评论(0编辑  收藏  举报