✎
编程开发网
首页
C语言
C++
面试
Linux
函数
Windows
数据库
下载
搜索
当前位置:
首页
->
AI编程基础
->
数据库编程
ORA-27090:Unable to reserve kernel resources for asynchronous disk I/O解决方法
2014-11-24 15:21:33
·
作者:
·
浏览:
1
标签:
ORA-27090:Unable
reserve
kernel
resources
for
asynchronous
disk
I/O
解决
方法
ORA-27090:Unable to reserve kernel resources for asynchronous disk I/O解决方法
此错误是因为内核参数的值aio-max-nr设置太低,
推荐fs.aio-max-nr= 3145728
修改方法为:在/etc/sysctl.conf中添加
fs.aio-max-nr= 3145728
修改后使用sysctl –p重新加载参数,然后重启
数据库
。