ORA-00845: MEMORY_TARGET not supported on this system
Oracle ACE Pro
Oracle Solution Architect
Oracle E-Business Suite
Oracle Cloud Infrastructure
Oracle Fusion Middleware
Oracle Database Administration
Oracle Weblogic Administration
Oracle ACE Pro
Oracle Solution Architect
Oracle E-Business Suite
Oracle Cloud Infrastructure
Oracle Fusion Middleware
Oracle Database Administration
Oracle Weblogic Administration
Translation of the error message from Oracle’s support site:
ORA-12645: Parameter does not exist.
Cause: A sqlnet.ora parameter from which a value was needed does not exist.
Action: Set the parameter in the parameter file.
SQL> startup nomount;
ORA-00845: MEMORY_TARGET not supported on this system
[oracle@oel6 ~]$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_oel6-lv_root
43G 15G 26G 37% /
tmpfs 1001M 212M 789M 22% /dev/shm
/dev/sda1 485M 55M 405M 12% /boot
.host:/ 245G 126G 119G 52% /mnt/hgfs
Change the size of that files System by issuing the following command:
mount -t tmpfs shmfs -o size=2g /dev/shm
The shared memory file system should be big enough to accommodate the MEMORY_TARGET and MEMORY_MAX_TARGET values, else Oracle will throw the ORA-00845 error.
tmpfs /dev/shm tmpfs defaults,size=2G 0 0
check services by command:
crs_stat -t Name Type Target State Host ------------------------------------------------------------ ora.DATA.dg ora....up.type OFFLINE OFFLINE ora....ER.lsnr ora....er.type ONLINE ONLINE orcl01 ora....2C.lsnr ora....er.type ONLINE ONLINE orcl01 ora.asm ora.asm.type OFFLINE OFFLINE ora.cssd ora.cssd.type ONLINE ONLINE orcl01 ora.diskmon ora....on.type ONLINE ONLINE orcl01 ora.orcl.db ora....se.type OFFLINE OFFLINE Start services manually
#crsctl start resource ora.cssd CRS-2672: Attempting to start 'ora.cssd' on 'orcl01' CRS-2679: Attempting to clean 'ora.diskmon' on 'orcl01' CRS-2681: Clean of 'ora.diskmon' on 'orcl01' succeeded CRS-2672: Attempting to start 'ora.diskmon' on 'orcl01' CRS-2676: Start of 'ora.diskmon' on 'orcl01' succeeded CRS-2676: Start of 'ora.cssd' on 'orcl01' succeeded #sqlplus / as sysasm SQL*Plus: Release 11.2.0.1.0 Production on Fri Jan 25 12:35:10 2015 Copyright (c) 1982, 2009, Oracle. All rights reserved. Connected to an idle instance. SQL> startup; ASM instance started Total System Global Area 283930624 bytes Fixed Size 2212656 bytes Variable Size 256552144 bytes ASM Cache 25165824 bytes ASM diskgroups mounted
Step 1. Create Password file for ASM Instance
All Rights Reserved