从数据库参数和系统内核参数解决ORA-00845错误

今天数据库启动时出现了ORA-00845: MEMORY_TARGET not supported on this system

官方错误原因描述:

ORA-00845: MEMORY_TARGET not supported on this system
Cause: The MEMORY_TARGET parameter was not supported on this operating system or /dev/shm was not sized correctly on Linux.
Action: Refer to documentation for a list of supported operating systems. Or, size /dev/shm to be at least the SGA_MAX_SIZE on each Oracle instance running on the 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(shm) 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.

大概的意思是:这个问题是由于设置SGA或MEMORY_MAX_TARGET 的大小超过了操作系统/dev/shm的大小,Oracle在metalink的文档:Doc ID:Note:460506.1中进行了说明。

数据库安装前配置时,在文件/etc/sysctl.conf 中修改了如下的内核参数

  
  
  
  
  1. # Controls the maximum shared segment sizein bytes  
  2. kernel.shmmax = 536870912 

Linux中系统内核正在使用的shared memory大小查看,通过/etc/sysctl.conf 的注释知道该参数默认以byte为单位
 

  
  
  
  
  1. cat /proc/sys/kernel/shmmax  
  2. 536870912  


以M为单位计算共享内存大小
 

  
  
  
  
  1. echo  536870912/1024/1024 | bc  512
也就是等于512M

查看Oracle数据库sga和memory max
 

  
  
  
  
  1. SQL> show parameter sga  
  2.  
  3. NAME                                 TYPE        VALUE  
  4. ------------------------------------ ----------- -------lock_sga                             boolean     FALSE  
  5. pre_page_sga                         boolean     FALSE 
  6. sga_max_size                         big integer 1584M  
  7. sga_target                           big integer 0 

 

 

  
  
  
  
  1. SQL>  show parameter memory  
  2.  
  3. NAME                                 TYPE        VALUE  
  4. ------------------------------------ ----------- ------------------------------  
  5. hi_shared_memory_address             integer     0  
  6. memory_max_target                    big integer 1584M  
  7. memory_target                        big integer 1584M  
  8. shared_memory_address                integer     0 

1584M远超过了操作系统共享内存大小512M

 

解决这个问题可以从两个层面(数据库和操作系统):
1.数据库层面:修改初始化参数,使得初始化参数中sga或者memory的设置小于/dev/shm的大小
 

  
  
  
  
  1. alter system set  memory_max_target=480M

使得数据库共享内存小于操作系统共享内存大小


2.操作系统层面:调整/dev/shm的大小
 

  
  
  
  
  1. vim /etc/sysctl.conf     
  2. # Controls the maximum shared segment size, in bytes  
  3. kernel.shmmax = 68719476736  

 ①修改shammax值,增大系统上的共享内存大小
 

  
  
  
  
  1. sysctl -p 

内核参数立即生效

或者②修改/dev/shm的大小可以通过修改/etc/fstab来实现:

 

 查看/dev/shm的空间大小

  
  
  
  
  1. #df -h /dev/shm/  
  2. Filesystem            Size  Used Avail Use% Mounted on  
  3. tmpfs                 2.0G  1.3G  696M  65% /dev/shm 

 

 

  
  
  
  
  1. # vim /etc/fstab  
  2. tmpfs /dev/shm tmpfs defaults 0 0  
  3. tmpfs /dev/shm tmpfs defaults,size=10240M 0 0 

 

 

 

重新挂载/dev/shm,再次查看/dev/shm的空间大小

  
  
  
  
  1. #mount  -o remount /dev/shm  
  2. #df -h /dev/shm/  
  3. Filesystem            Size  Used Avail Use% Mounted on  
  4. tmpfs                  10G  1.3G  8.8G  13% /dev/shm 

再次启动数据库问题解决!

本文出自 “老徐的私房菜” 博客,谢绝转载!

你可能感兴趣的:(oracle数据库,操作系统,调优,故障,内核参数)