OraCHK Output - Critical: Verify Clusterware State Is "Normal"
(Doc ID 2727377.1)
Last updated on JULY 20, 2024
Applies to:
Oracle Database - Enterprise Edition - Version 12.1.0.2 and laterInformation in this document applies to any platform.
Symptoms
The daily oraChk report shows the following check is in a critical state:
CRITICAL | ASM Check | All ASM Instances |
Hide
|
When the recommended action script is run, the output is 'NORMAL':
unset CLUSTER_STATE;
CLUSTER_STATE=$($ORACLE_HOME/bin/sqlplus -s "/ as sysdba" <
SELECT SYS_CONTEXT('SYS_CLUSTER_PROPERTIES', 'CLUSTER_STATE') FROM DUAL;
exit
EOF);
if [ `echo $CLUSTER_STATE | wc -w` = 1 ]
then
if [ $CLUSTER_STATE = "Normal" ]
then
echo -e SUCCESS: the clusterware state is: $CLUSTER_STATE;
else
echo -e FAILURE: the clusterware state is: $CLUSTER_STATE;
fi;
else
echo -e FAILURE: the clusterware state is: $CLUSTER_STATE;
fi;
Changes
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Changes |
Cause |
Solution |
References |