在Linux中,可以使用以下命令停止一个正在运行的服务:
-
使用
systemctl
命令:- 查找正在运行的服务:
systemctl list-units --type=service --state=running
- 停止服务:
sudo systemctl stop
- 查找正在运行的服务:
-
使用
service
命令:- 查找正在运行的服务:
service --status-all
- 停止服务:
sudo service
stop
- 查找正在运行的服务:
-
使用
kill
命令:- 查找正在运行的服务的进程ID(PID):
ps -ef | grep
- 停止服务:
sudo kill
- 查找正在运行的服务的进程ID(PID):
请替换
为你要停止的服务的名称。