Oracle11i

Version as of 01:07, 20 May 2024

to this version.

Return to Version archive.

View current version


Oracle Backup

When Amanda is configured and licensed for Oracle backup, Amanda uses Oracle's RMAN and native OS tools to back up Oracle data files, control files, and archive logs.

Preparing the Oracle Server for Backup and Restore

These instructions assume you have already installed and licensed the Amanda server and the Oracle server being backed up as described here. There are a number of additional steps:

  1. Make sure that the version of RMAN running matches the version of the Oracle server being backed up.
  2. On the client you must manually add entries to /etc/amanda/amanda-client.conf that define the Oracle SIDs being backed up, as well as the "SID List" that will be used to select the databases in the ZMC Backup What page. The syntax for entries is as follows:
property "SID_list_name-BACKUP-DIRECTORY" "Backup_path_on_client"
property "SID_list_name-ORACLE-SIDS" "SID_1" "[SID_2" ...]
property "SID-ORACLE-HOME" "Oracle_Home_Directory_for_SID"
property "SID-ORACLE-PATH" "Oracle_Path_for_SID"
property "SID-ORACLE-CONNECT-STRING" "Connect_string_for_SID"
The following describes the variable portions of the entries:
SID_list_name
When you select Linux-Oracle as the Backup Type from the Backup What page, you are prompted to enter an SID List Name rather than a Disk. The amanda-client.conf entries described here allow you to define which SIDs belong to that list and how they will be backed up.
Backup_path_on_client
Specify where to store the backup image on the client. Backup images are removed after transfer to the Amanda server. This directory requires sufficient space to hold a full backup of all SIDs selected for backup. The default location is /var/lib/amanda.
SID
The Oracle System Identifier is used to specify which databases to back up.
Oracle_Home_Directory_for_SID
Specify the home directory for the database to back up.
Oracle_Path_for_SID
The path to Oracle binaries for the SID being backed up.
Connect_string_for_SID
The connection string to access the SID being backed up, in the standard Oracle connect string format. For example (some of the parameters shown are optional; others are omitted):
  user_name/password_of_target_database@target_database_host_name:port_#/service_name
The following example defines an SID list named Oracle, which includes SIDs orcl and zmanda. The local temporary directory to store backup images for the SIDs is /tmp/zmanda. Note that SID orclsol will not be selected for backup because it is not defined in the SID list:
property "oracle-BACKUP-DIRECTORY" "/tmp/zmanda"
property "oracle-ORACLE-SIDS" "orcl" "zmanda"
property "orcl-ORACLE-HOME" "/home/oracle/app/oracle/product/11.1.0/db_1"
property "orcl-ORACLE-PATH" "/home/oracle/app/oracle/product/11.1.0/db_1/bin"
property "orcl-ORACLE-CONNECT-STRING" "SYS/fakepw!@orcl"
property "orclsol-ORACLE-HOME" "/orclhome"
property "orclsol-ORACLE-PATH" "/orclhome/bin"
property "orclsol-ORACLE-CONNECT-STRING" "SYS/fakepw!@orclsol"
property "zmanda-ORACLE-HOME" "/home/oracle/app/oracle/product/11.1.0/db_3"
property "zmanda-ORACLE-PATH" "/home/oracle/app/oracle/product/11.1.0/db_3/bin"
property "zmanda-ORACLE-CONNECT-STRING" "SYS/fakepw!@zmanda"
  • All Oracle databases selected for backup must be mounted and open. For restore, the databases should be mounted but closed.
  • The backup directory specified on the Amanda client machine's amanda-client.conf file must have sufficient space to store the backup images.
  • The Oracle user (the OS user through which Oracle is run) must be the owner of the client backup directory (the backup_path_on_client defined above).

    The Oracle user's Group should have read/write permissions on this backup directory, and the amandabackup user on the client OS should belong to the same group. For example, If Oracle run by user oracle user and default group of the oracle user is oinstall, then the amandabackup user should be a member of the oinstall group. To ensure this, follow these steps (substituting your local oracle GID for oinstall if necessary):


    1. Login to the Oracle server as root and type the following command:

   # id oracle    uid=501(oracle) gid=501(oinstall) groups=501(oinstall),502(dba)

2. Determine the gid, and modify group membership for the amandabackup user:

   # usermod -G oinstall amandabackup

3. Confirm that the change was made correctly:

# id amandabackup    uid=502(amandabackup) gid=6(disk) groups=6(disk),501(oinstall)

 

 

Configuring Oracle Backups from the ZMC Backup What Page

After you have prepared the client by editing the amanda-client.conf file as described above, you can use the ZMC to schedule Oracle backups. On the Backup What page you are prompted to select what type of object you want to back up. Choose Linux Oracle or Solaris Oracle, and the following options are displayed:

Linux/Solaris Oracle Backup What Options

Host Name
The name of the machine running the Oracle database server you intend to back up.
SID List Name
The SID List Name for the group of SIDs being backed up. This is defined in the amanda-client.conf file as described in the section above.
Compression
Check the box to compress backup images before transfer to the Amanda backup server.

After you have set the options, click Add to add the Oracle server to the backup set. Click Apply to server to commit the changes; you can then configure the backup set just as you would any other by setting the options on Backup Where, Backup How, and Backup When, etc.

Performing Oracle Restores using the Zmanda Management Console and RMAN

Restoration involves two main steps:

  1. Use the Zmanda Management Console to restore the files to a directory you create on the client machine for that purpose.
  2. Use the Oracle RMAN utility to apply the restored backup to the Oracle server.

Using the ZMC to restore to a directory on the client

  1. Log on to the client machine where the Oracle databases are being restored. Create a directory on a filesystem that has sufficient space to store the restored files.
  2. In the newly-created directory, use the ZMC Restore pages to restore the Oracle backup, specifying the directory you created in the previous step as the Destination Directory on the Restore Where page.

Using RMAN to complete the restore

Before running RMAN, you may want to read "Using RMAN for Restores" from the Oracle documentation.

Start RMAN for all the databases being restored. These databases should be mounted but closed. Execute RMAN RESTORE commands to restore from the directory created above. Execute the RMAN RECOVER command after the RESTORE is successful. When you are done, you can delete the directory you created for the amrecover restore.