美文网首页
Ubuntu 永久修改 ulimit 限制

Ubuntu 永久修改 ulimit 限制

作者: 终南山下007 | 来源:发表于2021-08-31 13:49 被阅读0次

    设置文件最大打开数

    # 系统
    vim /etc/sysctl.conf
    # 添加
    fs.file-max = 65535
    
    sysctl -p
    
    # 用户
    vim /etc/security/limits.conf
    # 添加
    *               hard    nofile          65535
    *               soft    nofile          65535
    root            hard    nofile          65535
    root            soft    nofile          65535
    
    # Systemd
    vim /etc/systemd/system.conf
    # 添加
    DefaultLimitCORE=infinity
    DefaultLimitNOFILE=65535
    DefaultLimitNPROC=65535
    systemctl daemon-reexec
    

    验证设置

    # 查看系统限制
    cat /proc/sys/fs/file-max
    
    # 查看用户硬限制
    ulimit -Hn
    
    # 查看用户软限制
    ulimit -Sn
    
    # 查看某进程的限制
    # 将 PID 替换为具体的进程 ID
    cat /proc/PID/limits 
    

    相关文章

      网友评论

          本文标题:Ubuntu 永久修改 ulimit 限制

          本文链接:https://www.haomeiwen.com/subject/xcdziltx.html