This appendix includes copies of the original, unedited, DIVArchive Backup Service configuration files for both Windows and Linux. You must configure these files for your particular installation using a plain text editor (for example, Notepad or Notepad++). The included files are as follows:
# ----------------------------------------- # DIVArchive Backup Service Configuration File # ----------------------------------------- # # Syntax: # # [SET |set ]property_name=property_value # If the first word is "SET", it is ignored but the rest of the line is read. # Every space is significant. Do not put extra spaces before or after property # names or values. # # Lines beginning with "#" or that do not contain an equal sign are ignored. #******************************************************************************** ******************** # DIVArchive Backup Basic Settings #**************************************************************************************************** #**************************************IMPORTANT****************************************************** # Please use DIVArchive database installation package for installing Oracle. # Please use DIVArchive Prerequisites package for installing CYGWIN. # Please use / instead of \ for directory location path values throughout this configuration file #***************************************************************************************************** # WINDOWS SPECIFIC OPTION # DIVArchive Backup service name # This variable can be used to specify the name of the windows service. # If this variable is used, the service name will be "DIVArchive Backup - <SERVICE_NAME>". # Default: If this variable is not used, the service name will be "DIVArchive Backup". # Default port is 9300. #SERVICE_NAME= # DIVArchive Backup service port # This will be the port number on which Backup service will be listening. # Default port is 9300. SERVICE_PORT=9300 ################################################################################ # MANAGER: Parameters for DIVArchive Manager ################################################################################ # The ip address and port of DIVArchive Manager # Address default is "localhost". Port valid range is 1..65535. Default is 9000. DIVAMANAGER_HOST=localhost DIVAMANAGER_PORT=9000 ###################################################################################################### # Connection parameters for the database - Use same Database and user DIVArchive Manager is connected ###################################################################################################### # NB! For the following "Database" parameters no defaults will be assumed! DIVAMANAGER_DBHOST=localhost DIVAMANAGER_DBPORT=1521 DIVAMANAGER_DBUSER=diva #Database Instance identifiers DIVAMANAGER_DBSERVICENAME & DIVAMANAGER_DBSID must be set. DIVAMANAGER_DBSERVICENAME=lib5.world DIVAMANAGER_DBSID=lib5 ###################################################################################################### # BACKUP SERVICES ###################################################################################################### #This parameter is used enable/disable Oracle database backups to be managed by Backup Service. If set to 'N' Backup Service # won't backup Oracle database. Default is 'Y'. BACKUP_SERVICE_MANAGE_DATABASE_BACKUPS=Y # This parameter is used enable/disable Metadata database backups to be managed by Backup Service. If set to 'N' Backup Service # won't backup Metadata database. Default is 'N'. # # If this parameter is set to 'Y' and metedata database path is not configured or invalid and Metadata database is not enabled under # Manager setting panle on Control GUI, Backup Service will fail to start. BACKUP_SERVICE_MANAGE_METADATA_BACKUPS=N ################################################################################ # Backup Scripts & Cygwin location # Please use / instead of \ for directory location path values ################################################################################ # Database Backup Script Location, The scripts are normally installed at <DIVArchive_HOME>/programs/DBBackup/rman/bin during # DIVArchive Installtion. Default is ../rman/bin # If relative path is used, the start point must be from <DIVArchive_HOME>/programs/DBBackup/bin. SCRIPT_FILES_DIRECTORY=../rman/bin #cygwin installation location, Default is C:/cygwin/bin #Please use DIVArchive Prerequisites package for installing CYGWIN. CYGWIN_BIN_DIRECTORY=C:/cygwin/bin ################################################################################ # Database Backup Configuration # Please use / instead of \ for directory location path values ################################################################################ # Database backup Local destination. Default is H:/oraback/lib5 DB_BACKUP_LOCATION=H:/oraback/lib5 ################ RSYNC SERVICE INSTALLATION & MODULE CONFIGURATION ################################################################## # Prerequisite - Please read Fully #----------------------------------- # 1) Main Manager & all Remote backup systems must install CYGWIN,RSYNC Service and RSYNC module configured. # # 2) DIVArchive Backup service uses the RSYNC module in CYGWIN, so CYGWIN installation is mandatory before installation RSYNC service. # 3) Please use DIVArchive Prerequisites package, DIVArchive Prerequisites package takes care of installing CYGWIN and RSYNC service # follow steps 2 to 4 on "RSYNC Service Installation & Module Configuration" below to add a new RSYNC module. # # 4) If DIVArchive Prerequisites package is not used, Please Install CYGWIN and make sure RSYNC package is is also installed during CYGWIN # Installation and follow steps 1 to 4 on "RSYNC Service Installation & Module Configuration" below. # RSYNC Service Installation & Module Configuration # ------------------------------------------------- # This configuration is mandatory for all Main Manager & Remote backup systems. # # 1) Run the following command to install RSYNC service if it is not already installed. # <CYGWIN_HOME>\bin\cygrunsrv -I rsyncd -d "RSYNC Daemon" --path /usr/bin/rsync --args '--config=/etc/rsyncd.conf --no-detach --daemon --quiet' -e CYGWIN='binmode tty nontsec' # 2) Open <CYGWIN_HOME>\etc\rsyncd.conf # 3) To add a new module add the following to rsyncd.conf # [Module Name] # path = <cygwin style path> # comment = <Description> # # Example: # [ORACLE_BACKUP] # path = /cygdrive/h/oraback # comment = Oracle backups # 4) Start RSYNC service from Windows service manager or execute <CYGWIN_HOME>\bin\cygrunsrv -S rsyncd ######################################################################################################################################## # Database remote backup destination, no defaults will be assumed. # # All remote destination must be rsync service module name followed by Folder name. Backups must not be copied to RSYNC module root. # Multiple destinations can be used, delimited by comma. Default is rsync://manager2/oraback/mgr1,rsync://actor3/oraback/mgr1 # # Syntax : rsync://<Backup System ipaddress or hostname>/RSYNC_modulename/Folder Name # #Example : rsync://172.16.3.203/ORACLE_BACKUP/Jan_2011/ #Example : rsync://172.16.3.203/ORACLE_BACKUP/Jan_2011/,rsync://172.16.3.204/ORACLE_BACKUP/Jan_2011/ DB_BACKUP_REMOTE_DESTINATIONS=rsync://manager2/oraback/mgr1,rsync://actor3/oraback/mgr1 ########################### FULL DATABASE BACKUP SETTINGS #################################################### # Start up time for full database backup. # FULL_BACKUP_START_HOUR_24 = Hour to start full database backup, valid range is 0 TO 23 , default value is 0 for midnight. # FULL_BACKUP_START_MINUTE = Minute to start full database backup, Valid range is 0 TO 59, default value is 0. # FULL_BACKUP_FREQUENCY_HOURS = Frequency to run full database backup in hours, default is 24 hours. #Example: # To set full backup frequency to every 6 hours. # FULL_BACKUP_FREQUENCY_HOURS=6 # To set full backup frequency to every 1 day and 5 hours. # FULL_BACKUP_FREQUENCY_HOURS=29 ############################################################################################################### FULL_BACKUP_START_HOUR_24=0 FULL_BACKUP_START_MINUTE=0 FULL_BACKUP_FREQUENCY_HOURS=24 ########################## DB INCREMENTAL BACKUP SETTINGS ##################################################### # Incremental database backups have no startup time and are started as soon as backup service starts. # INCREMENTAL_FREQUENCY_MINUTES = Frequency to run incremental database backups in minutes, default is 15 minutes. #Example: #To set incremental backup frequency to every 15 minutes. #INCREMENTAL_FREQUENCY_MINUTES=15 ################################################################################################################ INCREMENTAL_FREQUENCY_MINUTES=15 ############################### File Based Metadata Backup Configuration ################################################# # FBM_BACKUP_REMOTE_DESTINATIONS: FBM remote backup destination. All remote destination must be rsync service module name # followed by Folder name. Backups must not be copied to RSYNC module root. # Multiple destinations can be used, delimited by comma. # Default is rsync://manager2/oraback/fbm,rsync://actor3/oraback/fbm. # Syntax : rsync://<Backup System ipaddress or hostname>/RSYNC_modulename/Folder Name # # FBM_FREQUENCY_MINUTES = Frequency to run FBM backup in minutes, default is 15. # # Example: # To set FBM backup frequency to every 15 minutes. # FBM_FREQUENCY_MINUTES=15 # # To set FBM backup frequency to every 3 hours and 15 minutes. # FBM_FREQUENCY_MINUTES=195 # # Notes: Metadata database Must be enabled and Metadata database location must be configured from Configuration Utility. ########################################################################################################################## FBM_BACKUP_REMOTE_DESTINATIONS=rsync://manager2/oraback/fbm,rsync://actor3/oraback/fbm FBM_FREQUENCY_MINUTES=15 ################################ Recovery WINDOW & CLEANUP OBSOLETE BACKUP CONFIGURATION ################################### # # # DB_FBM_RECOVERY_WINDOW_DAYS = Database and FBM recovery Window. This parameter defined how days of oracle & FBM backup must be retained. # Value must be > 0, Default is 10. # # Start up time for backup cleanup. # CLEANUP_START_HOUR_24 = Hour to start backup cleanup, valid range is 0 TO 23 , default value is 2 in the morning. # CLEANUP_START_MINUTE = Minute to start backup cleanup, Valid range is 0 TO 59, default value is 0. # # Cleanup Frequency configures how frequently we want backup manager to check for old backups taken beyond the recovery window and delete them. # CLEANUP_FREQUENCY_HOURS = Frequency to run backup cleanup, default is 24. #Example: # # To set backup cleanup frequency to every 6 hours. # CLEANUP_FREQUENCY_HOURS=6 # # To set full cleanup frequency to every 1 day and 5 hours. # CLEANUP_FREQUENCY_HOURS=29 ######################################################################################################################## DB_FBM_RECOVERY_WINDOW_DAYS = 10 CLEANUP_START_HOUR_24=2 CLEANUP_START_MINUTE=00 CLEANUP_FREQUENCY_HOURS=24 ############################################ SERVER DISK STORAGE MONITORING ################################################## # MONITORED_DRIVES = User can mentione windows partion drives they want Backup service to monitior. Default is C: & H: # DISK_MIN_SPACE_THRESHOLD_PERCENT = Notification Threshold Percentage of available space of each drive accessible by server # DEFAULT VALUE IS 5 PERCENT # If available space on media is is reached warning notifications will be sent out. If available space is 20 percent below the threshold # an Error message will be sent out. ############################################################################################################################## MONITORED_DRIVES=C:,H: DISK_MIN_SPACE_THRESHOLD_PERCENT=5 #******************************************************************** # DIVArchive Backup Service Logging #******************************************************************** # Levels can be: DEBUG, INFO, WARN, ERROR, FATAL # The default value is INFO. LOGGING_ROOT_LEVEL=INFO LOGGING_TRACE_LEVEL=INFO LOGGING_SERVICE_LEVEL=INFO # File size should be specified using the convention: #KB|MB # The default value is 10MB. LOGGING_MAXFILESIZE=10MB # All files (trace, service and .zip) older than this will be removed # hours # The default value is 50. LOGGING_LIFETIME=50 ################################################################################ # DIVArchive Backup Service Options # # The following service parameters should not be changed without # the consent of FPD Support. ################################################################################ # Level can be: DEBUG, INFO, STATUS, ERROR, NONE # To include thread dumps, set to DEBUG or INFO(default) wrapper.logfile.loglevel=INFO # The maximum size to allow Wrapper log files to reach before # rolling. File size should be specified using the convention: #k|m wrapper.logfile.maxsize=1m # Mode in which the service is installed. AUTO_START starts the # service automatically when the system is rebooted. DEMAND_START # which requires that the service be started manually. wrapper.ntservice.starttype=AUTO_START # Time without CPU before JVM will issue warning and extend timeout # (in sec). Timeout will be extended by a few seconds at least once # before the service shuts down. #wrapper.cpu.timeout=30 # Number of seconds to allow between the time that the Wrapper # launches the JVM process and the time that the JVM side of the # Wrapper responds that the application has started. wrapper.startup.timeout=60 # Number of seconds to allow between the wrapper pinging the JVM # and the response wrapper.ping.timeout=60 # Number of seconds to allow between the time that the Wrapper asks # the JVM to shutdown and the time that the JVM side of the Wrapper # responds that it is stopping. wrapper.shutdown.timeout=60 # Java Library Path (Add location of OCI driver ex: ocijdbc11.dll if using DIVAMANAGER_TNSNAME. # Ex: wrapper.java.library.path=.;C:\app\oracle\product\11.1.0)wrapper.java.library.path=. # License Key for Java Service Wrapper #encoding=UTF-8 wrapper.license.type=DEV wrapper.license.id=201603080000006 wrapper.license.licensee=Oracle America, Inc. wrapper.license.group=Oracle DIVArchive wrapper.license.dev_application=DIVArchive Database Backup Service wrapper.license.features=pro, 64bit wrapper.license.upgrade_term.begin_date=2013-01-18 wrapper.license.upgrade_term.end_date=2017-01-18 wrapper.license.key.1=64c2-004c-65c3-d82c wrapper.license.key.2=b684-4d62-fd87-c7b3 wrapper.license.key.3=6029-7fef-53c4-535b wrapper.license.key.4=0117-6de0-03b2-4d0f ################################################################### CRITICAL INFORMATION ##################################################################################### # PLEASE DO NOT MODIFY ANY OF THE BELOW PARAMETERS. ############################################################################################################################################################################## FULL_BACKUP_COMMAND=%SCRIPT_FILES_DIRECTORY%full_backup %DIVAMANAGER_DBSID% %DB_BACKUP_LOCATION% -syspwd=%DIVAMANAGER_DB_SYS_PASSWORD%@%DIVAMANAGER_DBHOST%:%DIVAMANAGER_DBPORT%/%DIVAMANAGER_DBSERVICENAME% INCREMENTAL_COMMAND=%SCRIPT_FILES_DIRECTORY%arch_backup %DIVAMANAGER_DBSID% %DB_BACKUP_LOCATION% -syspwd=%DIVAMANAGER_DB_SYS_PASSWORD%@%DIVAMANAGER_DBHOST%:%DIVAMANAGER_DBPORT%/%DIVAMANAGER_DBSERVICENAME%,rsync --delete -av --include *.gz --include *.md5 --exclude=*.gz* --exclude=*.md5* --exclude=*.BCK --exclude FAILED %DB_BACKUP_LOCATION% %DB_BACKUP_REMOTE_DESTINATIONS% CLEANUP_COMMAND=%SCRIPT_FILES_DIRECTORY%delete_backup_obsolete %DIVAMANAGER_DBSID% %DB_BACKUP_LOCATION% -syspwd=%DIVAMANAGER_DB_SYS_PASSWORD%@%DIVAMANAGER_DBHOST%:%DIVAMANAGER_DBPORT%/%DIVAMANAGER_DBSERVICENAME% -keep=%DB_FBM_RECOVERY_WINDOW_DAYS% ###############################################################################################################################################################################
# ----------------------------------------- # DIVArchive Backup Service Configuration File # ----------------------------------------- # # Syntax: # # [SET |set ]property_name=property_value # If the first word is "SET", it is ignored but the rest of the line is read. # Every space is significant. Do not put extra spaces before or after property # names or values. # # Lines beginning with "#" or that do not contain an equal sign are ignored. #**************************************************************************************************** # DIVArchive Backup Basic Settings #**************************************************************************************************** #**************************************IMPORTANT****************************************************** # Please use DIVArchive database installation package for installing Oracle. #***************************************************************************************************** # DIVArchive Backup service name # This variable can be used to specify the name of the service. # If this variable is used, the service name will be "DIVArchive Backup - this variable". # Default: If this variable is not used, the service name will be "DIVArchive Backup". #SERVICE_NAME= # DIVArchive Backup service port # This will be the port number on which Backup service will be listening. # Default port is 9300. SERVICE_PORT=9300 ################################################################################ # MANAGER: Parameters for DIVArchive Manager ################################################################################ # The ip address and port of DIVArchive Manager # Address default is "localhost". Port valid range is 1..65535. Default is 9000. DIVAMANAGER_HOST=localhost DIVAMANAGER_PORT=9000 ###################################################################################################### # Connection parameters for the database - Use same Database and user DIVArchive Manager is connected ###################################################################################################### # NB! For the following "Database" parameters no defaults will be assumed! DIVAMANAGER_DBHOST=localhost DIVAMANAGER_DBPORT=1521 DIVAMANAGER_DBUSER=diva #Database Instance identifiers DIVAMANAGER_DBSERVICENAME & DIVAMANAGER_DBSID must be set. DIVAMANAGER_DBSERVICENAME=lib5.world DIVAMANAGER_DBSID=lib5 ###################################################################################################### # BACKUP SERVICES ###################################################################################################### #This parameter is used enable/disable Oracle database backups to be managed by Backup Service. If set to 'N' Backup Service # won't backup Oracle database. Default is 'Y'. BACKUP_SERVICE_MANAGE_DATABASE_BACKUPS=Y # This parameter is used enable/disable Metadata database backups to be managed by Backup Service. If set to 'N' Backup Service # won't backup Metadata database. Default is 'N'. # # If this parameter is set to 'Y' and metedata database path is not configured or invalid and Metadata database is not enabled under # Manager setting panle on Control GUI, Backup Service will fail to start. BACKUP_SERVICE_MANAGE_METADATA_BACKUPS=N ################################################################################ # Backup Scripts & Cygwin location # Please use / instead of \ for directory location path values ################################################################################ # Database Backup Script Location, The scripts are normally installed at <DIVArchive_HOME>/programs/DBBackup/rman/bin during # DIVArchive Installtion. Default is ../rman/bin # If relative path is used, the start point must be from <DIVArchive_HOME>/programs/DBBackup/bin. SCRIPT_FILES_DIRECTORY=../rman/bin ################################################################################ # Database Backup Configuration ################################################################################ # Database backup Local destination. Default is /u04/oraback/lib5 DB_BACKUP_LOCATION=/u04/oraback/lib5 ################ RSYNC SERVICE INSTALLATION & MODULE CONFIGURATION ################################################################## # Prerequisite - Please read Fully #----------------------------------- # 1) Main Manager & all Remote backup systems must RSYNC Service and RSYNC module configured. # # 2) DIVArchive Backup service uses the RSYNC service. # 3) Please use DIVArchive Prerequisites package, DIVArchive Prerequisites package takes care of installing CYGWIN and RSYNC service # follow steps 2 to 4 on "RSYNC Service Installation & Module Configuration" below to add a new RSYNC module. # # 4) If DIVArchive Prerequisites package is not used, Please Install CYGWIN and make sure RSYNC package is is also installed during CYGWIN # Installation and follow steps 1 to 4 on "RSYNC Service Installation & Module Configuration" below. # RSYNC Service Module Configuration # ------------------------------------------------- # This configuration is mandatory for all Main Manager & Remote backup systems. # # 2) Open /etc/rsyncd.conf # 3) To add a new module add the following to rsyncd.conf # [Module Name] # path = <cygwin style path> # comment = <Description> # # Example: # [ORACLE_BACKUP] # path = /u04/oraback # comment = Oracle backups # 4) Start RSYNC service from Windows service manager or execute <CYGWIN_HOME>\bin\cygrunsrv -S rsyncd ######################################################################################################################################## # Database remote backup destination, no defaults will be assumed. # # All remote destination must be rsync service module name followed by Folder name. Backups must not be copied to RSYNC module root. # Multiple destinations can be used, delimited by comma. Default is rsync://manager2/oraback/mgr1,rsync://actor3/oraback/mgr1 # # Syntax : rsync://<Backup System ipaddress or hostname>/RSYNC_modulename/Folder Name # #Example : rsync://172.16.3.203/ORACLE_BACKUP/Jan_2011/ #Example : rsync://172.16.3.203/ORACLE_BACKUP/Jan_2011/,rsync://172.16.3.204/ORACLE_BACKUP/Jan_2011/ DB_BACKUP_REMOTE_DESTINATIONS=rsync://manager2/oraback/mgr1,rsync://actor3/oraback/mgr1 ########################### FULL DATABASE BACKUP SETTINGS #################################################### # Start up time for full database backup. # FULL_BACKUP_START_HOUR_24 = Hour to start full database backup, valid range is 0 TO 23 , default value is 0 for midnight. # FULL_BACKUP_START_MINUTE = Minute to start full database backup, Valid range is 0 TO 59, default value is 0. # FULL_BACKUP_FREQUENCY_HOURS = Frequency to run full database backup in hours, default is 24 hours. #Example: # To set full backup frequency to every 6 hours. # FULL_BACKUP_FREQUENCY_HOURS=6 # To set full backup frequency to every 1 day and 5 hours. # FULL_BACKUP_FREQUENCY_HOURS=29 ###################################################################### FULL_BACKUP_START_HOUR_24=0 FULL_BACKUP_START_MINUTE=0 FULL_BACKUP_FREQUENCY_HOURS=24 ########################## DB INCREMENTAL BACKUP SETTINGS ##################################################### # Incremental database backups have no startup time and are started as soon as backup service starts. # INCREMENTAL_FREQUENCY_MINUTES = Frequency to run incremental database backups in minutes, default is 15 minutes. #Example: #To set incremental backup frequency to every 15 minutes. #INCREMENTAL_FREQUENCY_MINUTES=15 ################################################################################################################ INCREMENTAL_FREQUENCY_MINUTES=15 ############################### File Based Metadata Backup Configuration ################################################# # FBM_BACKUP_REMOTE_DESTINATIONS: FBM remote backup destination. All remote destination must be rsync service module name # followed by Folder name. Backups must not be copied to RSYNC module root. # Multiple destinations can be used, delimited by comma. # Default is rsync://manager2/oraback/fbm,rsync://actor3/oraback/fbm. # Syntax : rsync://<Backup System ipaddress or hostname>/RSYNC_modulename/Folder Name # # FBM_FREQUENCY_MINUTES = Frequency to run FBM backup in minutes, default is 15. # # Example: # To set FBM backup frequency to every 15 minutes. # FBM_FREQUENCY_MINUTES=15 # # To set FBM backup frequency to every 3 hours and 15 minutes. # FBM_FREQUENCY_MINUTES=195 # # Notes: Metadata database Must be enabled and Metadata database location must be configured from Configuration Utility. ########################################################################################################################## FBM_BACKUP_REMOTE_DESTINATIONS=rsync://manager2/oraback/fbm,rsync://actor3/oraback/fbm FBM_FREQUENCY_MINUTES=15 ################################ Recovery WINDOW & CLEANUP OBSOLETE BACKUP CONFIGURATION ################################### # # # DB_FBM_RECOVERY_WINDOW_DAYS = Database and FBM recovery Window. This parameter defined how days of oracle & FBM backup must be retained. # Value must be > 0, Default is 10. # # Start up time for backup cleanup. # CLEANUP_START_HOUR_24 = Hour to start backup cleanup, valid range is 0 TO 23 , default value is 2 in the morning. # CLEANUP_START_MINUTE = Minute to start backup cleanup, Valid range is 0 TO 59, default value is 0. # # Cleanup Frequency configures how frequently we want backup manager to check for old backups taken beyond the recovery window and delete them. # CLEANUP_FREQUENCY_HOURS = Frequency to run backup cleanup, default is 24. #Example: # # To set backup cleanup frequency to every 6 hours. # CLEANUP_FREQUENCY_HOURS=6 # # To set full cleanup frequency to every 1 day and 5 hours. # CLEANUP_FREQUENCY_HOURS=29 ######################################################################################################################## DB_FBM_RECOVERY_WINDOW_DAYS = 10 CLEANUP_START_HOUR_24=2 CLEANUP_START_MINUTE=00 CLEANUP_FREQUENCY_HOURS=24 ############################################ SERVER DISK STORAGE MONITORING ################################################## # MONITORED_DRIVES = User can mentione mounted drives they want Backup service to monitior. Default is /u04 & /u05 # DISK_MIN_SPACE_THRESHOLD_PERCENT = Notification Threshold Percentage of available space of each drive accessible by server # DEFAULT VALUE IS 5 PERCENT # If available space on media is is reached warning notifications will be sent out. If available space is 20 percent below the threshold # an Error message will be sent out. ############################################################################################################################## MONITORED_DRIVES=/u04,/u05 DISK_MIN_SPACE_THRESHOLD_PERCENT=5 #******************************************************************** # DIVArchive Backup Service Logging #******************************************************************** # Levels can be: DEBUG, INFO, WARN, ERROR, FATAL # The default value is INFO. LOGGING_ROOT_LEVEL=INFO LOGGING_TRACE_LEVEL=INFO LOGGING_SERVICE_LEVEL=INFO # File size should be specified using the convention: #KB|MB # The default value is 10MB. LOGGING_MAXFILESIZE=10MB # All files (trace, service and .zip) older than this will be removed hours # The default value is 50. LOGGING_LIFETIME=50 ################################################################################ # DIVArchive Backup Service Options # # The following service parameters should not be changed without # the consent of FPD Support. ################################################################################ # Level can be: DEBUG, INFO, STATUS, ERROR, NONE # To include thread dumps, set to DEBUG or INFO(default) wrapper.logfile.loglevel=INFO # The maximum size to allow Wrapper log files to reach before # rolling. File size should be specified using the convention: #k|m wrapper.logfile.maxsize=1m # Mode in which the service is installed. AUTO_START starts the # service automatically when the system is rebooted. DEMAND_START # which requires that the service be started manually. wrapper.ntservice.starttype=AUTO_START # Time without CPU before JVM will issue warning and extend timeout # (in sec). Timeout will be extended by a few seconds at least once # before the service shuts down. #wrapper.cpu.timeout=30 # Number of seconds to allow between the time that the Wrapper # launches the JVM process and the time that the JVM side of the # Wrapper responds that the application has started. wrapper.startup.timeout=60 # Number of seconds to allow between the wrapper pinging the JVM # and the response wrapper.ping.timeout=60 # Number of seconds to allow between the time that the Wrapper asks # the JVM to shutdown and the time that the JVM side of the Wrapper # responds that it is stopping. wrapper.shutdown.timeout=60 # Java Library Path (Add location of OCI driver ex: ocijdbc11.dll if using DIVAMANAGER_TNSNAME. # Ex: wrapper.java.library.path=.) wrapper.java.library.path=. # License Key for Java Service Wrapper #encoding=UTF-8 wrapper.license.type=DEV wrapper.license.id=201603080000006 wrapper.license.licensee=Oracle America, Inc. wrapper.license.group=Oracle DIVArchive wrapper.license.dev_application=DIVArchive Database Backup Service wrapper.license.features=pro, 64bit wrapper.license.upgrade_term.begin_date=2013-01-18 wrapper.license.upgrade_term.end_date=2017-01-18 wrapper.license.key.1=64c2-004c-65c3-d82c wrapper.license.key.2=b684-4d62-fd87-c7b3 wrapper.license.key.3=6029-7fef-53c4-535b wrapper.license.key.4=0117-6de0-03b2-4d0f ################################################################### CRITICAL INFORMATION ##################################################################################### # PLEASE DO NOT MODIFY ANY OF THE BELOW PARAMETERS. ############################################################################################################################################################################## FULL_BACKUP_COMMAND=%SCRIPT_FILES_DIRECTORY%full_backup %DIVAMANAGER_DBSID% %DB_BACKUP_LOCATION% -syspwd=%DIVAMANAGER_DB_SYS_PASSWORD%@%DIVAMANAGER_DBHOST%:%DIVAMANAGER_DBPORT%/%DIVAMANAGER_DBSERVICENAME% INCREMENTAL_COMMAND=%SCRIPT_FILES_DIRECTORY%arch_backup %DIVAMANAGER_DBSID% %DB_BACKUP_LOCATION% -syspwd=%DIVAMANAGER_DB_SYS_PASSWORD%@%DIVAMANAGER_DBHOST%:%DIVAMANAGER_DBPORT%/%DIVAMANAGER_DBSERVICENAME%,rsync --delete -av --include *.gz --include *.md5 --exclude=*.gz* --exclude=*.md5* --exclude=*.BCK --exclude FAILED %DB_BACKUP_LOCATION% %DB_BACKUP_REMOTE_DESTINATIONS% CLEANUP_COMMAND=%SCRIPT_FILES_DIRECTORY%delete_backup_obsolete %DIVAMANAGER_DBSID% %DB_BACKUP_LOCATION% -syspwd=%DIVAMANAGER_DB_SYS_PASSWORD%@%DIVAMANAGER_DBHOST%:%DIVAMANAGER_DBPORT%/%DIVAMANAGER_DBSERVICENAME% -keep=%DB_FBM_RECOVERY_WINDOW_DAYS% ######################################################################