ORA-27102:out of memory Linux-x86_64 Error:12:Cannot allocate memoryの処理

4150 ワード

お客様のoracleデータベースの起動エラー、linuxの操作、oracle 11 gはlock_sgaパラメータをtrueに設定データベースの再起動時にエラーORA-27102:out of memory
SQL> startup nomount ORA-27102: out of memory Linux-x86_64 Error: 12: Cannot allocate memory
なぜなら、操作パラメータがsgaで指定したサイズのメモリをロックできるように設定されていないためです.
[root@jyrac1 ~]# ulimit -a
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 16384
max locked memory       (kbytes, -l) 32
max memory size         (kbytes, -m) unlimited
open files                      (-n) 1024
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 10240
cpu time               (seconds, -t) unlimited
max user processes              (-u) 16384
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited

解決策は2つあります.ulimit-l unlimitedは、インスタンスを起動する前に現在のセッションにのみ有効に実行します.
[root@jyrac1 ~]# ulimit -l unlimited

[root@jyrac1 ~]# su - oracle
[oracle@jyrac1 ~]$ ulimit -a
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 16384
max locked memory       (kbytes, -l) unlimited
max memory size         (kbytes, -m) unlimited
open files                      (-n) 65536
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 10240
cpu time               (seconds, -t) unlimited
max user processes              (-u) 16384
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited
[oracle@jyrac1 ~]$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 6 12:20:26 2014

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

Connected to an idle instance.

SQL> startup nomount
ORACLE instance started.

Total System Global Area  313159680 bytes
Fixed Size                  2212936 bytes
Variable Size             109054904 bytes
Database Buffers          197132288 bytes
Redo Buffers                4759552 bytes

SQL> show parameter lock_sga

NAME                                 TYPE                    VALUE
------------------------------------ ----------------------  ------------------------------
lock_sga                             boolean                 TRUE


二:修正/etc/security/limits.conf以下の情報oracle soft memlock 10485760 orcale hard memlock 10485760を追加すると、10 Gのメモリをロックできます.
SQL> startup nomount
ORACLE instance started.

Total System Global Area  730714112 bytes
Fixed Size                  2216944 bytes
Variable Size             524291088 bytes
Database Buffers          197132288 bytes
Redo Buffers                7073792 bytes

そしてlock_sgaパラメータをtrueに設定すると自動メモリ管理が有効になりません
SQL> show parameter memory

NAME                                 TYPE                      VALUE
------------------------------------ ----------------------    ------------------------------
hi_shared_memory_address             integer                   0
memory_max_target                    big integer               0
memory_target                        big integer               0
shared_memory_address                integer                   0

SQL> alter system set memory_max_target=700M scope=spfile;

System altered.

SQL> alter system set memory_target=600M scope=spfile;

System altered.


SQL> shutdown immediate
ORA-01507: database not mounted


ORACLE instance shut down.
SQL> startup nomount
ORA-00847: MEMORY_TARGET/MEMORY_MAX_TARGET and LOCK_SGA cannot be set together

説明lock_sgaパラメータがtrueに設定されている場合、自動メモリ管理は有効になりません.
「ITPUBブログ」からのリンク:http://blog.itpub.net/26015009/viewspace-1176889/転載する必要がある場合は、出典を明記してください.そうしないと、法律責任を追及します.
転載先:http://blog.itpub.net/26015009/viewspace-1176889/