Database Reference
In-Depth Information
The stripped down CRS stack is now up and running. You may query its status with crsctl
check css .
$ crsctl check css
CSS appears healthy
$ crsctl check crs
CSS appears healthy
Cannot communicate with CRS
Cannot communicate with EVM
$ ps -ef|grep ocssd |grep -v grep
oracle 14459 1 0 01:42 ? 00:00:00 /opt/oracle/product/crs10.2/bin/ ocssd.bin
The command crsctl check crs fails to contact CRSD and EVMD, which are now disabled.
The value of the parameter local_only in ocr.loc is now TRUE and only a single entry for OCSSD
is in /etc/inittab .
# cat /etc/oracle/ocr.loc
ocrconfig_loc=/opt/oracle/product/crs10.2/cdata/localhost/local.ocr
local_only=TRUE
# grep 'h[1-3]' /etc/inittab
h1:35:respawn:/etc/init.d/init.cssd run >/dev/null 2>&1 </dev/null
The ASM instance can be started and any RDBMS instance using ASM storage can mount
and open the database.
$ env ORACLE_SID=+ASM1 sqlplus / as sysdba
SQL> STARTUP PFILE=$ORACLE_HOME/dbs/pfile+ASM1.ora
ASM instance started
Total System Global Area 83886080 bytes
Fixed Size 1260216 bytes
Variable Size 57460040 bytes
ASM Cache 25165824 bytes
ASM diskgroups mounted
SQL> EXIT
$ env ORACLE_SID=TEN1 sqlplus / as sysdba
SQL> ALTER DATABASE MOUNT;
Database altered.
SQL> ALTER DATABASE OPEN;
Database altered.
SQL> SELECT name FROM v$datafile WHERE file#=1;
NAME
-------------------------------------
+DG/ten/datafile/system.259.628550039
Startup and shutdown of OCSSD is performed with /etc/init.d/init.cssd {start|stop} .
# /etc/init.d/init.cssd stop
Stopping CSSD.
Shutting down CSS daemon.
Shutdown request successfully issued.
Shutdown has begun. The daemons should exit soon.
Search WWH ::




Custom Search