centos6.7 修改最大打开进程数和文件数

vi /etc/security/limits.d/90-nproc.conf

*          soft    nproc     65535


vi /etc/security/limits.conf

#最后增加

*                soft    nproc           65535
*                hard    nproc           65535
*                soft    nofile          65535
*                hard    nofile          65535


#登出后重启登录起效

ulimit -a


open files                      (-n) 65535

max user processes              (-u) 65535

你可能感兴趣的:(linux)