查看最大句柄数 ulimit -n
设置最大句柄数 ulimit -n 5000
查询进程号 ps aux|grep tomcat
根据进程号查询对应的句柄数 lsof | wc -l/usr/sbin/lsof -n|awk ‘{print $2}‘|sort|uniq -c |sort -nr|grep 4935
查找端口连接数 netstat -nat|grep -i "22223"|wc -l
根据端口杀掉进程 kill -9 $(netstat -tlnp | grep 22223| awk ‘{print $7}‘ | awk -F ‘/‘ ‘{print $1}‘)
原文地址:http://blog.csdn.net/sprita1/article/details/43709557