赞
踩
sudo vim /etc/security/limits.conf
* soft nproc 65535
* hard nproc 65535
* soft nofile 65535
* hard nofile 65535
root soft nproc 65535
root hard nproc 65535
root soft nofile 65535
root hard nofile 65535
liuxiaowei soft nproc 65535
liuxiaowei hard nproc 65535
liuxiaowei soft nofile 65535
liuxiaowei hard nofile 65535
注:liuxiaowei是普通用户
在 /etc/pam.d/common-session 和 /etc/pam.d/common-session-noninteractive 文件中,都添加下面内容:
session required pam_limits.so
#DefaultLimitNOFILE=65536
将前面的#去掉
修改完成后,如果是远程链接,重新链接即可生效; 如果是桌面环境,重启后生效。
1. nproc 是操作系统级别对每个用户创建的进程数的限制。
2. nofile 最大打开文件描述符数, too many open files 的时候一般就是这个小了(在系统资源空闲的时候)。
3. 第一列的 * 或 root ,代表为所有用户或 root 用户设置这个配置。
4. 第二列的 soft 软规则限制, hard 硬规则限制, soft 指的是当前系统生效的设置值, hard 表明系统中所能设定的最大值,soft 的限制不能比 hard 限制高。
5. 65535 是设置的值,根据实际的需求和系统的配置去配置。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。