文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

数据库启动时报ORA-00845错误解决方法

2024-04-02 19:55

关注

问题描述:巡检时发现某一个节点数据库down了,通过sqlplus 进行系统时显示连接的是一个空实例,尝试通过startup重启数据库报错,提示MEMORY_TARGETnot supported on this system,查看告警日志报MEMORY_TARGET失败,要增加/dev/shm大小才可以解决问题

登录数据库时报错信息如下:

[oracle@db01 ~]$ sqlplus / as sysdba

 

SQL*Plus: Release 11.2.0.4.0 Productionon Mon Oct 30 09:26:35 2017

 

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

 

Connected to an idle instance.

 

SQL> startup 

ORA-00845: MEMORY_TARGET not supported on this system

 

后台日志报如下信息:

Starting ORACLE instance (normal)

WARNING: You are trying to use theMEMORY_TARGET feature. This feature requires the /dev/shm file system to bemounted for at least 13522436096 bytes. /dev/shm is either not mounted or ismounted with available space less than this size. Please fix this so that MEMORY_TARGETcan work as expected. Current available is 12203786240 and used is 454021120bytes. Ensure that the mount point is /dev/shm for this directory.

memory_target needs larger /dev/shm

 

问题分析

 

由于Oracle11g中使用的是AMM,当MEMORY_TARGET大于/dev/shm时就提示不支持此系统,从而报错无法启动数据库,由于/dev/shm是通过tmpfs通过大小的,在Linux环境中可以通过修改此大小解决问题

解决方法:

1、  查看当前的tmpfs大小信息

[oracle@i60001~]$ df -h

Filesystem                     Size  Used Avail Use% Mounted on

/dev/mapper/vg_db01-LogVol02  229G  65G  153G  30% /

tmpfs                            12G  434M   12G   4% /dev/shm--此处要修改

/dev/sde1                       485M   40M 420M   9% /boot

/dev/mapper/vg_db01-LogVol00   30G 5.0G   24G  18% /usr

[oracle@i60001~]$ mount -o size=20G -onr_inodes=1000000 -o noatime,nodiratime -o remount /dev/shm

mount: onlyroot can do that

修改tmpfs大小要通过root用户下面操作,切换到root用户

[oracle@i60001~]$ su root

Password:

2、修改tmpfs大小

[root@db01oracle]#  mount -o size=20G -o nr_inodes=1000000 -o noatime,nodiratime-o remount /dev/shm

[root@db01oracle]# df -h

Filesystem                      Size  Used Avail Use% Mounted on

/dev/mapper/vg_db01-LogVol02  229G  65G  153G  30% /

tmpfs                            20G  434M   20G   3% /dev/shm--修改后的大小

/dev/sde1                       485M   40M 420M   9% /boot

/dev/mapper/vg_db01-LogVol00   30G 5.0G   24G  18% /usr

 

3、修改tmpfs大小后,再登录数据库中重启实例

[oracle@db01~]$ sqlplus / as sysdba

 

SQL*Plus:Release 11.2.0.4.0 Production on Mon Oct 30 09:42:02 2017

 

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

 

Connected toan idle instance.

 

SQL>startup;    

ORACLEinstance started.

 

Total SystemGlobal Area 1.3462E+10 bytes

Fixed Size              2265984 bytes

Variable Size                7381978240 bytes

DatabaseBuffers        6039797760 bytes

Redo Buffers                 38014976 bytes

Databasemounted.

Database opened.-显示启动成功

--查询当前的数据库实例是否正常

SQL>select open_mode from v$database;

 

OPEN_MODE

--------------------

READ WRITE


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯