Oraasfsa
Oraasfsa
Oraasfsa
Table of Contents
Overview
System Requirements - Oracle iDataAgent
Installation
Install the Oracle iDataAgent - Windows
Install the Oracle iDataAgent - Windows - Clustered Environment - Virtual Server
Install the Oracle iDataAgent - Unix
Install the Oracle iDataAgent - Unix - Clustered Environment
Backup Data - Oracle iDataAgent
Restore Data - Oracle iDataAgent
Configuration
Instances - Oracle iDataAgent
Subclients - Oracle iDataAgent
Management
Backup Job History
Restore Job History
Troubleshooting
Backup - Oracle or Oracle RAC Troubleshooting
Restore Data - Oracle or Oracle RAC Troubleshooting
Features - Oracle iDataAgent
Page 1 of 199
Overview - Oracle iDataAgent
Choose from the following topics:
Introduction
Supported Data Types
Tree Levels in the Oracle iDataAgent
License Requirement
Databases, Instances and Subclients
Securing Oracle Application Data Using the File System iDataAgent
Third-Party Command Line
Performance Tuning
Ensuring Successful Oracle Data Protection and Recovery Operations
Disaster Recovery Considerations
Related Topics:
Running RMAN Scripts using the Command Line Interface
Introduction
The Oracle database is comprised of several objects. These objects can be backed up by the Oracle
iDataAgent. For more information on the Oracle objects, refer to your Oracle documentation.
Back to Top
Supported Data Types
Data Protection Operations for the following data types are supported by the Oracle iDataAgent:
Oracle database files, which include data files (*.dbf) and control files (*.ctl)
Archived redo logs
Data Protection Operations for all other data types not mentioned in the above list are not supported by
the Oracle iDataAgent, including:
Oracle application files (can be secured by the appropriate File System iDataAgent)
Back to Top
Tree Levels in the Oracle iDataAgent
When the Oracle iDataAgent is installed, the following levels are automatically created in the CommCell
Browser.
Features - Oracle iDataAgent
Page 2 of 199
Back to Top
License Requirement
To perform a data protection operation using this Agent a specific Product License must be available in
the CommServe
Server.
Review general license requirements included in License Administration. Also, View All Licenses provides
step-by-step instructions on how to view the license information.
Back to Top
Databases, Instances and Subclients
During installation, the Oracle iDataAgent software establishes the Oracle iDataAgent. Before you backup
data, you must however, define the data that you want to back up, and how this data should be backed
up. Consider the following:
Databases and Instances are similar for the Oracle iDataAgent. This means that for each database that
you want to back up, you must create an Instance for it.
Initially, the system creates a default subclient for each Oracle Instance that you create. You can
create one or more subclients for each instance, depending on the backup strategy that you devise to
meet the backup needs of your system.
To determine the best strategy, you should ask the following questions:
What is the available backup window?
Should the database be accessible while the backup is running?
What are the time constraints for recovering the database?
If your Oracle database is in the NOARCHIVELOG mode, you must backup the database offline. For an
online backup of the database, it must be in ARCHIVELOG mode. If the database must be accessible, and
you have a small backup window, you may want to run a series of online backups in which different
portions of the database are backed up at different times. You may also want to combine all of these
bootes: Client
Oracle: Agent
<user_defined_instance>: Instance
In order to run the first backup, instances must be added. Each instance
creates a default subclient.
Features - Oracle iDataAgent
Page 3 of 199
backup types in your backup strategy. Once you have determined your backup needs you can define your
backup strategy by creating one or more subclients for the database. To perform this task effectively, you
need to understand the key aspects of the CommCell architecture, most notably:
Instances
Subclients
Storage Policies
If at some later time you decide to change the way a client computer is backed up, you can always
change the CommCell configuration, in whole or in part. You may also add new databases to be secured
by the system, or remove databases currently secured.
See also: Establishing Parallel Data Protection Operations Using Subclients
Moving Instances
Oracle instances can be moved from one client computer to another within a CommCell. See Moving an
Oracle Instance for more information.
Back to Top
Securing Oracle Application Data Using the File System iDataAgent
In addition to the Oracle database, there may be Oracle application files stored on the computer (that is,
the Oracle client). Such data is not backed up by the Oracle iDataAgent. To secure such data from an
Oracle client, you must back it up using the appropriate iDataAgent for the computers file system.
Back to Top
Third-Party Command Line
The Oracle iDataAgent supports the ability to perform backups and restores across clients from the RMAN
Command Line. For more information, see Third-Party Command Line Operations.
Back to Top
Performance Tuning
Performance tuning parameters are a valuable tool for the recovery administrator to increase efficiency of
backup and restore operations by avoiding throughput bottlenecks. The performance of Oracle backup
and restore operations can be optimized through the appropriate configuration of RMAN parameter
options provided in the Subclient Properties dialog box. A brief description of certain key performance
tuning parameters and their recommended uses is provided below.
Data Files per BFS
The Data Files per BFS parameter defines the number of datafiles to be bundled in each RMAN backupset,
for datafile backups. It is often used in conjunction with the Max Open Files parameter to establish the
proper RMAN multiplexing factor for disk buffer allocation. For example, assume that you are backing up
six datafiles with one RMAN channel. If FILESPERSET=6 and MAXOPENFILES=1, then the channel
includes 6 datafiles in a backupset but does not multiplex the files because RMAN is not reading from
more than one file simultaneously. The channel reads one file at a time and writes to the backup piece. In
this case, the level of multiplexing is 1 and would result in relatively slower backups because of the
throughput bottleneck. Ideally, the MAXOPENFILES parameter should be set in such a way that the
number of files read simultaneously is just enough to utilize the output device fully. In this example, if
FILESPERSET=6 and MAXOPENFILES=3, the level of multiplexing is 2 and would result in a quicker more
efficient backup, especially when the output device is tape, by allowing RMAN to provide the proper disk
buffer allocation. However, keep in mind that multiplexing too many files can decrease restore
performance depending on the hardware configuration.
Features - Oracle iDataAgent
Page 4 of 199
Archive Files per BFS
The Archive Files per BFS parameter defines the number of archive files to be bundled in each RMAN
backupset, for archive log backups. Its use is similar to the Data Files per BFS parameter discussed
above.
Max Backupset Size (KB)
The Max Backupset Size parameter defines the maximum allowable size for an RMAN backupset. It can
be used to adjust performance for either partial restore or whole database restores. The proper setting
depends on whether faster whole database restores or partial restores are required. A smaller
MAXBACKUPSETSIZE will result in faster partial restores, however, whole database restores will be
slower. A larger MAXBACKUPSETSIZE will result in faster whole database restores, but may not be
optimal for partial restores. It is generally recommended that you avoid entering too small a value for
this setting, which should be at least 2000 KB. The exception is the default value of 0, which means
unlimited.
Max Open Files
The Max Open Files parameter defines the maximum number of concurrent open datafiles that RMAN can
read from simultaneously during a backup operation. A smaller MAXOPENFILES setting results in faster
performance on most systems. However, it should be used in conjunction with the Data Files per BFS or
Archive Files per BFS parameters to achieve the most efficient RMAN multiplexing level for optimizing disk
buffer allocation. The goal is to set the number of files read simultaneously to fully utilize the output
device. See Data Files per BFS above for a discussion of how these parameters work together. Keep in
mind that the default value for this parameter is 8.
See Configure Backup Arguments for step-by-step instructions. See also publications from Oracle
Corporation on the topic of RMAN performance tuning for a more complete understanding of this subject.
Disk Ratio
Disk ratio enables RMAN to read data files across disks and group them in a backup set. For example,
consider data files distributed across 10 disks that supply data at 10 bytes/second and a tape drive that
needs 40 bytes/second to keep streaming. In this case, you can set the disk ratio value to 4, which will
direct RMAN to include data files from 4 disks in each backup set. Disk ratio groups the data files into
backup sets and distributes the backup load across disks. Even though disk ratio facilitates backup
performance, you should keep in mind that more the number of disks from which data files are grouped,
slower will be the restore performance. Hence, make sure that a minimum possible value is set for disk
ratio.
Back to Top
Ensuring Successful Oracle Data Protection and Recovery Operations
The Oracle iDataAgent provides the ability to preview backup and restore scripts as well as validate the
database, prior to actually running a data protection or recovery operation, to help ensure that Oracle
backups and restores will run smoothly. Descriptions of these features are provided below.
Script Preview
You can preview the backup and restore scripts that will be submitted to RMAN to back up or restore data
on a client. Previewing the script before running a backup or restore is useful for identifying whether the
selected backup or restore options will yield the desired result in the script. The script text can be
previewed from the Backup Options and Restore Options dialogs, and provides the capability for you to
copy the text from the display window for manual submission in RMAN, if desired.
See Preview a Script for step-by-step instructions.
Validate
Features - Oracle iDataAgent
Page 5 of 199
You can run a validate job to ensure the integrity of the data and availability of the media before actually
running a backup or restore job. When the validate option is selected on the Subclient Properties (Backup
Arguments) tab or Advanced Restore Options (Options) tab, this will cause the system to simulate either
a backup or restore job without using any media or over-writing the Oracle database. After the validate
job completes, you can view the log file for the job to identify and correct any validation issues prior to
running the backup or restore.
For step-by-step instructions, see Validate a Backup or Restore.
Back to Top
Disaster Recovery Considerations
Before you use your agent, be sure to review and understand the associated full system restore (or
disaster recovery) procedure. The procedure for some agents may require that you plan specific
actions or consider certain items before an emergency occurs. See Disaster Recovery for more
information regarding your agent.
Consider the following when you are planning for a full system restore of the Oracle database in the
event of a destroyed or damaged client:
For Oracle on any platforms, we recommend that you perform the following configuration steps in the
Oracle client:
1. Exclude the Oracle database files from your file system backup. You can do this by establishing a
backup filter for .dbf files in the appropriate file system subclient(s).
2. Ensure that the recovery catalog is available on a separate machine. If the recovery catalog is on
the same machine, we recommend that you take the following actions:
a. Export the user, who is the owner of the recovery catalog using the Oracle export command
to an external flat file.
b. Ensure that this external flat file is included in your file system backup.
c. Ensure that your file system data is backed up regularly.
3. Select the Resync Catalog option in the Subclient Properties (Backup Arguments) tab of the
subclient used for backing up the entire database.
Back to Top
Features - Oracle iDataAgent
Page 6 of 199
System Requirements - Oracle iDataAgent
The following requirements are for the Oracle iDataAgent:
Application/Operating System Processor
Oracle 9.2.x Database 32-bit (Enterprise or Standard Edition) on:
Linux Red Flag Linux
Red Flag Linux 4.x with glibc 2.3.x
Red Hat Enterprise Linux/CentOS
Red Hat Enterprise Linux/CentOS 3.x with glibc
2.3.x
Red Hat Enterprise Linux/CentOS 4.x with glibc
2.3.x
SuSE Linux
SuSE Linux 9.x with glibc 2.3.x
Intel Pentium or compatible processors
Solaris
Solaris 8 with a minimum of Service Packs 108528-
13
Solaris 9 with a minimum of Service Packs 111711-
02
Solaris 10.x
Sun Sparc5 or higher recommended
Windows Windows 2003
Microsoft Windows Server 2003 32-bit Editions with
a minimum of Service Pack 1
Microsoft Windows Server 2003 R2 Editions
All Windows-compatible processors
supported
Oracle 9.2.x Database 64-bit (Enterprise or Standard Edition) on:
AIX
AIX 5.2 with maintenance level 10 (or higher) and
runtime library xlC.rte 8.0.0.0 or higher
AIX 5.3 with technology level 6 (or higher) and
runtime library xlC.rte 8.0.0.0 or higher
Power PC (Includes IBM System p)
HP-UX
HP-UX 11i v1 (11.11) with a minimum of OS patch
PHCO29328 (contact Hewlett Packard to obtain the
patch)
HP-UX 11i v2 (11.23)
HP-UX 11i v3 (11.31)
PA-RISC
HP-UX 11i v2 (11.23)
HP-UX 11i v3 (11.31)
Intel Itanium
Linux Red Hat Enterprise Linux/CentOS
Red Hat Enterprise Linux/CentOS 3.x with glibc
2.3.x
Intel Itanium, x64 or compatible
processors
Features - Oracle iDataAgent
Page 7 of 199
Red Hat Enterprise Linux/CentOS 4.x with glibc
2.3.x
SuSE Linux
SuSE Linux 9.x with glibc 2.3.x
Solaris
Solaris 8 with a minimum of Service Packs 108528-
13
Solaris 9 with a minimum of Service Packs 111711-
02
Solaris 10.x
Sun Sparc5 or higher recommended
Tru64
Tru64 OSF1 Release 5.1B-3 or higher Compaq (DEC) AlphaServer DS Series
computer or higher recommended
Windows Windows 2003
Microsoft Windows Server 2003 x64 Editions with a
minimum of Service Pack 1
All Windows-compatible processors
supported
Oracle 10g (10.1.x) Database 32-bit (Enterprise or Standard Edition) on:
Linux Red Flag Linux
Red Flag Linux 4.x with glibc 2.3.x
Red Hat Enterprise Linux/CentOS
Red Hat Enterprise Linux/CentOS 3.x with glibc
2.3.x
Red Hat Enterprise Linux/CentOS 4.x with glibc
2.3.x
SuSE Linux
SuSE Linux 9.x with glibc 2.3.x
Intel Pentium or compatible processors
Windows Windows 2003
Microsoft Windows Server 2003 32-bit Editions with
a minimum of Service Pack 1
All Windows-compatible processors
supported
Oracle 10g (10.1.x) Database 64-bit (Enterprise or Standard Edition) on:
AIX
AIX 5.2 with maintenance level 10 (or higher) and
runtime library xlC.rte 8.0.0.0 or higher
AIX 5.3 with technology level 6 (or higher) and
runtime library xlC.rte 8.0.0.0 or higher
Power PC (Includes IBM System p)
HP-UX
HP-UX 11i v1 (11.11) with a minimum of OS patch
PHCO29328 (contact Hewlett Packard to obtain the
patch)
HP-UX 11i v2 (11.23)
HP-UX 11i v3 (11.31)
PA-RISC
HP-UX 11i v2 (11.23)
HP-UX 11i v3 (11.31)
Intel Itanium
Features - Oracle iDataAgent
Page 8 of 199
Linux Red Hat Enterprise Linux/CentOS
Red Hat Enterprise Linux/CentOS 3.x with glibc
2.3.x
Intel Itanium
Red Hat Enterprise Linux/CentOS 4.x with glibc
2.3.x
Intel Itanium, x64 or compatible
processors
SuSE Linux
SuSE Linux 9.x with glibc 2.3.x
x64
Solaris
Solaris 8 with a minimum of Service Packs 108528-
13
Solaris 9 with a minimum of Service Packs 111711-
02
Solaris 10.x
Solaris 10.x (Flying Zones supported)
Sun Sparc5 or higher recommended
Tru64
Tru64 OSF1 Release 5.1B-3 or higher Compaq (DEC) AlphaServer DS Series
computer or higher recommended
Windows
Microsoft Windows Server 2003 x64 Editions with a
minimum of Service Pack 1
All Windows-compatible processors
supported
Oracle 10g R2 (10.2.x) Database 32-bit (Enterprise or Standard Edition) on:
Linux Oracle
Oracle Enterprise Linux 4 with glibc 2.3.x
Oracle Enterprise Linux 5 with glibc 2.5.x
Red Hat Enterprise Linux/CentOS
Red Hat Enterprise Linux/CentOS 3.x with glibc
2.3.x
Red Hat Enterprise Linux/CentOS 4.x with glibc
2.3.x
Red Hat Enterprise Linux/CentOS 5.x with glibc
2.5.x
SuSE Linux
SuSE Linux 9.x with glibc 2.3.x
SuSE Linux 10.x with glibc 2.4.x
Intel Pentium or compatible processors
Solaris
Solaris 10.x Intel Pentium or compatible processors
Windows Windows 2003
Microsoft Windows Server 2003 32-bit Editions with
a minimum of Service Pack 1
Microsoft Windows Server 2003 R2 Editions
Windows 2008
Microsoft Windows Server 2008 32-bit Editions*
*Core and R2 Editions not supported
All Windows-compatible processors
supported
Features - Oracle iDataAgent
Page 9 of 199
Oracle 10g R2 (10.2.x) Database 64-bit (Enterprise or Standard Edition) on:
AIX
AIX 5.2 with maintenance level 10 (or higher) and
runtime library xlC.rte 8.0.0.0 or higher
AIX 5.3 with technology level 6 (or higher) and
runtime library xlC.rte 8.0.0.0 or higher
AIX 6.1
Power PC (Includes IBM System p)
HP-UX
HP-UX 11i v1 (11.11) with a minimum of OS patch
PHCO29328 (contact Hewlett Packard to obtain the
patch)
HP-UX 11i v2 (11.23)
HP-UX 11i v3 (11.31)
PA-RISC
HP-UX 11i v2 (11.23)
HP-UX 11i v3 (11.31)
Intel Itanium
Linux Oracle
Oracle Enterprise Linux 4 with glibc 2.3.x
Oracle Enterprise Linux 5 with glibc 2.5.x
x64
Red Hat Enterprise Linux/CentOS
Red Hat Enterprise Linux/CentOS 3.x with glibc
2.3.x
Intel Itanium
Red Hat Enterprise Linux/CentOS 4.x with glibc
2.3.x
Red Hat Enterprise Linux/CentOS 5.x with glibc
2.5.x
Intel Itanium, x64, Power PC (Includes
IBM System p) or compatible processors
SuSE Linux
SuSE Linux 9.x with glibc 2.3.x
SuSE Linux 10.x with glibc 2.4.x
Intel Itanium, x64, Power PC (Includes
IBM System p) or compatible processors
SuSE Linux 11.x with glibc 2.9.x x64
Solaris
Solaris 8 with a minimum of Service Packs 108528-
13
Solaris 9 with a minimum of Service Packs 111711-
02
Solaris 10.x
Solaris 10.x (Flying Zones supported)
Sun Sparc5 or higher recommended
Solaris 10.x x64
Tru64
Tru64 OSF1 Release 5.1B-3 or higher Compaq (DEC) AlphaServer DS Series
computer or higher recommended
Windows Windows 2003
Features - Oracle iDataAgent
Page 10 of 199
Microsoft Windows Server 2003 x64 Editions with a
minimum of Service Pack 1
Microsoft Windows Server 2003 R2 Editions
Windows 2008
Microsoft Windows Server 2008 x64 Editions*
*Core Editions not supported
Microsoft Windows Server 2008 R2 x64 Editions
All Windows-compatible processors
supported
Oracle 11g Database 32-bit (Enterprise or Standard Edition) on:
Linux Oracle
Oracle Enterprise Linux 4 with glibc 2.3.x
Oracle Enterprise Linux 5 with glibc 2.5.x
Red Hat Enterprise Linux/CentOS
Red Hat Enterprise Linux/CentOS 4.x with glibc
2.3.x
Red Hat Enterprise Linux/CentOS 5.x with glibc
2.5.x
SuSE Linux
SuSE Linux 10.x with glibc 2.4.x
SuSE Linux 11.x with glibc 2.9.x
Intel Pentium or compatible processors
Windows Windows 2003
Microsoft Windows Server 2003 32-bit Editions with
a minimum of Service Pack 1
Microsoft Windows Server 2003 R2 Editions
Windows 2008
Microsoft Windows Server 2008 32-bit Editions*
*Core and R2 Editions not supported
All Windows-compatible processors
supported
Oracle 11g Database 64-bit (Enterprise or Standard Edition) on:
AIX
AIX 5.3
AIX 6.1
Power PC (Includes IBM System p)
HP-UX
HP-UX 11i v2 (11.23)
HP-UX 11i v3 (11.31)
PA-RISC
HP-UX 11i v2 (11.23)
HP-UX 11i v3 (11.31)
Intel Itanium
Linux Oracle
Oracle Enterprise Linux 4 with glibc 2.3.x
Oracle Enterprise Linux 5 with glibc 2.5.x
Red Hat Enterprise Linux/CentOS
x64
Features - Oracle iDataAgent
Page 11 of 199
Red Hat Enterprise Linux/CentOS 4.x with glibc
2.3.x
Red Hat Enterprise Linux/CentOS 5.x with glibc
2.5.x
SuSE Linux
SuSE Linux 10.x with glibc 2.4.x
SuSE Linux 11.x with glibc 2.9.x
Solaris
Solaris 9
Solaris 10.x
Sun Sparc5 or higher recommended
Windows Windows 2003
Microsoft Windows Server 2003 x64 Editions with a
minimum of Service Pack 1
Microsoft Windows Server 2003 R2 Editions
Windows 2008
Microsoft Windows Server 2008 x64 Editions*
*Core and R2 Editions not supported
All Windows-compatible processors
supported
Oracle 11g R2 (11.2.x) Database 32-bit (Enterprise or Standard Edition) on:
Linux
Oracle
Oracle Enterprise Linux 4 with glibc 2.3.x
Oracle Enterprise Linux 5 with glibc 2.5.x
Red Hat Enterprise Linux/CentOS
Red Hat Enterprise Linux/CentOS 4.x with glibc
2.3.x
Red Hat Enterprise Linux/CentOS 5.x with glibc
2.5.x
SuSE Linux
SuSE Linux 10.x with glibc 2.4.x
SuSE Linux 11.x with glibc 2.9.x
Intel Pentium or compatible processors
Windows Windows 2003
Microsoft Windows Server 2003 32-bit Editions with
a minimum of Service Pack 1
Microsoft Windows Server 2003 R2 Editions
Windows 2008
Microsoft Windows Server 2008 32-bit Editions*
*Core Editions not supported
All Windows-compatible processors
supported
Oracle 11g R2 (11.2.x) Database 64-bit (Enterprise or Standard Edition) on:
AIX
AIX 5.3
AIX 6.1
Power PC (Includes IBM System p)
Features - Oracle iDataAgent
Page 12 of 199
HP-UX
HP-UX 11i v3 (11.31) Intel Itanium
HP-UX 11i v3 (11.31) PA-RISC
Linux
Oracle
Oracle Enterprise Linux 4 with glibc 2.3.x
Oracle Enterprise Linux 5 with glibc 2.5.x
Red Hat Enterprise Linux/CentOS
Red Hat Enterprise Linux/CentOS 4.x with glibc
2.3.x
Red Hat Enterprise Linux/CentOS 5.x with glibc
2.5.x
SuSE Linux
SuSE Linux 10.x with glibc 2.4.x
SuSE Linux 11.x with glibc 2.9.x
x64
Solaris
Solaris 10.x Sun Sparc5 or higher recommended
Solaris 10.x x64
Windows Windows 2003
Microsoft Windows Server 2003 x64 Editions with a
minimum of Service Pack 1
Microsoft Windows Server 2003 R2 Editions
Windows 2008
Microsoft Windows Server 2008 R2 Editions*
Microsoft Windows Server 2008 x64 Editions*
*Core Editions not supported
All Windows-compatible processors
supported
Cluster Support
See Clustering - Support
Memory
Windows
32 MB RAM per stream/drive minimum required beyond the requirements of the operating system and
running applications
AIX, HP-UX Linux, Solaris and Tru64
64 MB RAM per stream/drive minimum required beyond the requirements of the operating system and
running applications
Swap space = 2*RAM size
Hard Disk
Windows
112 MB minimum of hard disk space for software/ 498 MB recommended
50 MB of additional hard disk space for log file growth
Features - Oracle iDataAgent
Page 13 of 199
80 MB of temp space required for install or upgrade (where the temp folder resides)
Unix
230 MB minimum of hard disk space for software
Peripherals
DVD-ROM drive
Network Interface Card
Miscellaneous
TCP/IP Services configured on the computer.
The File System iDataAgent will be automatically installed during installation of the Oracle iDataAgent, if
it is not already installed. For System Requirements and install information specific to the File System
iDataAgents, refer to:
System Requirements - Microsoft Windows File System iDataAgent
System Requirements - Unix File System iDataAgent
On Solaris computers, the operating system must have been installed with at least the user level
software option selected
Microsoft Visual C++ 2008 Redistributable Package is automatically installed. Note that Visual C++ 2008
Redistributable Package can co-exist with other versions of this software.
If you have SELinux enabled on the client computer, create the SELinux policy module as a root user
before performing a backup. The SELinux Development package must be installed on the client.
To create SELinux policy module, perform the following steps as user "root":
1. Create the following files in the /usr/share/selinux/devel directory:
File Name Content of the file
<directory>/<file_name>.te
where:
<directory> is /usr/share/selinux/devel
<file_name> is the name of the Unix file, created to
save the policy module statement. It is a good idea to
use the same name for policy module and the file.
For example: When you are creating a policy module
for backup_IDA application, you can use the following
file name: backup_IDA.te
The content of the file should be as follows:
policy_module(<name>,<version>)
##############################
where:
<name> is the name of the policy module. You can
give any unique name to the policy module, such
as a process or application name.
<version> is the version of the policy module. It
can be any number, such as 1.0.0.
For Example: While creating a policy module for
the backup_IDA application, you can use the
following content.
policy_module(backup_IDA,1.0.0)
<directory>/<file_name>.fc
where:
<directory> is /usr/share/selinux/devel
<file_name> is the name of the Unix file, created to
save the policy module statement. It is a good idea to
The content of the file should be as follows:
Note that the following list of files is not
exhaustive. If the process fails to launch,
check /var/log/messages. Also, if required, add
it to the following list of files.
/opt/<software installation
Features - Oracle iDataAgent
Page 14 of 199
2. Create the policy file from command line. Use the following command. Ensure that you give the
following commands in the /usr/share/selinux/devel directory.
[root]# make backup_IDA.pp
Compiling targeted backup_IDA module
/usr/bin/checkmodule: loading policy configuration from tmp/backup_IDA.tmp
/usr/bin/checkmodule: policy configuration loaded
/usr/bin/checkmodule: writing binary representation (version 6) to
tmp/backup_IDA.mod
Creating targeted backup_IDA.pp policy package
rm tmp/backup_IDA.mod tmp/backup_IDA.mod.fc
[root]# semodule -i backup_IDA.pp
[root]#
use the same name for policy module and the file.
For example: When you are creating a policy module
for backup_IDA application, you can use the following
file name: backup_IDA.fc
directory>/Base/libCTreeWrapper.so --
gen_context
(system_u:object_r:texrel_shlib_t,s0)
/opt/<software installation
directory>/Base/libCVMAGuiImplgso --
gen_context
(system_u:object_r:texrel_shlib_t,s0)
/opt/<software installation
directory>/Base/libdb2locale.so.1 --
gen_context
(system_u:object_r:texrel_shlib_t,s0)
/opt/<software installation
directory>/Base/libdb2osse.so.1 --
gen_context
(system_u:object_r:texrel_shlib_t,s0)
/opt/<software installation
directory>/Base/libDb2Sbt.so --
gen_context
(system_u:object_r:texrel_shlib_t,s0)
/opt/<software installation
directory>/Base/libdb2trcapi.so.1 --
gen_context
(system_u:object_r:texrel_shlib_t,s0)
/opt/<software installation
directory>/Base/libDrDatabase.so --
gen_context
(system_u:object_r:texrel_shlib_t,s0)
/opt/<software installation
directory>/Base/libIndexing.so --
gen_context
(system_u:object_r:texrel_shlib_t,s0)
/opt/<software installation
directory>/Base/libSnooper.so --
gen_context
(system_u:object_r:texrel_shlib_t,s0)
Features - Oracle iDataAgent
Page 15 of 199
DISCLAIMER
Minor revisions and/or service packs that are released by application and operating system vendors may, in some cases, affect the working of our
software. Although we may list such revisions and/or service packs as supported in our System Requirements, changes to the behavior of our
software resulting from an application or operating system revision/service pack may be beyond our control. However, we will make every effort to
correct such disruption as quickly as possible. When in doubt, please contact your software provider to ensure support for a specific application or
operating system.
Additional considerations regarding minimum requirements and End of Life policies from application and operating system vendors are also
applicable.
3. Execute the policy module. Use the following command:
[root]# restorecon -R /opt/<software installation directory>
SELinux is now configured to work with this application.
Features - Oracle iDataAgent
Page 16 of 199
Install the Oracle iDataAgent - Windows
Click on a link below to go to a specific section of the software installation:
Install Requirements
Install Checklist
Before You Begin
Install Procedure
Getting Started
Select Components for Installation
Firewall Configuration
Configuration of Other Installation Options
Storage Policy Selection
Client Group Selection
Configure Oracle Specific Information
Verify Summary of Install Options
Schedule Automatic Update
Install Remaining Cluster Nodes
Setup Complete
Post-Install Considerations
Install Requirements
The Oracle iDataAgent is installed on the computer on which the Oracle Database application resides.
(This computer is referred to as the Client computer in this install procedure.)
Verify that the computer in which you wish to install the software satisfies the minimum requirements
specified in System Requirements - Oracle iDataAgent and in System Requirements - Microsoft Windows
File System iDataAgent.
The following procedure describes the steps involved in installing the Windows File System and the
Oracle iDataAgent. If you choose to install multiple components simultaneously, refer to the appropriate
procedures for installation requirements and steps specific to the component. Note that when you install
multiple components, the sequence of the install steps may vary.
Review the following Install Requirements before installing the software:
General
Agents should be installed only after the CommServe and at least one MediaAgent have been. Also,
keep in mind that the CommServe
feature
for Windows File System iDataAgent, the agent
should be installed on a non-system drive and
not a filer volume.
Click Browse to change directories.
Click Next to continue.
Firewall Configuration
10. Select from the following:
If this Client communicates with the CommServe
Server and/or MediaAgent across a firewall,
select Yes, configure firewall services, and
then click Next to continue. Proceed to the next
Step.
If firewall configuration is not required, click No,
do not configure firewall services and then
click Next to continue. Proceed to the next
section.
NOTES
Operating systems, such as Windows 2008 and
Windows Vista, may have more than one profile
present. When you select No to configure
firewall services, verify that firewall settings are
not enabled in the profile(s).
If the system detects firewall settings are
present in the profile(s), you must select from
the following:
Disable firewall for ALL profiles: Employ
caution when choosing this option; firewall
settings will be disabled in all profiles. This
requires a system reboot; installation
automatically resumes after reboot.
No, Firewall is not enabled: Select this
option if your firewall settings allow
communication with the CommServe
Features - Oracle iDataAgent
Page 21 of 199
computer.
Click Back to configure firewall services.
11. Click the Specify list of machine across the
firewall option and then specify the list of hosts
separated from this computer by a firewall. Make
sure you correctly describe whether the firewall
allows two-way communication (but on a limited
range of ports), or one-way communication (with
either only remote host being able to make
connections to this computer, or vice versa).
For all one-way firewalls allowing incoming
connections and those one-way firewalls allowing
outgoing connections without additional port
filtering, skip this step.
Click Next to continue.
NOTES
Consider the following:
On the CommServe Server, this list should
include all the MediaAgents and Clients that
are on the other side of the firewall.
On the MediaAgents/Clients this should
include the CommServe computer, and any
other Clients/MediaAgents on the other side of
the firewall with which communications will be
established.
For each machine on the other side of the
firewall that you want to configure, choose the
type of firewall configuration based on the
firewall setup in your environment. Choose from
the following options:
Click on 2-way firewall if you can open
certain ports as bi-directional ports.
Click 1-way firewall; host is reachable
from this machine on the machine that is on
the secure side of the firewall.
Click 1-way firewall; host is NOT
reachable from this machine on the
machine that is on the public / DMZ side of
the firewall.
If you wish to communicate with computers in a
clustered environment, ensure that you add the
Host Name/IP Address of all physical nodes in
the cluster (even if no CommCell components
are installed) and all the virtual nodes in which
CommCell components are installed.
Type the host name or the IP address and the
GxCVD port number of the host name, and click
Add to place it in the Host Name/IP Address List.
12. Click the Specify list of restricted open ports
option and then specify the port range. Add the
starting and ending port range and then click Add
to place it in the Open Port List. Repeat as
needed.
Features - Oracle iDataAgent
Page 22 of 199
If firewall separating this computer from others
allows incoming connections, but these connections
can be made only on a limited set of ports, then
configure the appropriate port range here. For all
other scenarios, skip this step.
Note that if you do not specify hostname(s) as well
as port number(s), then the firewall services will not
be configured.
NOTES
Typically in a two-way firewall, the open ports
must be indicated for all computers. In a one-
way firewall, the ports must be specified on
computers in the open side, if they are open in a
restricted way. Note that the port ranges are not
required for computers that are fully closed in
the one-way firewall. For example, laptops which
are configured as clients in the Workstation
Backup Agent.
In a clustered environment, make sure the
firewall ports specified here are open for
communication on all the physical nodes as well
as the virtual nodes.
Click Next to continue.
13. If desired, modify the Keep Alive interval.
Click Next to continue.
14. Optionally, select Advanced Firewall
Configuration and specify a local host name
interface to use for outgoing tunnel connections
through the firewall. Otherwise, the interface and
port is automatically selected for you by the OS.
Click Next to continue.
15. If desired, modify the Tunnel Initialization interval.
Features - Oracle iDataAgent
Page 23 of 199
Click Next to continue.
Configuration of Other Installation Options
16. Enter the fully qualified domain name of the
CommServe computer. (TCP/IP network name. e.g.,
computer.company.com)
NOTES
Do not use spaces when specifying a new name
for the CommServe Host Name.
If a component has already been installed, this
screen will not be displayed; instead, the
installer will use the same Server Name as
previously specified.
Click Next to continue.
17. Enter the username and password information for
an external domain user account or a CommCell
user account. This authorizes the installation of an
agent on the CommCell.
NOTES
This window is only displayed when the Require
Authentication for Agent Installation option
is selected in the CommCell Properties. Users
must belong to a User Group with Administrative
Management capabilities to enable this feature.
For more information, see Authentication for
Agent Installs.
Click Next to continue.
18. Enter the following:
The local (NetBIOS) name of the client
computer.
The TCP/IP IP host name of the NIC that the
client computer must use to communicate with
the CommServe Server.
NOTES
Do not use spaces when specifying a new name
for the Client.
Features - Oracle iDataAgent
Page 24 of 199
The default network interface name of the client
computer is displayed if the computer has only
one network interface. If the computer has
multiple network interfaces, enter the interface
name that is preferred for communication with
the CommServe Server.
If a component has already been installed, this
screen will not be displayed; instead, the install
program will use the same name as previously
specified.
Click Next to continue.
19. Specify the following and click Next to continue:
Type the location of the client's job results
directory, or click Browse.
NOTES
The Agent uses the job results directory to store
the client's backup and restore job results.
Storage Policy Selection
20. Select the storage policy through which you want to
back up/archive the indicated component (subclient,
instance, etc.)
NOTES
A storage policy directs backup data to a media
library. Each library has a default storage policy.
When you install an Agent, the install program
creates a default subclient for most Agents.
If desired, you can change your storage policy
selection at any time after you have installed the
client software.
If applicable, enable Global Filters for the default
subclient.
If this screen appears more than once, it is
because you have selected multiple agents for
installation and are configuring storage policy
association for each of the installed agents.
Click Next to continue.
Client Group Selection
21. Select a Client Group from the list.
Features - Oracle iDataAgent
Page 25 of 199
Click Next to continue.
NOTES
This screen will be displayed only if Client Groups
are configured in the CommCell Console. For
more information, see Client Computer Groups.
Configure Oracle Specific Information
22. Make sure that all Oracle Instances are shut down
before continuing. If necessary, click Service
Control Manager to stop the Oracle services. After
all Oracle Instances have been shut down, click
Next to continue.
23. Click Search ORASBT.DLL to search all locations
specified in the SYSTEM PATH environment variable
to find any occurrences of the ORASBT.DLL file. For
all occurrences that are found, you need to either
rename or delete these occurrences so that the
Oracle Database iDataAgent can use the correct
ORASBT.DLL. After renaming or deleting all
occurrences of this DLL, click Next to continue.
24. Select Download Pack(s) and Install to
download and install the latest service packs and
post packs from the software provider.
NOTES
Internet connectivity is required to download
updates.
This step is applicable when installing on the first
instance.
Updates are downloaded to the following
Features - Oracle iDataAgent
Page 26 of 199
directory:
<software
installation>/Base/Temp/DownloadedPacks.
They are launched silently and installed
automatically for the first instance.
Click Next to continue.
Verify Summary of Install Options
25. Verify the summary of selected options.
NOTES
The Summary on your screen should reflect the
components you selected for install, and may
look different from the example shown.
Click Next to continue or Back to change any of
the options.
The install program now starts copying the software
to the computer. This step may take several
minutes to complete.
26. The System Reboot message may be displayed. If
so, select one of the following:
Skip Reboot
This option will be displayed if the install
program finds any files belonging to other
applications, that need to be replaced. As these
files are not critical for this installation, you may
skip the reboot and continue the installation and
reboot the computer at a later time.
Reboot Now
If this option is displayed without the Skip
Reboot option, the install program has found
files required by the software that are in use and
need to be replaced. If Reboot Now is displayed
without the Skip Reboot option, reboot the
computer at this point. The install program will
automatically continue after the reboot.
Exit Setup
If you want to exit the install program, click Exit
Setup.
Schedule Automatic Update
27. If necessary, select this option to schedule an
automatic installation of software updates.
Features - Oracle iDataAgent
Page 27 of 199
NOTES
Install Updates Schedule allows automatic
installation of the necessary software updates on
the computer on a single or weekly basis. If you
do not select this option, you can schedule these
updates later from the CommCell Console.
To avoid conflict, do not schedule the automatic
installation of software updates to occur at the
same time as the automatic FTP downloading of
software updates.
You may be prompted to reboot the computer
before restarting services.
If a component has already been installed, this
screen will not be displayed; instead, the
installer will use the same option as previously
specified.
Click Next to continue.
28. Setup reminds you that the computer must be
restarted, after the installation completes, before
you can use this Agent.
Click OK to continue.
Install Remaining Cluster Nodes
29. If you are installing/upgrading the software on the
physical node in a clustered environment, use this
option to install/upgrade the software on the
remaining physical nodes of the cluster.
To install/upgrade the software on the remaining
nodes of the cluster, click Yes.
To complete the install/upgrade for this node
only, click No.
See Install/Upgrade Remaining Cluster Nodes for
step-by-step instructions.
Setup Complete
30. Click Next to continue.
NOTES
Schedules help ensure that the data protection
operations for the Agent are automatically
performed on a regular basis without user
intervention. For more information, see
Scheduling.
Features - Oracle iDataAgent
Page 28 of 199
31. Select from the following:
If the Reboot Now button is displayed, a reboot
is required before you can use the software. You
can click this button to restart the computer
now, or choose to perform the restart at another
time. If the Reboot Now button is not
displayed, it will not be necessary to restart the
computer.
Click Finish to exit the program.
NOTES
The Setup Complete message displayed on
your screen will reflect the components you
installed/upgraded, and may look different from
the example shown.
If you install an Agent with the CommCell
Console open, you need to refresh the CommCell
Console (F5) to see the new Agents.
This procedure is now complete.
Post-Install Considerations
General
Install post-release updates or Service Packs that may have been released after the release of the
software. If you are installing a Service Pack, verify and ensure that it is the same version as the one
installed in the CommServe Server. Alternatively, you can enable Automatic Updates for quick and
easy installation of updates in the CommCell component.
After installing the Agent, you may want to configure the Agent before running a data protection
operation. The following list includes some of the most common features that can be configured:
Configure your subclients - see Subclients for more information.
Schedule your data protection operations - see Scheduling for more information.
Configure Alerts - See Alerts and Monitoring for more information.
Schedule Reports - See Reports for more information.
The software provides many more features that you will find useful. See the Index for a complete list of
supported features.
Agent Specific
Before you can begin using the Oracle iDataAgent for data protection operations, you must Create an
Instance.
To plan for a full system restore of the Oracle database in the event of a destroyed or damaged
client, we recommend that you configure the client for disaster recovery by including the Oracle
database files in your file system backups. Refer to Disaster Recovery Considerations for more
information and procedures.
Disaster Recovery Considerations
Before you use your agent, be sure to review and understand the associated full system restore (or
disaster recovery) procedure. The procedure for some agents may require that you plan specific
actions or consider certain items before an emergency occurs. See Disaster Recovery for more
information regarding your agent.
Features - Oracle iDataAgent
Page 29 of 199
Install the Oracle iDataAgent - Windows - Clustered
Environment - Virtual Server
Click on a link below to go to a specific section of the software installation:
Install Requirements
Install Checklist
Before You Begin
Install Procedure
Getting Started
Cluster Selection
Select Components for Installation
Firewall Configuration
Configuration of Other Installation Options
Storage Policy Selection
Client Group Selection
Configure Oracle Specific Information
Verify Summary of Install Options
Schedule Automatic Update
Install Remaining Cluster Nodes
Setup Complete
Post-Install Considerations
Install Requirements
The Windows File System iDataAgent must be first installed onto all of the physical nodes of the cluster.
See Install the Microsoft Windows File System iDataAgent if you have not installed it on all of the
physical nodes. Once it has been installed onto the physical nodes, the Oracle iDataAgent and the
Windows File System iDataAgent can be installed from the active node to the virtual server using the
following procedure. The software can also be automatically installed on all available passive nodes
when the software is installed onto the virtual server, or you can choose to install any passive node(s)
separately.
For an overview of deploying the software components in a clustered environment, see Clustering
Support.
Verify that all of the computers to which software will be installed satisfy the minimum requirements
specified in System Requirements - Oracle iDataAgent and in System Requirements - Microsoft Windows
File System iDataAgent.
The following procedure describes the steps involved in installing the Oracle iDataAgent and the
Windows File System iDataAgent. If you choose to install additional components simultaneously, refer to
the appropriate procedures for installation requirements and steps specific to the component. Note that
when you install multiple components, the sequence of the install steps may vary.
Review the following Install Requirements before installing the software:
General
Agents should be installed only after the CommServe and at least one MediaAgent have been. Also,
keep in mind that the CommServe
feature
for Windows File System iDataAgent, the agent
should be installed on a non-system drive and
not a filer volume.
Click Browse to change directories.
Click Next to continue.
Proprietary disk resources will not appear in the browse window. To install to a proprietary disk
resource, manually enter the path.
After installing to a proprietary disk resource, the error message CVD failed to set
dependency may be generated. To set the dependency, open the Cluster Administrator and
select the CVD that has just been installed. Click on the Properties Dependencies tab, and
click Modify. Select the proprietary disk resource and click OK.
Do not select the same destination drive in which the MSCS resides.
Firewall Configuration
12. Select from the following:
If this Client communicates with the
CommServe Server and/or MediaAgent across
Features - Oracle iDataAgent
Page 35 of 199
a firewall, select Yes, configure firewall
services, and then click Next to continue.
Proceed to the next Step.
If firewall configuration is not required, click
No, do not configure firewall services and
then click Next to continue. Proceed to the
next section.
NOTES
Operating systems, such as Windows 2008 and
Windows Vista, may have more than one
profile present. When you select No to
configure firewall services, verify that firewall
settings are not enabled in the profile(s).
If the system detects firewall settings are
present in the profile(s), you must select from
the following:
Disable firewall for ALL profiles: Employ
caution when choosing this option; firewall
settings will be disabled in all profiles. This
requires a system reboot; installation
automatically resumes after reboot.
No, Firewall is not enabled: Select this
option if your firewall settings allow
communication with the CommServe
computer.
Click Back to configure firewall services.
13. Click the Specify list of machine across the
firewall option and then specify the list of hosts
separated from this computer by a firewall. Make
sure you correctly describe whether the firewall
allows two-way communication (but on a limited
range of ports), or one-way communication (with
either only remote host being able to make
connections to this computer, or vice versa).
For all one-way firewalls allowing incoming
connections and those one-way firewalls allowing
outgoing connections without additional port
filtering, skip this step.
Click Next to continue.
NOTES
Consider the following:
On the CommServe Server, this list should
include all the MediaAgents and Clients that
are on the other side of the firewall.
On the MediaAgents/Clients this should
include the CommServe computer, and any
other Clients/MediaAgents on the other side
of the firewall with which communications
will be established.
For each machine on the other side of the
firewall that you want to configure, choose the
type of firewall configuration based on the
firewall setup in your environment. Choose
Features - Oracle iDataAgent
Page 36 of 199
from the following options:
Click on 2-way firewall if you can open
certain ports as bi-directional ports.
Click 1-way firewall; host is reachable
from this machine on the machine that is
on the secure side of the firewall.
Click 1-way firewall; host is NOT
reachable from this machine on the
machine that is on the public / DMZ side of
the firewall.
If you wish to communicate with computers in
a clustered environment, ensure that you add
the Host Name/IP Address of all physical nodes
in the cluster (even if no CommCell
components are installed) and all the virtual
nodes in which CommCell components are
installed.
Type the host name or the IP address and the
GxCVD port number of the host name, and
click Add to place it in the Host Name/IP
Address List.
14. Click the Specify list of restricted open ports
option and then specify the port range. Add the
starting and ending port range and then click Add
to place it in the Open Port List. Repeat as
needed.
If firewall separating this computer from others
allows incoming connections, but these
connections can be made only on a limited set of
ports, then configure the appropriate port range
here. For all other scenarios, skip this step.
Note that if you do not specify hostname(s) as
well as port number(s), then the firewall services
will not be configured.
NOTES
Typically in a two-way firewall, the open ports
must be indicated for all computers. In a one-
way firewall, the ports must be specified on
computers in the open side, if they are open in
a restricted way. Note that the port ranges are
not required for computers that are fully closed
in the one-way firewall. For example, laptops
which are configured as clients in the
Workstation Backup Agent.
In a clustered environment, make sure the
firewall ports specified here are open for
communication on all the physical nodes as
well as the virtual nodes.
Click Next to continue.
15. If desired, modify the Keep Alive interval.
Click Next to continue.
Features - Oracle iDataAgent
Page 37 of 199
16. Optionally, select Advanced Firewall
Configuration and specify a local host name
interface to use for outgoing tunnel connections
through the firewall. Otherwise, the interface and
port is automatically selected for you by the OS.
Click Next to continue.
17. If desired, modify the Tunnel Initialization
interval.
Click Next to continue.
If any of the above prompts for firewall configuration is not displayed, you must configure
communication across firewall(s) using the Firewall Configuration Wizard before running
any operations on this computer. (See Configure or Modify Firewall Settings on Windows
Computers for step-by-step instructions on using the Firewall Configuration Wizard.)
Configuration of Other Installation Options
18. Enter the fully qualified domain name of the
CommServe computer. (TCP/IP network name.
e.g., computer.company.com)
NOTES
Features - Oracle iDataAgent
Page 38 of 199
Do not use spaces when specifying a new
name for the CommServe Host Name.
If a component has already been installed, this
screen will not be displayed; instead, the
installer will use the same Server Name as
previously specified.
Click Next to continue.
19. Enter the username and password information
for an external domain user account or a
CommCell user account. This authorizes the
installation of an agent on the CommCell.
NOTES
This window is only displayed when the
Require Authentication for Agent
Installation option is selected in the
CommCell Properties. Users must belong to a
User Group with Administrative Management
capabilities to enable this feature. For more
information, see Authentication for Agent
Installs.
Click Next to continue.
20. Enter the following:
The local (NetBIOS) name of the client
computer.
The TCP/IP IP host name of the NIC that the
client computer must use to communicate with
the CommServe Server.
NOTES
Do not use spaces when specifying a new
name for the Client.
The default network interface name of the
client computer is displayed if the computer
has only one network interface. If the
computer has multiple network interfaces,
enter the interface name that is preferred for
communication with the CommServe Server.
If a component has already been installed, this
screen will not be displayed; instead, the
install program will use the same name as
previously specified.
Click Next to continue.
21. Specify the following and click Next to continue:
Type the location of the client's job results
directory, or click Browse.
Features - Oracle iDataAgent
Page 39 of 199
NOTES
The Agent uses the job results directory to
store the client's backup and restore job
results.
Storage Policy Selection
22. Select the storage policy through which you want
to back up/archive the indicated component
(subclient, instance, etc.)
NOTES
A storage policy directs backup data to a
media library. Each library has a default
storage policy.
When you install an Agent, the install program
creates a default subclient for most Agents.
If desired, you can change your storage policy
selection at any time after you have installed
the client software.
If applicable, enable Global Filters for the
default subclient.
If this screen appears more than once, it is
because you have selected multiple agents for
installation and are configuring storage policy
association for each of the installed agents.
Click Next to continue.
Client Group Selection
23. Select a Client Group from the list.
Click Next to continue.
NOTES
This screen will be displayed only if Client
Groups are configured in the CommCell
Console. For more information, see Client
Computer Groups.
Features - Oracle iDataAgent
Page 40 of 199
Configure Oracle Specific Information
24. If you have Oracle FailSafe configured for your
clustered environment, then use Oracle FailSafe
Manager to shut down the instance before
continuing with the install. If your site is not
configured for Oracle FailSafe, then you can
disregard this message.
Click OK to continue.
25. Make sure that all Oracle Instances are shut down
before continuing. If necessary, click Service
Control Manager to stop the Oracle services.
After all Oracle Instances have been shut down,
click Next to continue.
26. Click Search ORASBT.DLL to search all locations
specified in the SYSTEM PATH environment
variable to find any occurrences of the
ORASBT.DLL file. For all occurrences that are
found, you need to either rename or delete these
occurrences so that the Oracle Database
iDataAgent can use the correct ORASBT.DLL.
After renaming or deleting all occurrences of this
DLL, click Next to continue.
27. Select Download Pack(s) and Install to
download and install the latest service packs and
post packs from the software provider.
NOTES
Internet connectivity is required to download
updates.
This step is applicable when installing on the
first instance.
Updates are downloaded to the following
directory:
<software
installation>/Base/Temp/DownloadedPacks.
They are launched silently and installed
automatically for the first instance.
Features - Oracle iDataAgent
Page 41 of 199
Click Next to continue.
Verify Summary of Install Options
28. Verify the summary of selected options.
NOTES
The Summary on your screen should reflect
the components you selected for install, and
may look different from the example shown.
Click Next to continue or Back to change any of
the options.
The install program now starts copying the
software to the computer. This step may take
several minutes to complete.
29. The System Reboot message may be displayed. If
so, select one of the following:
Skip Reboot
This option will be displayed if the install
program finds any files belonging to other
applications, that need to be replaced. As
these files are not critical for this installation,
you may skip the reboot and continue the
installation and reboot the computer at a later
time.
Reboot Now
If this option is displayed without the Skip
Reboot option, the install program has found
files required by the software that are in use
and need to be replaced. If Reboot Now is
displayed without the Skip Reboot option,
reboot the computer at this point. The install
program will automatically continue after the
reboot.
Exit Setup
If you want to exit the install program, click
Exit Setup.
Schedule Automatic Update
30. If necessary, select this option to schedule an
automatic installation of software updates.
NOTES
Install Updates Schedule allows automatic
installation of the necessary software updates
on the computer on a single or weekly basis. If
you do not select this option, you can schedule
these updates later from the CommCell
Console.
To avoid conflict, do not schedule the
Features - Oracle iDataAgent
Page 42 of 199
automatic installation of software updates to
occur at the same time as the automatic FTP
downloading of software updates.
You may be prompted to reboot the computer
before restarting services.
If a component has already been installed, this
screen will not be displayed; instead, the
installer will use the same option as previously
specified.
Click Next to continue.
31. Setup reminds you that the computer must be
restarted, after the installation completes, before
you can use this Agent.
Click OK to continue.
Install Remaining Cluster Nodes
32. To install/upgrade the software on the remaining
nodes of the cluster, click Yes.
To complete the install for this node only, click
No.
33. Select cluster nodes from the Preferred Nodes
list and click the arrow button to move them to
the Selected Nodes list.
NOTES
The list of Preferred Nodes displays all the
nodes found in the cluster; from this list you
should only select cluster nodes configured to
host this virtual server.
Do not select nodes that already have multiple
instances installed. For more information, see
Multi Instancing.
When you have completed your selections, click
Next to continue.
34. Type the User Name and Password for the
Domain Administrator account, so that the
installer can perform the remote install/upgrade
of the cluster nodes you selected in the previous
step.
Click Next to continue.
Features - Oracle iDataAgent
Page 43 of 199
35. The progress of the remote install for the cluster
nodes is displayed; the install can be interrupted
if necessary.
Click Stop to prevent installation to any nodes
after the current ones complete.
Click Advanced Settings to specify any of the
following:
Maximum number of nodes on which Setup
can run simultaneously.
Time allocated for Setup to begin executing on
each node, after which the install attempt will
fail.
Time allocated for Setup to complete on each
node, after which the install attempt will fail.
NOTES
If, during the remote install of a cluster node,
setup fails to complete or is interrupted, you
must perform a local install on that node.
When you do, the install begins from where it
left off, or from the beginning if necessary. For
procedures, see Manually Installing the
Software on a Passive Node.
36. Read the summary for remote installation to
verify that all selected nodes were installed
successfully.
NOTES
If any node installation fails, you must
manually install the software on that node
once the current installation is complete. (See
Manually Installing the Software on a Passive
Node for step-by-step instructions.)
The message displayed on your screen will
reflect the status of the selected nodes, and
may look different from the example.
Click Next to continue.
Setup Complete
Features - Oracle iDataAgent
Page 44 of 199
37. Click Next to continue.
NOTES
Schedules help ensure that the data protection
operations for the Agent are automatically
performed on a regular basis without user
intervention. For more information, see
Scheduling.
38. Select from the following:
If the Reboot Now button is displayed, a
reboot is required before you can use the
software. You can click this button to restart
the computer now, or choose to perform the
restart at another time. If the Reboot Now
button is not displayed, it will not be necessary
to restart the computer.
Click Finish to exit the program.
NOTES
The Setup Complete message displayed on
your screen will reflect the components you
installed/upgraded, and may look different
from the example shown.
If you install an Agent with the CommCell
Console open, you need to refresh the
CommCell Console (F5) to see the new Agents.
This procedure is now complete.
Post-Install Considerations
General
Install post-release updates or Service Packs that may have been released after the release of the
software. If you are installing a Service Pack, verify and ensure that it is the same version as the one
installed in the CommServe Server. Alternatively, you can enable Automatic Updates for quick and
easy installation of updates in the CommCell component.
After installing the Agent, you may want to configure the Agent before running a data protection
operation. The following list includes some of the most common features that can be configured:
Configure your subclients - see Subclients for more information.
Schedule your data protection operations - see Scheduling for more information.
Configure Alerts - See Alerts and Monitoring for more information.
Schedule Reports - See Reports for more information.
The software provides many more features that you will find useful. See the Index for a complete list of
supported features.
Agent Specific
Before you can begin using the Oracle iDataAgent for data protection operations, you must Create an
Features - Oracle iDataAgent
Page 45 of 199
Instance.
To plan for a full system restore of the Oracle database in the event of a destroyed or damaged
client, we recommend that you configure the client for disaster recovery by including the Oracle
database files in your file system backups. Refer to Disaster Recovery Considerations for more
information and procedures.
Disaster Recovery Considerations
Before you use your agent, be sure to review and understand the associated full system restore (or
disaster recovery) procedure. The procedure for some agents may require that you plan specific
actions or consider certain items before an emergency occurs. See Disaster Recovery for more
information regarding your agent.
Cluster
If the passive node was not available while installing the software, you must manually install the
software on the passive node now. (See Manually Installing the Software on a Passive Node for step-
by-step instructions.)
By default, a failure of MediaAgent or Agent software on the active node in a Windows, Veritas, or HP
Scalable NAS/PolyServe Cluster will not cause a failover to be initiated. For information on how to
change this default behavior, see Clustering Support - Failovers.
Features - Oracle iDataAgent
Page 46 of 199
Install the Oracle iDataAgent - Unix
Click on a link below to go to a specific section of the software installation:
Install Requirements
Install Checklist
Before You Begin
Install Procedure
Getting Started
Select Components for Installation
Base Software Installation
Firewall Configuration
Base Software Installation (continued)
Kernel Parameters
Storage Policy Selection
Enable Global Filters
Client Group Selection
Setup Complete
Post-Install Considerations
Install Requirements
The Oracle iDataAgent is installed on the computer on which the Oracle Database application resides.
(This computer is referred to as the Client computer in this install procedure.)
Verify that the computer in which you wish to install the software satisfies the minimum requirements
specified in System Requirements - Oracle iDataAgent and System Requirements - Unix File System
iDataAgent.
The following procedure describes the steps involved in installing the Oracle iDataAgent and the Unix
File System iDataAgent. If you choose to install multiple components simultaneously, refer to the
appropriate procedures for installation requirements and steps specific to the component. Note that
when you install multiple components, the sequence of the install steps may vary.
Review the following Install Requirements before installing the software:
General
Agents should be installed only after the CommServe and at least one MediaAgent have been
installed in the CommCell. Also, keep in mind that the CommServe and MediaAgent must be installed
and running (but not necessarily on the same computer), before you can install the Agent.
This software should be installed in a CommCell with current versions of the CommServe and
MediaAgent software.
Ensure there is an available license on the CommServe for the Agent.
Verify that you have the software installation disc that is appropriate to the destination computers
operating system.
Make sure that you have the latest software installation disc before you start to install the software.
If you are not sure, contact your software provider.
Firewall
If the CommServe