su: cannot set user id: Resource temporarily unavailable
新装的一台linux 6.4主机在所有参数调优以后,运行起来要跑的程序后。再通过su – www时,提示如下:
1su: cannot set user id: Resource temporarily unavailable
直接通过其他机器ssh [email protected]时,提示 Write failed: Broken pipe 。首先去查看了下/etc/profile文件,也有如下的ulimit配置:
1ulimit -S -c 0 > /dev/null 2>&1
2ulimit -HSn 65000
3ulimit -u 65000
注:后面的-u参数为最大进程数,如果害怕其他用户通过fork死循环耗完本机资源,可以适当减少该值。默认该值为1024 。
接着看/etc/security/limits.conf 文件,发现其下面已新增了nofile的值 ,如下:
1www soft nproc 65535
2www hard nproc 65535
3* soft nofile 65535
4* hard nofile 65535
注:limits.conf文件实际上就是ulimit命令的配置文件。nproc为打开的最大进程数,nofile为打开的最大文件数。该处和上面的/etc/profile是重复设置的。实现上该处增加了以后,/etc/profile就不用再做配置的,而且该处配置更规范些,可以对用户进行限制 。
即然以上两处都做了设置,还是有上面的提示,神奇了。后来又乱折腾了半天,突然想到之前在centos 6.3版本配置的时候,发现centos 6.X以后新增了一个/etc/security/limits.d/90-nproc.conf 文件,用于控制nproc 。这里面的默认配置是
1* soft nproc 1024
2root soft nproc unlimited
1024大小显然对我运行程序的www用户来说,太少了点。更改为65535后,再su – www时,问题解决 。烦人的提示不再有。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/resource-ulimit/2611.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.