Previous | Table of Contents | Next |
This section helps you prepare the environment for installing the Oracle8 server. To achieve the objective, you set up the UNIX environment. There are certain tasks that need be done as the root and Oracle user. You also need to perform certain setup tasks for individual Oracle products.
Log in as the root user by using the following steps:
Directories/Files | Permissions |
---|---|
$ORACLE_HOME/network/trace | 777 (for Development database) |
730 (for Production database) | |
$ORACLE_HOME/lib | 644 (provides read-only access) |
$ORACLE_HOME/bin | 6751* |
$SQL, Shell, and other admin scripts | 644 |
$ORACLE_HOME/rdbms/log | 751 |
All control, database, | 640 log files |
*6 sets the setuid bit so the executables are executed as the Oracle user and DBA group, regardless of who executes them.
cdrom_mount_point/orainst/oratab.sh script create/set the permissions of this file in /var/opt/oracle directory.
Note:
ORA_NLS33 can be set optionally if you want to create the database with a character set other than US7ASCII.The search PATH must include: $ORACLE_HOME/bin, /bin, /opt/bin, /usr/bin, and /usr/ccs/bin in the search order.
After setting the environment variables in the .profile or .login file, update the environment in the current shell session:
$ . .profile ( Bourne Shell) $ source .login ( cshell)
To install individual Oracle products, perform the steps as necessary for your installation.
Oracle documentation is available in two categories: OS-specific and generic. Both documentations are available in HTML and PDF formats.
You can install OS specific documentation during installation from the source CD-ROM. The generic or product documentation is available on a separate CD-ROM and can be installed in a separate Installer session.
At this point, execute the product-specific steps as necessary for your installation.
As an example, lets look at the Recovery Manager (RMAN) and Time Series Cartridge post-installation steps.
Recovery Manager is an automated utility to perform recovery and is installed as part of the Oracle8 server. This is a new feature introduced in Oracle8. It stores information in a separate catalog database. The catalog database should be essentially on a separate machine to provide maximum fault resistance.
Note:
RMAN can also be used in a restricted mode without a recovery catalog in certain situations.
The following are the steps to create a recovery catalog:
Above steps consolidated from Oracle8 Installation Guide for Sun Solaris, Copyright© 1997, Oracle Corporation. All rights reserved.
You can look in the installation guide for appropriate postinstallation steps for different products on your platform.
The Installer performs the following steps when the Create Database Objects option is selected.
Install the UTLREF package as it is needed by the cartridge:
svrmgr> @ORACLE_HOME/rdbms/admin/utlref.sql
svrmgr> create user ORDSYS identified by <password>;
svrmgr> grant connect, resource, create library to ORDSYS;
svrmgr>connect ORDSYS/<password>; svrmgr> @ORACLE_HOME/ord/ts/admin/ordinst.sql
Previous | Table of Contents | Next |