| Home -> oracle -> Oracle 9i release 1 (9.0.1) on RedHat 7.3 |
Oracle 9i release 1 (9.0.1) installation on Red Hat Linux 7.3This document provides quick installation guide for Oracle 9i release 1 (9.0.1) database on RedHat linux 7.3.Please note that oracle 9i release 1 is not certified to run on RedHat 7.3, so you should not use this combination on a production server. You can examine Oracle certification matrix at Metalink
Contents
1. Things you need before you start
2. Unpacking downloaded installation filesIf you downloaded database installation files from Oracle site (Linux9i_Disk1.cpio.gz, Linux9i_Disk2.cpio.gz and Linux9i_Disk3.cpio.gz) gunzip them somewhere and you'll get three .cpio files.Now unpack cpio archives: # cpio -idmv<Linux9i_Disk1.cpio # cpio -idmv<Linux9i_Disk2.cpio # cpio -idmv<Linux9i_Disk3.cpioNow you should have three directories (Disk1, Disk2 and Disk3) containing installation files. 3. Installation procedureInstall Java development kit, either JDK-1.1.8_v3 or JDK-1.3.1I used JDK-1.3.1. According to jdk documentation, install jdk under /usr/local:
# tar -xvjf your_JDK_version -C /usr/local/(replace your_JDK_version with filename of your downloaded JDK, e.g. j2sdk-1.3.1-FCS-linux-i386.tar.bz2) Create user oracle and dependent groups: # groupadd oinstall # groupadd dba # useradd -g oinstall -G dba oracle # passwd oracleCreate user that apache with primary group oinstall: # groupadd apache # useradd -g oinstall -G apache apache # passwd apacheCreate directories in which oracle software will be installed. Oracle recommends OFA - Optimal Flexible Architecture (see oracle installation guide), but in this example everything will be installed under /home/oracle: # mkdir /home/oracle/product # mkdir /home/oracle/product/9.0.1 # chown -R oracle.oinstall /home/oracle/* # mkdir /var/opt/oracle # chown oracle.dba /var/opt/oracleNow login as user oracle and put the following lines at the end of your .bashrc:
#oracle 9i
export ORACLE_HOME=/home/oracle/product/9.0.1
export ORACLE_BASE=/home/oracle
export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
export ORACLE_TERM=xterm
export PATH=$PATH:$ORACLE_HOME/bin:/usr/local/java/bin
export TNS_ADMIN=$ORACLE_HOME/config
# change this NLS settings to suit your taste
# or don't put anything and fall back to
# american NLS settings
export NLS_LANG='croatian_croatia.ee8iso8859p2'
export NLS_SORT=xcroatian
if [ -z $LD_LIBRARY_PATH ]
then
export LD_LIBRARY_PATH=$ORACLE_HOME/lib
else
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib
fi
if [ -z $CLASSPATH ]
then
CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
CLASSPATH=$CLASSPATH:$ORACLE_HOME/network/jlib
export CLASSPATH
else
CLASSPATH=$CLASSPATH:$ORACLE_HOME/JRE:$ORACLE_HOME/jlib
CLASSPATH=$CLASSPATH:$ORACLE_HOME/rdbms/jlib:$ORACLE_HOME/network/jlib
export CLASSPATH
fi
Since I am from Croatia, I use Croatian national language support (NLS_LANG, NLS_DATE_LANGUAGE, NLS_SORT and NLS_DATE_FORMAT).
You should set these variables to suit your needs. Note that all other variables defined here are mandatory.
Listing of valid Oracle NLS Data parameters including supported languages, territories and storage character sets can be found here. Now .bashrc should be executed in order to initialize these variables:$ source /home/.bashrcor just log off and than back on as user oracle. If you use some shell other than bash (tcsh, sh, ...) these variables should be set according to syntax of your shell and put in script that automatically executes at user login. Oracle installer MUST be run from Xwindows by user oracle. Start Xwindows and from terminal window and start the installer: $ /wherever/you/unpacked/it/Disk1/runInstalleror (if you have the CD set): $ /mnt/cdrom/runInstallerIf you install oracle from CD, you should not change directory to CD-ROM and run installer from there because later on you will not be able to unmount the first CD. 4. The genclntsh issueIn order to properly relink the oracle software you should edit the$ORACLE_HOME/bin/genclntsh script before
the relink process starts. After the files start installing, open $ORACLE_HOME/bin/genclntsh file with your favorite editor
(Don't worry, you'll have plenty of time before relink starts :), find the line containingLD_SELF_CONTAINED="-z defs"(line 147) and change it to LD_SELF_CONTAINED=""Now all of the oracle software should relink properly. 5. Starting the database for the first time5.1 Starting the databaseIn.bashrc (if you use bash shell) for user oracle add variable
ORACLE_SID=your_database_instance.
Default value for instance is ORCL, so your line would look like this:
export ORACLE_SID=ORCLNow we should set this variable for current session: $ export ORACLE_SID=ORCLalternatively, you can log off and than back on. Now open /etc/oratab with your favorite editor, and make sure that it contains the following line:
orcl:/home/oracle/product/9.0.1:Y(you should replace 'orcl' with the name of your instance) Let's actually start the database now: $ dbstartOr you can do it the other way:
[ora9@marvin ora9]$ sqlplus /nolog
SQL*Plus: Release 9.0.1.0.0 - Production on �t Srp 4 00:28:08 2002
(c) Copyright 2001 Oracle Corporation. All rights reserved.
SQL> connect / as sysdba
Connected to an idle instance.
SQL> startup
ORACLE instance started.
Total System Global Area 286025124 bytes
Fixed Size 279972 bytes
Variable Size 218103808 bytes
Database Buffers 67108864 bytes
Redo Buffers 532480 bytes
Database mounted.
Database opened.
SQL> select count (1) from tab;
COUNT(1)
----------
2172
SQL> select * from scott.dept;
DEPTNO DNAME LOC
---------- -------------- -------------
10 ACCOUNTING NEW YORK
20 RESEARCH DALLAS
30 SALES CHICAGO
40 OPERATIONS BOSTON
SQL> exit
Disconnected from Oracle9i Enterprise Edition Release 9.0.1.0.0 - Production
With the Partitioning option
JServer Release 9.0.1.0.0 - Production
[ora9@marvin ora9]$
5.2 Shutting down the databaseTo shut down the database use:$ dbshutor through the SQL*PLUS: [ora9@marvin ora9]$ sqlplus /nolog SQL*Plus: Release 9.0.1.0.0 - Production on �t Srp 4 00:35:13 2002 (c) Copyright 2001 Oracle Corporation. All rights reserved. SQL> connect / as sysdba Connected. SQL> shutdown Database closed. Database dismounted. ORACLE instance shut down. SQL> exit Disconnected from Oracle9i Enterprise Edition Release 9.0.1.0.0 - Production With the Partitioning option JServer Release 9.0.1.0.0 - Production [ora9@marvin ora9]$ Notes on memory usageI have 256M RAM, and 450M swap partition. First time I tried installing 9i I ran completely out of memory, so I had to add more swap space on the run. Here's a little tip how to do it:First, make a file that will act as additional swap space, let's say 500 Megs: # dd if=/dev/zero of=tempswap bs=1M count=500Now we should change the file permissions: # chmod 600 tempswapFinally we format the "partition" as swap and add it to swap space: # mke2fs tempswap # mkswap tempswap # swapon tempswap My actual configurationHere are the actual values I used, just so you don't get confused with the SQL*plus output:Oracle account: ora9 ORACLE_HOME: /public/ora9/product/9i ORACLE_SID: orcl9 My linux box is an AMD Athlon, 700MHz, 256M RAM, Redhat linux 7.3 I hope this helps. Anyway, if you have any questions or comments regarding this text, feel free
to mail me at denis.klaric@in2.hr.
|
| Home -> oracle -> Oracle 9i (9.0.1) on RedHat 7.3 |
|
|
|