Files
chill_notes/Lunix/Ubuntu/ubuntu查看进程.md
2026-04-15 23:34:33 +08:00

368 B
Executable File
Raw Blame History

netstat tln //查看服务监听端口
netstat      //查看进程号
ps aux     //查看进程号
ps aux | more //全部查看
ps ef | grep mysql //查看mysql的进程
kill -9 3306 //强制杀掉进程号3306 > 来自 <http://blog.sina.com.cn/s/blog_64492fe10100qqk3.html>