查看服务id命令,常用的两种:
a: ps -ef | grep 服务名
b: netstat -antp
找到结果名称,然后
pkill -9 服务名
具体说明如下:
如查看nodejs的服务id
1、 ps -ef | grep 服务名
得到服务id,1525,就可以使用kill -9 1525 来强制结束服务
2、netstat -antp 或 netstat -antp | grep node
2022-12-03 18:58:38
查看服务id命令,常用的两种:
a: ps -ef | grep 服务名
b: netstat -antp
找到结果名称,然后
pkill -9 服务名
具体说明如下:
如查看nodejs的服务id
1、 ps -ef | grep 服务名
得到服务id,1525,就可以使用kill -9 1525 来强制结束服务
2、netstat -antp 或 netstat -antp | grep node