websphere 进程

websphere 监听的是8880端口, 一个server占用300M的内存。

1。查看进程号

>netstat -aon | findstr "8880"

TCP 0.0.0.0:8880 0.0.0.0:0 LISTENING 7872
TCP [::]:8880 [::]:0 LISTENING 7872

2。查看进程信息

>tasklist | findstr "7872"

java.exe                      7872 Console                    2    329,408 K

3。杀掉进程

>taskkill /pid 7872 /F

SUCCESS: The process with PID 7872 has been terminated.

原文地址:https://www.cnblogs.com/kakaisgood/p/6420740.html