随笔分类 - linux
摘要:1、查看端口被那些应用链接 netstat -natp 192.168.0.1:8080 -n, --numeric don't resolve names -a, --all, --listening display all sockets (default: connected) -t, 显示T
阅读全文
摘要:1、查看端口占用情况netstat -tunlp | grep 8000 解析:t:tcp、u:udp、l:listen(监听中)、p:program(应用程序) 2、通过上面进程ID,查看是什么应用ps -ef |grep pid(进程号) 更新中...
阅读全文
摘要:ps -ef |grep tomcat |grep -v grep |awk '{print $2}' |xrags kill -9
阅读全文