CLI Cookbook: Starting or stopping cluster instances of an Oracle RAC virtual database
This topic describes the steps to start or stop cluster instances of an Oracle RAC virtual database.
Starting cluster instances of an Oracle RAC virtual database
Procedure
Log into the Delphix command-line interface using the admin user or a user with admin privileges.
CODE$ ssh admin@YOUR_ENGINE
Select the source associated with the VDB. By default, sources are named the same as the VDB.
CODEdelphix> source "vdb"
Start a cluster instance by specifying desired instance number to the start command.
CODEdelphix> start; set instances.0=<instance number>; commit
Additional instance numbers can be specified using as ‘instance.1', ‘instances.2’ and so on.
Stopping cluster instances of an Oracle RAC virtual database
Procedure
Log into the Delphix command-line interface using the admin user or a user with admin privileges.
CODE$ ssh admin@YOUR_ENGINE
Select the source associated with the VDB. By default, sources are named the same as the VDB.
CODEdelphix> source "vdb"
Stop a cluster instance by specifying desired instance number to the stop command.
CODEdelphix> stop; set instances.0=<instance number>; commit
Additional instance numbers can be specified using as ‘instance.1', ‘instances.2’ and so on.