ORA-00845: MEMORY_TARGET not supported on this system 报错处理

ORA-00845: MEMORY_TARGET not supported on this system 报错处理

    今天新装一台Oracle 11g的数据库,打算将SGA设大一点,知道 11g 中有一个新特性 MEMORY_TARGET,于是将memory_max_target和memory_target设置大一些,但是设置完后,在启动时报了个 ORA-00845:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SQL> alter system set memory_max_target=3G scope=spfile ;
System altered.
SQL> alter system set memory_target=2G scope=spfile ;     
System altered.
SQL>
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup ;
ORA-00845: MEMORY_TARGET not supported on this system

      来自Oracle的官方解析是:

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 的大小:

1
2
[oracle@FWDB FWDB]$ df  -h | grep  shm
tmpfs                 2.0G     0  2.0G   0% /dev/shm

      于是把/dev/shm 的大小加大:

1
2
[root@FWDB ~] # cat /etc/fstab | grep tmpfs
tmpfs                   /dev/shm                 tmpfs   defaults,size=4G 0 0

      现在可以通过重启使这个配置生效,也可以通过重新挂载来修改其大小:

1
2
3
[root@FWDB ~] # mount -o remount,size=4G /dev/shm
[root@FWDB ~] # df -h | grep shm
tmpfs                 4.0G     0  4.0G   0% /dev/shm

      再次启动数据库,没有报错了。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值