systemctl
是一个用于管理系统服务和守护进程的命令行工具,它是 Systemd 系统和服务管理器的一部分
systemctl list-units --type=service
systemctl status<service_name>
例如,要查看 “httpd” 服务的状态,可以运行:
systemctl status httpd
systemctl start<service_name>
例如,要启动 “httpd” 服务,可以运行:
systemctl start httpd
systemctl stop<service_name>
例如,要停止 “httpd” 服务,可以运行:
systemctl stop httpd
systemctl restart<service_name>
例如,要重启 “httpd” 服务,可以运行:
systemctl restart httpd
systemctl reload<service_name>
例如,要重新加载 “httpd” 服务的配置,可以运行:
systemctl reload httpd
systemctl enable<service_name>
例如,要启用 “httpd” 服务在开机时自动启动,可以运行:
systemctl enable httpd
systemctl disable<service_name>
例如,要禁用 “httpd” 服务在开机时自动启动,可以运行:
systemctl disable httpd
systemctl is-enabled<service_name>
例如,要检查 “httpd” 服务是否启用,可以运行:
systemctl is-enabled httpd
systemctl is-active<service_name>
例如,要检查 “httpd” 服务是否正在运行,可以运行:
systemctl is-active httpd
systemctl is-failed<service_name>
例如,要检查 “httpd” 服务是否失败,可以运行:
systemctl is-failed httpd
systemctl list-dependencies<service_name>
例如,要显示 “httpd” 服务的依赖关系,可以运行:
systemctl list-dependencies httpd
journalctl -u<service_name>
例如,要显示 “httpd” 服务的日志,可以运行:
journalctl -u httpd
这些是 systemctl
命令的基本使用方法。要了解更多关于 systemctl
的信息,请参阅其手册页(通过运行 man systemctl
命令)。