首页 > 代码库 > limits.conf设置引起的常见错误
limits.conf设置引起的常见错误
错误1:
bash: fork: retry: Resource temporarily unavailable
解决方法:
[root@localhost ~]# vim /etc/security/limits.conf * soft nofile 65535 * hard nofile 65535 www soft nproc 500 www hard nproc 500 注:退出secureCRT,重新登录即可
错误2:
-bash: redirection error: cannot duplicate fd: Invalid argument
解决方法:
[root@localhost ~]# vim /etc/security/limits.conf * soft nofile 65535 * hard nofile 65535 www soft nofile 6000 www hard nofile 6000 注:退出secureCRT,重新登录即可
错误3:
su: cannot set user id: Resource temporarily unavailable
解决方法:
[root@localhost ~]# cat /proc/sys/fs/file-max #<--指定了系统范围内所有进程可以打开的文件句柄的数量限制 6815744 [root@localhost ~]# cat /proc/sys/fs/file-nr #<--整个系统目前使用的文件句柄数量,其中第一个值已经分配的文件句柄,第二值为已经分配但没有使用的文件句柄,在kernel2.6版本第二项值总为0,表示无一浪费都已经被使用,第三个值是句柄总数 22528 0 6815744 [root@localhost ~]# vim /etc/security/limits.conf * soft nofile 65535 * hard nofile 65535 www soft nofile 6000 www hard nofile 6000 www soft nproc 500 www hard nproc 500
limits.conf设置引起的常见错误
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。