본문 바로가기
Big Data/RDBMS

ORA-00845: MEMORY_TARGET not supported on this system

by 신군. 2018. 5. 26.
반응형

[ 에러 사항 ]

- 증상 1번
# 일반 사용자로 접속시 에러 발생
$ sqlplus ID/PW@SID

SQL*Plus: Release 11.2.0.1.0 Production on Fri Jul 11 15:12:50 2014

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

ERROR:
ORA-12514: TNS:listener does not currently know of service requested in connect descriptor

- 증상 2번
$ 인스턴스 실행 시 아래와 같은 에러 발생
$ sqlplus /nolog

SQL*Plus: Release 11.2.0.1.0 Production on Fri Jul 11 15:41:55 2014

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

SQL> connect orcl as sysdba
Enter password: 
Connected to an idle instance.
SQL> startup
ORA-00845: MEMORY_TARGET not supported on this system


[ 원인 ]
오라클 11g에서 사용하는 AMM(automatic memory management)의 할당 메모리가 작다(memory_max_target,memory_target)
아래 명령어로 확인 시 결과가 나와야한다. 
SQL> show parameter memory

[ 해결방법 ]
- 확인 -
#df로 확인 시 /dev/shm할당 메모리를 확인한다. 분명히 가용 메모리가 충분한데도 에러가 발생한다.
# df -h
tmpfs                  32G   12G   21G  36% /dev/shm

- 조치 -
# 실제 메모리에 등록될 데이터가 더욱 많은것이다. 충분히 늘려준다.
# mount -t tmpfs shmfs -o size=48g,remount /dev/shm

- 인스턴스 실행 -
$ sqlplus /nolog
SQL> connect orcl as sysdba
Enter password: 
Connected to an idle instance.
SQL> startup
ORACLE instance started.

Total System Global Area 2.6991E+10 bytes
Fixed Size                  2213976 bytes
Variable Size            2.5501E+10 bytes
Database Buffers         1342177280 bytes
Redo Buffers              145174528 bytes
Database mounted.
Database opened.
SQL> show parameter memory

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
hi_shared_memory_address             integer     0
memory_max_target                    big integer 25856M
memory_target                        big integer 25856M
shared_memory_address                integer     0
SQL>

# df -h
tmpfs                  48G   21G   28G  43% /dev/shm


반응형

'Big Data > RDBMS' 카테고리의 다른 글

Database Sample Schemas  (0) 2018.07.04
[ORACLE] 사용자 패스워드 만료 관련  (0) 2018.06.13
로그인이 안될경우  (0) 2018.03.09
mysql 5.7 root 패스워드  (0) 2018.03.09
오라클 테스트 계정 scott lock 풀기  (0) 2018.02.22