用xshell登录linux系统之后,用命令>ulimit -a
注意到系统模式是1024个
使用>ulimit -n 数量,可临时更改,生效范围为当前会话
永久修改的方法:
> vim /etc/security/limits.conf
添加:
* soft nofile 65536
* hard nofile 65536
保存后,重开会话生效
2021-08-17 03:00:18
用xshell登录linux系统之后,用命令>ulimit -a
注意到系统模式是1024个
使用>ulimit -n 数量,可临时更改,生效范围为当前会话
永久修改的方法:
> vim /etc/security/limits.conf
添加:
* soft nofile 65536
* hard nofile 65536
保存后,重开会话生效