Difference between revisions of "Checking HANA DB replication status"

From Notes_Wiki
(Created page with "Home > Suse > SAP setup and maintenance > Checking HANA DB replication status The HANA database would have a ID such as ABC. In that case use following steps to check database replication status # Login into server as root # Connect to DB admin account using #:<pre> #:: su - <abc>adm #:</pre> #: where <abc> should be replaced with HANA DB ID # First we can check which machine is primary and which is secondary via: #:<pre> #:: hdbnsutil -...")
 
m
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:


The HANA database would have a ID such as ABC.  In that case use following steps to check database replication status
The HANA database would have a ID such as ABC.  In that case use following steps to check database replication status
# Login into server as root
# Login into both primary and secondary servers as root
# Connect to DB admin account using
# Connect to DB admin account on both machines using
#:<pre>
#:<pre>
#:: su - <abc>adm
#:: su - <abc>adm
#:</pre>
#:</pre>
#: where &lt;abc&gt; should be replaced with HANA DB ID
#: where &lt;abc&gt; should be replaced with HANA DB ID
# Check whether database is running using:
#:<pre>
#:: HDB info
#:: sapcontrol -nr 00 -function GetProcessList
#:</pre>
#: '''In HDB info output''', if we see process with command starting with string 'sapstart' then DB is running.  Otherwise it is stopped.
#: We can get more help via '<tt>sapcontrol -h</tt>'.  '''Here '00' is the instance ID.  If instance ID is 10 then use '-nr 10' instead, etc.'''
#: '<tt>HDB start</tt>' is used to start the DB and '<tt>HDB stop</tt>' is used to stop the DB.  These internally call sapcontrol appropriately to start/stop DB.  See https://blogs.sap.com/2017/11/28/sap-hana-under-the-hood-hdb-by-the-sap-hana-academy/
# First we can check which machine is primary and which is secondary via:
# First we can check which machine is primary and which is secondary via:
#:<pre>
#:<pre>
Line 18: Line 26:
#:</pre>
#:</pre>
#: where &lt;ABC&gt; should be replaced with HANA DB ID
#: where &lt;ABC&gt; should be replaced with HANA DB ID
 
#: In case of power architecture the folder where systemReplication.py is could be
 
#::<pre>
 
#::: cd /hana/shared/<ABC>/exe/linuxppc64le/HDB_<version>/python_support
#::</pre>
#: where &lt;version&gt; is a long alphanumeric string


[[Main Page|Home]] > [[Suse]] > [[SAP setup and maintenance]] > [[Checking HANA DB replication status]]
[[Main Page|Home]] > [[Suse]] > [[SAP setup and maintenance]] > [[Checking HANA DB replication status]]

Latest revision as of 13:31, 30 August 2022

Home > Suse > SAP setup and maintenance > Checking HANA DB replication status

The HANA database would have a ID such as ABC. In that case use following steps to check database replication status

  1. Login into both primary and secondary servers as root
  2. Connect to DB admin account on both machines using
    su - <abc>adm
    where <abc> should be replaced with HANA DB ID
  3. Check whether database is running using:
    HDB info
    sapcontrol -nr 00 -function GetProcessList
    In HDB info output, if we see process with command starting with string 'sapstart' then DB is running. Otherwise it is stopped.
    We can get more help via 'sapcontrol -h'. Here '00' is the instance ID. If instance ID is 10 then use '-nr 10' instead, etc.
    'HDB start' is used to start the DB and 'HDB stop' is used to stop the DB. These internally call sapcontrol appropriately to start/stop DB. See https://blogs.sap.com/2017/11/28/sap-hana-under-the-hood-hdb-by-the-sap-hana-academy/
  4. First we can check which machine is primary and which is secondary via:
    hdbnsutil -sr_state
  5. Then check replication status using:
    cd /usr/sap/<ABC>/HDB10/exe/python_support
    python systemReplicationStatus.py
    where <ABC> should be replaced with HANA DB ID
    In case of power architecture the folder where systemReplication.py is could be
    cd /hana/shared/<ABC>/exe/linuxppc64le/HDB_<version>/python_support
    where <version> is a long alphanumeric string

Home > Suse > SAP setup and maintenance > Checking HANA DB replication status