赞
踩
在CentOS6.9安装Oracle12C,提示:
Hard limit:maxinum open file descriptors
点击以上界面下方的more details链接,查看详细信息:
提示maxinum open file descriptors(最大文件句柄数)至少需要65536,实际值为65535。
解决方法:
1、在oracle用户查看open files(最大文件句柄数)限制。执行命令:
ulimit -a
可以看到open files为65535。
2、在root用户修改/etc/security/limits.conf配置文件。
vi /etc/security/limits.conf
在最后增加以下内容:(报错信息需要多大就写多大,我这里是65536)
oracle soft nofile 65536
oracle hard nofile 65536
3、在root用户修改/etc/pam.d/login启动文件。
要使/etc/security/limits.conf文件配置生效,必须要确保启动文件/etc/pam.d/login中包含/lib64/security/pam_limits.so,如果没有则加入:
vi /etc/pam.d/login
在最后加入以下内容:
session required /lib64/security/pam_limits.so
重新登录oracle用户,再执行ulimit -a命令,发现open files值已改为65536。
完毕。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。