Ubuntu 想设置 ulimit 为 65535 , 编辑 /etc/security/limits.conf
* soft nproc 65535
* hard nproc 65535
* soft nofile 65535
* hard nofile 65535
保存后,发现根本不生效,但是把星号换成具体用户如 root 、www 等保存后,ulimit 变为 65535 了
所以 Ubuntu 根本不支持“*”号?如果要设置对所有用户 ulimit 都为 65535 ,该怎么设定?
1
unnamedhao 2023-03-17 09:23:26 +08:00
好像 root 不支持*
|
2
xin053 2023-03-17 09:49:58 +08:00
* 不包含 root ,root 要单独指定
* - nofile 65535 * - nproc 65535 root - nofile 65535 root - nproc 65535 |