I have this old entry on my notes, when I started learning RAC this was one on my first question, how to make a clean shutdown of all the clusterware services… so I’m sharing below this short note:
Steps To Shutdown(stop)/Startup(start) CRS, OHAS, ASM, RDBMS & ACFS Services on a RAC Cluster 11.2 & 12.1 Configuration (Doc ID 1355977.1)
Database name: orcl
#Shutdown and startup RAC instance
#Stop all database instance in all the nodes
srvctl stop database -d orcl
#Checking the Status
srvctl status database -d orcl -v
#Stoping all components in cluster (root)
/u01/app/11.2.0/grid/bin/crsctl stop cluster -all
#Starting all components in cluster (root)
/u01/app/11.2.0/grid/bin/crsctl start cluster -all
#Startin up database
srvctl start database -d orcl
#checking global status
#grid user
crsctl status resource -t
[grid@host02 ~]$ crsctl check cluster -all
**************************************************************
host01:
CRS-4537: Cluster Ready Services is online
CRS-4529: Cluster Synchronization Services is online
CRS-4533: Event Manager is online
**************************************************************
host02:
CRS-4537: Cluster Ready Services is online
CRS-4529: Cluster Synchronization Services is online
CRS-4533: Event Manager is online
**************************************************************
host03:
CRS-4537: Cluster Ready Services is online
CRS-4529: Cluster Synchronization Services is online
CRS-4533: Event Manager is online
**************************************************************
[grid@host02 ~]$