根据端口kill进程

netstat -tunlp|grep 9200
kill -9 进程号

[root@host148 ~]# netstat -tunlp |grep 9200
tcp6       0      0 :::9200                 :::*                    LISTEN      2472776/java        
[root@host148 ~]# kill -9 2472776

猜你喜欢

转载自blog.csdn.net/m0_37859032/article/details/107608168