服务器环境: liunx tomcat java mongodb
错误信息:
org.apache.tomcat.util.net.NioEndpoint$Acceptor.run Socket accept failed
java.io.IOException: Too many open files
at sun.nio.ch.ServerSocketChannelImpl.accept0(Native Method)
at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:422)
at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:250)
at org.apache.tomcat.util.net.NioEndpoint$Acceptor.run(NioEndpoint.java:686)
at java.lang.Thread.run(Thread.java:745)
linux命令排查 :
命令 netstat -n | awk '/^tcp/ {++y[$NF]} END {for(w in y) print w, y[w]}'
结果TCP状态 ESTABLISHED 数量很高,达到1000多,导致服务器端口大量被占用
命令 netstat -an
结果显示大量mongodb端口 ESTABLISHED 的连接很多,无法创建新的连接
经过代码排查,发现mongodb操作完后需要执行close方法关闭tcp连接
以上方法修改完后,压力测试用上面netstat 方法查看发现mongodb的tcp状态在当时TIME_WAIT 很多,但过几分钟就没了,
目前访问量可以支撑,以后想办法优化mongodb调用,或换用其他mongdb驱动,目前用的是MongoClient 。