1、用户级别

在/etc/security/limit.conf配置,重新登录生效
user   soft    nofile    65535
user   hard    nofile    65535

2、进程级别

可以使用命令查看
sysctl -a|grep fs.nr_open

配置方式
/etc/sysctl.conf
fs.nr_open=1000000

用户级别设置的最大值不能超过进程级别的,否则不能登陆用户,
提示:su: cannot not open session: Permission denied

3、全局变量

可以使用命令查看
sysctl -a|grep fs.file-max

配置方式
/etc/sysctl.conf
fs.file-max=2000000