chkconfig 等效项 - RHEL7

chkconfig 等效项 - RHEL7

在过去的好日子里,您可以用来chkconfig查看是否为运行级别启用了服务。例如

chkconfig --list tgtd

但是,现在您应该使用systemctl.但我无法systemctl给出类似的简洁输出chkconfig

关于如何做到这一点有什么建议吗?

答案1

您可以使用以下命令检查它是否已启用或禁用:

systemctl list-unit-files --type=service

其中“ --type=service”可帮助您将范围缩小到仅服务。

您可以使用命令启用/禁用服务:

systemctl enable httpd
systemctl disable httpd

相关内容