共计 2381 个字符,预计需要花费 6 分钟才能阅读完成。
问题描述 :巡检时发现某一个节点数据库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
更多 Oracle 相关信息见Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12
本文永久更新链接地址:http://www.linuxidc.com/Linux/2018-01/150042.htm