当前位置:   article > 正文

安装Oracle12C提示Hard limit:maxinum open file descriptors的解决方法_please set the maximum number of open file descrip

please set the maximum number of open file descriptors to be 65536 using 'ul

在CentOS6.9安装Oracle12C,提示:

Hard limit:maxinum open file descriptors
在这里插入图片描述
点击以上界面下方的more details链接,查看详细信息:
在这里插入图片描述
提示maxinum open file descriptors(最大文件句柄数)至少需要65536,实际值为65535。

解决方法:

1、在oracle用户查看open files(最大文件句柄数)限制。执行命令:

ulimit -a
  • 1

在这里插入图片描述
可以看到open files为65535。

2、在root用户修改/etc/security/limits.conf配置文件。

vi /etc/security/limits.conf
  • 1

在最后增加以下内容:(报错信息需要多大就写多大,我这里是65536)

oracle soft nofile 65536
oracle hard nofile 65536
  • 1
  • 2

在这里插入图片描述

3、在root用户修改/etc/pam.d/login启动文件。

要使/etc/security/limits.conf文件配置生效,必须要确保启动文件/etc/pam.d/login中包含/lib64/security/pam_limits.so,如果没有则加入:

vi /etc/pam.d/login
  • 1

在最后加入以下内容:

session    required     /lib64/security/pam_limits.so
  • 1

在这里插入图片描述
重新登录oracle用户,再执行ulimit -a命令,发现open files值已改为65536。

完毕。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/455530
推荐阅读
相关标签
  

闽ICP备14008679号