After this first manual backup, all other backups will run automatically, according to the backup schedule you set up. Note that some types of backups have special requirements that must be set up before a backup can take place. These requirements are listed below.
Reliable LifeSaver Manager must be installed onto the computer that can connect to your Oracle 10g server using TCP/IP protocol.
Data from Oracle 10g database will be backed up to a temporary directory before they are sent to the Reliable Data Protection Backup Server. Please make sure you have sufficient space on your computer to store the data when you run the backup job.
Database must be in archived log mode
LOG_ARCHIVE_DEST = [directory where archive redo logs will be stored]
LOG_ARCHIVE_FORMAT = ‘log%t_%s_%r.arc’
LOG_ARCHIVE_START = TRUE
export ORACLE_SID=GDB1 (assuming your database’s SID is GDB1)
Run SQL Plus and connect to database as SYSDBA
For Oracle 9i/10g
sqlplus “/ as sysdba”
For Oracle 8i
connect internal ;
shutdown immediate
startup mount;
Salter database archivelog;
alter database open;
Enable Oracle JVM for Oracle 8i/9i, please do the following
java_pool_size = 20971520
shared_pool_size = 52428800
For Oracle 8i
SVRMGRL> connect internal
SVRMGRL> @?/javavm/install/initjvm.sql;
SVRMGRL> @?/rdbms/admin/catalog.sql;
SVRMGRL> @?/rdbms/admin/catproc.sql;
SVRMGRL> @?/javavm/install/initdbj.sql;
For Oracle 9i
SQL> connect sys/change_on_install as sysdba
SQL> @?/javavm/instal/initjvm.sql;
SQL> @?/xdk/admin/initxml.sql;
SQL> @?/xdk/admin/xmlja.sql;
SQL> @?/rdbms/admin/catjava.sql;
For Oracle 10g
Oracle JVM is enabled by default. No additional steps required
For Oracle 8i:
SVRMGRL> connect internal
SVRMGRL> @?/javavm/install/initjvm.sql;
SVRMGRL> @?/rdbms/admin/catalog.sql;
SVRMGRL> @?/rdbms/admin/catproc.sql;
SVRMGRL> @?/javavm/install/initdbj.sql;
SQL> grant javasyspriv to system;
space on your computer to store these data when you run the backup job. - If you wish to perform a differential or transaction log backup, make sure that the recovery model is FULL.
| Field | Enter |
|---|---|
| Transactional Logging | Choose Enabled. The default is Disabled |
| Log path | Path name location of the transaction log. The default path name is LOGDIR in the Domino data directory, although it is strongly recommended to store the log on a separate, mirrored device, such as a RAID (Redundant Array of Independent Disks) level 0 or 1 device with a dedicated controller. The separate device should have at least 1GB of disk space for the transaction log. If you are using the device solely for storing the transaction log, set the “Use all available log device” field to Yes. |
| Maximum log space | The maximum size, in MB, for the transaction log. Default is 192MB. Maximum is 4096MB (4GB). Domino formats at least 3 and up to 64 log files, depending on the maximum log space you allocate. |
| Use all available space on log device | Choose one:
|
| Automatic fixup of corrupt databases | Choose one:
|
| Runtime / Restart performance | This field controls how often Domino records a recovery checkpoint in the transaction log, which affects server
performance. To record a recovery checkpoint, Domino evaluates each active logged database to determine how many transaction would be necessary to recover each database after
a system failure. When Domino completes this evaluation, it:
|
| Logging Style | Choose Archive. The default is Circular |
Note: You can only run transaction log backup if you have transaction logging enabled and you are using archive mode. You will be unable to run transaction log backup if you have transaction logging enabled not in archive mode, or if transaction logging is not enabled at all. If you try to issue the command, you will receive an error message.
computer to store the temporary file when you run the backup job.
For one specific mailbox
Use the following procedure to grant access to an Exchange 2000 or an Exchange 2003 mailbox:
For mailboxes located within a specific mailbox store
Use the following procedure to grant access to an Exchange 2000 or an Exchange 2003 mailbox found on a specific mailbox store:
For mailboxes located within a specific server
Reliable Data Protection Backup Manual must be installed onto the computer running MySQL server.
Data from MySQL server will be backed up to a temporary directory before they are sent to the Reliable Data Protection Backup Server. Please make sure you have sufficient space on your computer to store the data when you run the backup job.
There must be a MySQL account which can be used to connect from localhost.
Add two new MySQL accounts for the Backup Manager
mysql> GRANT ALL PRIVILEGES ON ∗.∗ TO ‘root’@’localhost’
-> IDENTIFIED BY ‘some_pass’;
mysql> GRANT ALL PRIVILEGES ON ∗.∗ TO ‘root’@’localhost.localdomain’
-> IDENTIFIED BY ‘some_pass’;
mysql> FLUSH PRIVILEGES;
They are superuser accounts with full privileges to do anything with a password of some_pass.