Arquivos DG_properties.ini de Exemplo

A seguir estão exemplos de arquivos DG_properties.ini para diferentes ambientes de banco de dados principal e stand-by.

Exemplo 1: Sistema de BD do Oracle RAC OCI com o Oracle RAC OCI DB System

Veja a seguir um exemplo de arquivo DG_properties.ini para configurar o Oracle Data Guard entre dois sistemas de banco de dados Oracle Real Application Clusters (Oracle RAC) no Oracle Cloud Infrastructure (OCI), um Sistema de BD OCI principal e um Sistema de BD OCI standby.A versão neste exemplo é 21c. O arquivo DG_properies.ini é o mesmo no principal e no standby. Os comentários são truncados para fins de legibilidade.
# Review and customize all the properties
########################################################################################################
# GENERAL PROPERTIES
########################################################################################################
export ORACLE_OSUSER=oracle
export ORACLE_OSGROUP=oinstall
export GRID_OSUSER=grid
export GRID_HOME=/u01/app/21.0.0.0/grid
export ORACLE_HOME=/u01/app/oracle/product/21.0.0.0/dbhome_1
export ORACLE_BASE=/u01/app/oracle
export DB_NAME=DBTEST  # The database name (the value of db parameter db_name)
export SYS_USERNAME=sys
export RAC=YES  # Set to YES (if DB is a RAC) or to NO (if single instance DB) 
export PASSWORD_FILE_IN_ASM=YES  # Set to YES when the password file is placed in ASM (in case of RAC, it will always be placed in ASM).
export ADDITIONAL_STANDBY=NO     # Set to YES only if the primary db has another standby database already configured, and you are using
                                 the scripts to add a second standby.
#########################################################################################################
# PRIMARY ENV PROPERTIES
#########################################################################################################
export A_PORT=1521 # The primary listener's port (scan's listener port if RAC)
export A_SERVICE=DBTEST_PRI.subnet1.myvcnreg1.oraclevcn.com  # The default CDB service name in primary (format is 
<db_unique_name>.<primary_domain>) 
export A_DBNM=DBTEST_PRI # The DB UNIQUE NAME of primary DB

# For single instance (will be ignored if RAC=YES)
        export A_DB_IP=  # Provide the primary listener's IP. This needs to be reachable from the standby DB.

# For RAC (will be ignored if RAC=NO)
        # Specify the PRIMARY RAC's scan IPs and scan address name
        export A_SCAN_IP1=10.10.0.71
        export A_SCAN_IP2=10.10.0.145
        export A_SCAN_IP3=10.10.0.133
        export A_SCAN_ADDRESS=drdbracpri-scan.subnet1.myvcnreg1.oraclevcn.com
        # Provide the ORACLE_SID of the primary RAC instances
        export A_SID1=DBTEST1
        export A_SID2=DBTEST2
export A_FILE_DEST="+DATA"              # the value of db_create_file_dest db parameter in primary DB
export A_ONLINE_LOG_DEST1="+RECO"       # the value of db_create_online_log_dest_1 parameter in primary DB
export A_RECOVERY_FILE_DEST="+RECO"     # the value of db_recovery_file_dest parameter in primary DB

# Other properties required by primary setup script
export TDE_LOC=/opt/oracle/dcs/commonstore/wallets/tde/DBTEST_PRI    # The the TDE wallet folder in primary (where the .p12 file 
is located). Leave it EMPTY if TDE is not used.
export CREATE_PASSWORD_FILE=YES                                      # If password file already exists in primary and you do not 
want to override it, set this to NO.
export OUTPUT_WALLET_TAR=/tmp/PRIMARY_TDE_WALLET.GZ                  # Absolute file name for the output tar file that will be generated in 
primary, containing the primary TDE wallet.
export OUTPUT_PASWORD_TAR=/tmp/PRIMARY_PASSWORD_FILE.GZ              # Absolute file name for the output tar file that will be generated in 
primary, containing the primary password file.
########################################################################################################
# STANDBY ENV PROPERTIES
########################################################################################################
export B_PORT=1521  # The standby listener's port (scan's listener port if RAC)
export B_SERVICE=DBTEST_STBY.subnet1.myvcnreg2.oraclevcn.com   # The default CDB service name in standby (format is <db_unique_name>.<secondary_domain>)
export B_DBNM=DBTEST_STBY # The DB UNIQUE NAME of standby DB

# For single instance (will be ignored if RAC=YES)
        export B_DB_IP=      # Provide the primary listener's IP. This needs to be reachable from the standby DB

# For RAC (will be ignored if RAC=NO) 
        # Specify STANDBY RAC's scan IPs and scan address name
        export B_SCAN_IP1=10.20.0.242
        export B_SCAN_IP2=10.20.0.207
        export B_SCAN_IP3=10.20.0.136
        export B_SCAN_ADDRESS=drdbracstby-scan.subnet1.myvcnreg2.oraclevcn.com
        # Standby node's VIPs (provide the IPS, not the names)
        export B_VIP1=10.20.0.104
        export B_VIP2=10.20.0.102
        # Provide the ORACLE_SID of the standby RAC instances
        export B_SID1=DBTEST1
        export B_SID2=DBTEST2
        # (normally only needed in Exadata) Provide interconnect IPs if they must be specified in the parameter 
cluster_interconnects. Leave them empty if cluster_interconnects is empty.
        export B_INTERCONNECT_IP1=
        export B_INTERCONNECT_IP2=

export B_FILE_DEST="+DATA"              # the value of db_create_file_dest db parameter in standby DB
export B_ONLINE_LOG_DEST1="+RECO"       # the value of db_create_online_log_dest_1 parameter in standby DB
export B_RECOVERY_FILE_DEST="+RECO"     # the value of db_recovery_file_dest parameter in standby DB

# Other properties required by the standby setup script
export INPUT_WALLET_TAR=/tmp/PRIMARY_TDE_WALLET.GZ  # Absolute file name for the input tar file that contains the 
primary TDE wallet.
export INPUT_PASWORD_TAR=/tmp/PRIMARY_PASSWORD_FILE.GZ  # Absolute file name for the input tar file that contains the 
primary password file.
export B_TDE_LOC=/opt/oracle/dcs/commonstore/wallets/tde/$B_DBNM  # Absolute path where the wallet files (.p12) 
will be created in standby hosts. Verify which is the value used by your system, it may differ. Leave it empty if TDE is not used.

Exemplo 2: Oracle RAC no local com o OCI DB System Oracle RAC

Veja a seguir um exemplo de arquivo DG_properties.ini para configurar o Oracle Data Guard em um ambiente híbrido: entre um Oracle Real Application Clusters (Oracle RAC) local principal e um Sistema de BD OCI stand-by Oracle RAC, versão 19c.Nesse caso, há algumas diferenças nas propriedades gerais. Como o usuário do Grid OS é diferente entre o principal e o stand-by, os arquivos DG_properies.ini são um pouco diferentes nos sistemas principal e stand-by.

DG_properies.ini para o Oracle RAC principal local

# Review and customize all the properties
########################################################################################################
# GENERAL PROPERTIES
########################################################################################################
export ORACLE_OSUSER=oracle
export ORACLE_OSGROUP=oinstall
export GRID_OSUSER=oracle
export GRID_HOME=/u01/app/19.0.0.0/grid
export ORACLE_HOME=/u01/app/oracle/product/19.0.0.0/dbhome_1
export ORACLE_BASE=/u01/app/oracle
export DB_NAME=DBTEST            # The database name (the value of db parameter db_name)
export SYS_USERNAME=sys
export RAC=YES                   # Set to YES (if DB is a RAC) or to NO (if single instance DB)
export PASSWORD_FILE_IN_ASM=YES  # Set to YES when the password file is placed in ASM (for RAC, it will always be placed in ASM).
export ADDITIONAL_STANDBY=NO  # Set to YES only if the primary db has another standby database already configured, and you're using the scripts to add a second standby.
#########################################################################################################
# PRIMARY ENV PROPERTIES
#########################################################################################################
export A_PORT=1521                        # The primary listener's port (scan's listener port if RAC)
export A_SERVICE=DBTEST_PRI.myonprem.example.com   # The default CDB service name in primary (format is <db_unique_name>.<primary_domain>)
export A_DBNM=DBTEST_PRI                  # The DB UNIQUE NAME of primary DB

# For single instance (will be ignored if RAC=YES)
        export A_DB_IP=   # Provide the primary listener's IP. This needs to be reachable from the standby DB.

# For RAC (will be ignored if RAC=NO)
        # Specify the PRIMARY RAC's scan IPs and scan address name
        export A_SCAN_IP1=10.133.57.204
        export A_SCAN_IP2=10.133.57.205
        export A_SCAN_IP3=10.133.57.206
        export A_SCAN_ADDRESS=primrac-scan.myonprem.example.com
        # Provide the ORACLE_SID of the primary RAC instances
        export A_SID1=DBTEST1
        export A_SID2=DBTEST2

export A_FILE_DEST="+DATAC1"              # the value of db_create_file_dest db parameter in primary DB
export A_ONLINE_LOG_DEST1="+DATAC1"       # the value of db_create_online_log_dest_1 parameter in primary DB
export A_RECOVERY_FILE_DEST="+RECOC1"     # the value of db_recovery_file_dest parameter in primary DB

# Other properties required by primary setup script
export TDE_LOC=/u01/app/oracle/admin/DBTEST/wallet       # The the TDE wallet folder in primary (where the .p12 file is located). 
Leave it EMPTY if TDE is not used.
export CREATE_PASSWORD_FILE=YES                         # If password file already exists in primary and you do not want to 
override it, set this to NO.
export OUTPUT_WALLET_TAR=/tmp/PRIMARY_TDE_WALLET.GZ     # Absolute file name for the output tar file that will be generated in 
primary, containing the primary TDE wallet.
export OUTPUT_PASWORD_TAR=/tmp/PRIMARY_PASSWORD_FILE.GZ  # Absolute file name for the output tar file that will be generated in 
primary, containing the primary password file.
########################################################################################################
# STANDBY ENV PROPERTIES
########################################################################################################
export B_PORT=1521                                   # The standby listener's port (scan's listener port if RAC)
export B_SERVICE=DBTEST_OCIDR.subnet1phx.vcnphx.oraclevcn.com    # The default CDB service name in standby (format is 
<db_unique_name>.<secondary_domain>)
export B_DBNM=DBTEST_OCIDR                                               # The DB UNIQUE NAME of standby DB

# For single instance (will be ignored if RAC=YES)
        export B_DB_IP=   # Provide the primary listener's IP. This needs to be reachable from the standby DB

# For RAC (will be ignored if RAC=NO)
        # Specify STANDBY RAC's scan IPs and scan address name
        export B_SCAN_IP1=100.70.127.142
        export B_SCAN_IP2=100.70.127.168
        export B_SCAN_IP3=100.70.127.172
        export B_SCAN_ADDRESS=hydrdb-scan.dev3db1phx.databasede3phx.oraclevcn.com 
        # Standby node's VIPs (provide the IPS, not the names)
        export B_VIP1=100.70.127.134
        export B_VIP2=100.70.127.135
        # Provide the ORACLE_SID of the standby RAC instances
        export B_SID1=DBTEST1
        export B_SID2=DBTEST2
        # (normally only needed in Exadata) Provide interconnect IPs if they must be specified in the parameter 
cluster_interconnects. Leave them empty if cluster_interconnects
is empty.
        export B_INTERCONNECT_IP1=
        export B_INTERCONNECT_IP2=

export B_FILE_DEST="+DATA"              # the value of db_create_file_dest db parameter in standby DB
export B_ONLINE_LOG_DEST1="+DATA"       # the value of db_create_online_log_dest_1 parameter in standby DB
export B_RECOVERY_FILE_DEST="+RECO"     # the value of db_recovery_file_dest parameter in standby DB

# Other properties required by the standby setup script
export INPUT_WALLET_TAR=/tmp/PRIMARY_TDE_WALLET.GZ              # Absolute file name for the input tar file that contains the 
primary TDE wallet.
export INPUT_PASWORD_TAR=/tmp/PRIMARY_PASSWORD_FILE.GZ          # Absolute file name for the input tar file that contains the 
primary password file.
export B_TDE_LOC=/opt/oracle/dcs/commonstore/wallets/tde/$B_DBNM    # Absolute path where the wallet files (.p12) 
will be created in standby hosts. Verify which is the value used by your system, it may differ. Leave it  empty if TDE is not used.     
DG_properies.ini para o Sistema de BD do OCI standby
# Review and customize all the properties
########################################################################################################
# GENERAL PROPERTIES
########################################################################################################
export ORACLE_OSUSER=oracle
export ORACLE_OSGROUP=oinstall
export GRID_OSUSER=grid
export GRID_HOME=/u01/app/19.0.0.0/grid
export ORACLE_HOME=/u01/app/oracle/product/19.0.0.0/dbhome_1
export ORACLE_BASE=/u01/app/oracle

export DB_NAME=CDB11   # The database name (the value of db parameter db_name)
export SYS_USERNAME=sys

export RAC=YES   # Set to YES (if DB is a RAC) or to NO (if single instance DB)
export PASSWORD_FILE_IN_ASM=YES   # Set to YES when the password file is placed in ASM (in case of RAC, it will 
always be placed in ASM).
export ADDITIONAL_STANDBY=NO   # Set to YES only if the primary db has another standby database already  configured, and you are using the scripts to add a second standby.
#########################################################################################################
# PRIMARY ENV PROPERTIES
#########################################################################################################
..
(rest of the file is same than the DG_properties.ini of primary)

Exemplo 3: Banco de Dados Único com Banco de Dados Único

Veja a seguir um exemplo de arquivo DG_properties.ini para configurar o Oracle Data Guard em um ambiente híbrido: entre um banco de dados único principal e um banco de dados stand-by único, o Relational Database Management System (RDBMS) versão 18c e o Grid versão 19c.Neste exemplo, os bancos de dados não usam a criptografia Transparent Data Encryption (TDE) e o arquivo de senha não está no Oracle Automatic Storage Management (Oracle ASM).
# Review and customize all the properties
########################################################################################################
# GENERAL PROPERTIES
########################################################################################################
export ORACLE_OSUSER=oracle
export ORACLE_OSGROUP=oinstall
export GRID_OSUSER=grid
export GRID_HOME=/u01/app/19.0.0.0/grid
export ORACLE_HOME=/u01/app/oracle/product/18.0.0.0/dbhome_1
export ORACLE_BASE=/u01/app/oracle

export DB_NAME=ORCL  # The database name (the value of db parameter db_name)
export SYS_USERNAME=sys

export RAC=NO   # Set to YES (if DB is a RAC) or to NO (if single instance DB)
export PASSWORD_FILE_IN_ASM=NO # Set to YES when the password file is placed in ASM (for RAC, it will always be placed in ASM).
export ADDITIONAL_STANDBY=NO   # Set to YES only if the primary db has another standby database already configured, and you're using
the scripts to add a second standby.
#########################################################################################################
# PRIMARY ENV PROPERTIES
#########################################################################################################
export A_PORT=1521  # The primary listener's port (scan's listener port if RAC)
export A_SERVICE=ORCL_PRI.primarydomain.example.com  # The default CDB service name in primary (format is 
<db_unique_name>.<primary_domain>) 
export A_DBNM=ORCL_PRI   # The DB UNIQUE NAME of primary DB

# For single instance (will be ignored if RAC=YES)
export A_DB_IP=10.10.10.10   # Provide the primary listener's IP. This needs to be reachable from the 
standby DB.

# For RAC (will be ignored if RAC=NO)
    # Specify the PRIMARY RAC's scan IPs and scan address name
    export A_SCAN_IP1=
    export A_SCAN_IP2=
    export A_SCAN_IP3=
    export A_SCAN_ADDRESS=
    # Provide the ORACLE_SID of the primary RAC instances
    export A_SID1=
    export A_SID2=

export A_FILE_DEST="+DATA"              # the value of db_create_file_dest db parameter in primary DB
export A_ONLINE_LOG_DEST1="+DATA"       # the value of db_create_online_log_dest_1 parameter in primary DB
export A_RECOVERY_FILE_DEST="+RECO"     # the value of db_recovery_file_dest parameter in primary DB

# Other properties required by primary setup script
export TDE_LOC=   # The the TDE wallet folder in primary (where the .p12 file is located). Leave it EMPTY if TDE is not 
used.
export CREATE_PASSWORD_FILE=YES                             # If password file already exists in primary and you do not want to 
override it, set this to NO.
export OUTPUT_WALLET_TAR=/tmp/PRIMARY_TDE_WALLET.GZ         # Absolute file name for the output tar file that will be generated in 
primary, containing the primary TDE wallet.
export OUTPUT_PASWORD_TAR=/tmp/PRIMARY_PASSWORD_FILE.GZ     # Absolute file name for the output tar file that will be 
generated in primary, containing the primary password file.

########################################################################################################
# STANDBY ENV PROPERTIES
########################################################################################################
export B_PORT=1521                                    # The standby listener's port (scan's listener port if RAC)
export B_SERVICE=ORCL_STBY.standbydomain.example.com  # The default CDB service name in standby (format is 
<db_unique_name>.<secondary_domain>)
export B_DBNM=ORCL_STBY                               # The DB UNIQUE NAME of standby DB

# For single instance (will be ignored if RAC=YES)
export B_DB_IP=10.20.20.20                            # Provide the primary listener's IP. This needs to be reachable from the 
standby DB

# For RAC (will be ignored if RAC=NO) 
    # Specify STANDBY RAC's scan IPs and scan address name
    export B_SCAN_IP1=
    export B_SCAN_IP2=
    export B_SCAN_IP3=
    export B_SCAN_ADDRESS=
    # Standby node's VIPs (provide the IPS, not the names)
    export B_VIP1=
    export B_VIP2=
    # Provide the ORACLE_SID of the standby RAC instances
    export B_SID1=
    export B_SID2=
    # (normally only needed in Exadata) Provide interconnect IPs if they must be specified in the parameter 
cluster_interconnects. Leave them empty if cluster_interconnects is empty.
        export B_INTERCONNECT_IP1=
        export B_INTERCONNECT_IP2=

export B_FILE_DEST="+DATA"              # the value of db_create_file_dest db parameter in standby DB
export B_ONLINE_LOG_DEST1="+DATA"       # the value of db_create_online_log_dest_1 parameter in standby DB
export B_RECOVERY_FILE_DEST="+RECO"     # the value of db_recovery_file_dest parameter in standby DB

# Other properties required by the standby setup script
export INPUT_WALLET_TAR=/tmp/PRIMARY_TDE_WALLET.GZ     # Absolute file name for the input tar file that contains the 
primary TDE wallet.
export INPUT_PASWORD_TAR=/tmp/PRIMARY_PASSWORD_FILE.GZ # Absolute file name for the input tar file that contains the 
primary password file.
export B_TDE_LOC=   # Absolute path where the wallet files (.p12) will be created in standby hosts. Verify which is 
the value used by your system, it may differ. Leave it empty if TDE is not used.