Entering content frame

 Example: How to Set Up a Hot Standby System 

You want to set up a hot standby system called HOTELDB with a master component GENUA and a standby component PARMA. The GENUA server recognizes the operating system user DAVID with password BLUE. The hot standby system is to be addressed using the official name HOTEL_OFFICIAL. The PARMA server recognizes the operating system user ANNA with password MAY. The installation path for the database software on this server is C:\Program Files\sdb\7500.

 

Open a connection to the official node HOTEL_OFFICIAL:

dbmcli -n HOTEL_OFFICIAL

Generate the database instance HOTELDB:

db_create HOTELDB DBM,DBM DAVID,BLUE
...
Set up the hot standby system:

db_offline
hss_enable node=HOTEL_OFFICIAL lib=LIBHSSCOPY
db_online
hss_addstandby PARMA login=ANNA,MAY path="C:\Program Files\sdb\7500"
db_standby PARMA

 

 

Leaving content frame