对所有用户都生效:

vi /etc/profile

添加一行如下:

ulimit -n 65535

执行source /etc/profile生效,不需要重启服务器。

$ source /etc/profile
$ ulimit -n
65535

以后重启服务器后也生效。

如果不修改,默认值为1024,用ulimit -n或是ulimit -a可查看当前值。

05-01 03:11