My Oracle Support Banner

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 later
Information in this document applies to any platform.

Symptoms

The daily oraChk report shows the following check is in a critical state:

 

CRITICAL ASM Check The clusterware state should be "Normal" All ASM Instances


When the recommended action script is run, the output is 'NORMAL':

unset CLUSTER_STATE;
CLUSTER_STATE=$($ORACLE_HOME/bin/sqlplus -s "/ as sysdba" <set head off lines 80 feedback off timing off serveroutput on
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


My Oracle Support provides customers with access to over a million knowledge articles and a vibrant support community of peers and Oracle experts.