在Debian系统中,你可以使用systemctl
命令来查询服务的状态。以下是一些常用的systemctl
命令示例:
systemctl list-units --type=service --all
systemctl status 服务名称
将服务名称
替换为你要查询的服务名称。例如,要查看sshd
服务的状态,你可以输入:
systemctl status sshd
systemctl start 服务名称
将服务名称
替换为你要启动的服务名称。例如,要启动sshd
服务,你可以输入:
systemctl start sshd
systemctl stop 服务名称
将服务名称
替换为你要停止的服务名称。例如,要停止sshd
服务,你可以输入:
systemctl stop sshd
systemctl restart 服务名称
将服务名称
替换为你要重启的服务名称。例如,要重启sshd
服务,你可以输入:
systemctl restart sshd
systemctl enable 服务名称
将服务名称
替换为你要设置为开机自启的服务名称。例如,要将sshd
服务设置为开机自启,你可以输入:
systemctl enable sshd
systemctl disable 服务名称
将服务名称
替换为你要禁用的服务名称。例如,要禁用sshd
服务的开机自启,你可以输入:
systemctl disable sshd