码迷,mamicode.com
首页 > 系统相关 > 详细

linux下tomcat之too many open files

时间:2018-06-11 02:04:52      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:conf   方法   htm   最大   个数   .com   linu   nofile   roc   

一、问题表象:

  程序日志报错:java.io.IOException: Too many open files at 

 

二、解决方案:

  1、查看系统允许打开的最大文件数:
    cat /proc/sys/fs/file-max
  2、查看每个用户允许打开的最大文件数:
    ulimit -a
  3、发现系统默认的是open files (-n) 1024,问题就出现在这里。
    在系统文件/etc/security/limits.conf中修改这个数量限制, 在文件中加入内容:
      * soft nofile 65536
      * hard nofile 65536
    另外方法:
      1、使用ps -ef |grep java (java代表你程序,查看你程序进程) 查看你的进程ID,记录ID号,假设进程ID为12
      2、使用lsof -p 12 | wc -l 查看当前进程id为12的 文件操作状况
        执行该命令出现文件使用情况为 1052
      3、使用命令ulimit -a 查看每个用户允许打开的最大文件数
        发现系统默认的是open files (-n) 1024,问题就出现在这里。
      4、然后执行ulimit -n 4096
        将open files (-n) 1024 设置成open files (-n) 4096

 

摘抄自:https://www.aliyun.com/jiaocheng/120721.html

linux下tomcat之too many open files

标签:conf   方法   htm   最大   个数   .com   linu   nofile   roc   

原文地址:https://www.cnblogs.com/chendeming/p/9024425.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!