zoukankan      html  css  js  c++  java
  • too many open files

    too many open files

    too many open files

    1 too many open file终极解决方案

    
    echo “” >> /etc/security/limits.conf
    echo “* soft nproc 65535″ >> /etc/security/limits.conf
    echo “* hard nproc 65535″ >> /etc/security/limits.conf
    echo “* soft nofile 65535″ >> /etc/security/limits.conf
    echo “* hard nofile 65535″ >> /etc/security/limits.conf
    echo “” >> /root/.bash_profile
    echo “ulimit -n 65535″ >> /root/.bash_profile
    echo “ulimit -u 65535″ >> /root/.bash_profile
    #最后重启机器或者执行 ulimit -u 655345 && ulimit -n 65535
    
    
    

    Date: 2013-03-29 Fri

    Author: liweilijie

    Org version 7.9.2 with Emacs version 23

    Validate XHTML 1.0
  • 相关阅读:
    sublime text 3安装 package control 插件的方法
    mysql 库和表占用空间查询
    错误:编码GBK的不可映射字符
    新系统设置 github 私钥
    git 之忽略文件 gitignore 创建和使用规则
    DesiredCapabilities内容详解(摘)
    appium-python自动化之get_attribute笔记(摘)
    excel批量插入图片-方法(宏和纯手工操作)
    利用Python将多个excel文件合并为一个文件
    notePad++ 运行python
  • 原文地址:https://www.cnblogs.com/liweilijie/p/2988602.html
Copyright © 2011-2022 走看看