Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux系統常見問題解答 >> linux查看並終止進程

linux查看並終止進程

日期:2017/1/20 17:40:59      編輯:Linux系統常見問題解答

1,查看端口被那個進程占用

例如: netstat -anp | grep 1160

ps:查看端口1169被那個進程占用。

2,查找進程

例如 :ps -ef | grep 'tomcat'

ps:查找出進程名裡含有 tomcat的進程

3,終止進程

一般終止進程的方法是如:

kill 8080

ps:終止進程號為8080的進程

如果上面的命令終止不了進程可以使用 killall命令進程終止

如:killall -KILL 8080

ps:強制終止進程號為8080的進程

Copyright © Windows教程網 All Rights Reserved