How to check if HACMP is running on AIX node?

Hello AIX experts,

I have few queries and appreciate if you could help me with them.

  1. How to check if HACMP (or any other AIX OS cluster) is installed
  2. How to check if HACMP (or any other AIX OS cluster) is running
  3. how to check which Oracle DB instance is running on it
  4. how to check if oracle DB is application-level clustered or OS-level (HACMP or other) clustered

Many thanks in advance!

  1. lslpp -L | grep -i cluster for hacmp or lslpp -L | grep -i vrts for VCS
  2. lssrc -a | grep -i cl or ps -ef | grep clstrmgrES for hacmp
    hastatus -sum for VCS, ps -ef | grep -i pmon for asm (rac)
  3. ps -ef | grep -i pmon
  4. you would see if you run asm rac when you grep for pmon as asm clusters are pretty obviously named
    Hope that helps
    regards
    Nicki
1 Like