51Testing软件测试论坛

标题: open too many files 异常问题 [打印本页]

作者: xkmj    时间: 2010-4-2 11:26
标题: open too many files 异常问题
操作系统有限制,
2.WebLogic Java进程对打开文件数也有限制,仅仅系统还不够,还要修改Weblogic的初始化参数脚本./weblogic92/common/bin/commEnv.sh


用 ulimit -n 查看值为4000,那么在./weblogic92/common/bin/commEnv.sh 还需要修改下列参数
limit the number of open file descriptors
resetFd() {
  if [ ! -n "`uname -s |grep -i cygwin || uname -s |grep -i windows_nt || \
              uname -s |grep -i HP-UX`" ]
  then
    maxfiles=`ulimit -H -n`
    if [ "$?" = "0" -a  `expr ${maxfiles} : '[0-9][0-9]*$'` -eq 0 ]; then
        ulimit -n 200000
    fi
  fi
}
作者: msnshow    时间: 2010-4-6 22:32
这个值不用设置那么大吧,65535最大




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2