免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1443 | 回复: 0
打印 上一主题 下一主题

ORA-00845: MEMORY_TARGET not supported on this system [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-23 03:51 |只看该作者 |倒序浏览
VM中Oracle的一个测试,原来VM使用内存为4G,后来修改小一些到1G,结果启动报错:
[oracle@asm1 ~]$ sqlplus "/as sysdba"

SQL*Plus: Release 11.2.0.1.0 Production on Tue Oct 4 16:02:10 2011

Copyright (c) 1982, 2009, Oracle.  All rights reserved.

Connected to an idle instance.

SQL> startup
ORA-00845: MEMORY_TARGET not supported on this system

后来修改了/etc/fstab内容:
none                    /dev/shm                tmpfs   defaults,size=6G    0 0
增加size=6G

然后:
shutdown ASM Instance
umount /dev/shm
mount /dev/shm
startup ASM Instance
startup RDBMS Instance就OK了。

具体参照下面文章解决的该问题。

=============================================================
问题:
         利用dbca新建数据库后,关闭数据库,再重启,
         结果出现错误:ORA-00845: MEMORY_TARGET not supported on this system

原因:
         官方文档解释
          Starting with Oracle Database 11g, the Automatic Memory Management feature requires more shared
          memory (/dev/shm)and file descriptors. The size of the shared memory should be at least the greater of
          MEMORY_MAX_TARGET and MEMORY_TARGET for each Oracle instance on the computer. If 
          MEMORY_MAX_TARGET or MEMORY_TARGET is set to a non zero value, and an incorrect size is assigned
          to the shared memory, it will result in an ORA-00845 error at startup.

       
         简单来说就是 MEMORY_MAX_TARGET 的设置不能超过 /dev/shm 的大小:

解决(一)修改shm大小:
1    [oracle@FWDB FWDB]$ df -h | grep shm
2    tmpfs                 2.0G     0  2.0G   0% /dev/shm

马上把它加大:
1    [root@FWDB ~]# cat /etc/fstab | grep tmpfs
2    tmpfs /dev/shm tmpfs   defaults,size=4G 0 0

 现在可以通过重启使这个配置生效,也可以通过重新挂载来修改其大小:
1    [root@FWDB ~]# mount -o remount,size=4G /dev/shm
2    [root@FWDB ~]# df -h | grep shm
3    tmpfs 4.0G     0  4.0G   0% /dev/shm

解决(二)修改MEMORY_TARGET大小
通过修改配置文件initxxxx.ora,修改memory_target的大小,
#vi initxxxx.ora
#sqlplus /nolog
#SQL> startup pfile='/xxx/xxxx/xxx/xxx/xxx/initxxxx.ora';
#SQL> create spfile from pfile;

Ref: http://shanchao7932297.blog.163.com/blog/static/1363624201131443532446/
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP