Problems installing Oracle 9iAS version 9.0.2.0.1 on Redhat Linux 8.0
---------------------------------------------------------------------
1. some software need to be installed
[oracle@igloo 9ias]$ rpm -qa|grep ksh
pdksh-5.2.14-19
[oracle@igloo 9ias]$ rpm -qa|grep binutils
binutils-2.13.90.0.2-2
2. create fuser link under /bin directory
[oracle@igloo 9ias]$ ls -al /sbin/fuser
-rwxr-xr-x 1 root root 22794 Jun 24 09:11 /sbin/fuser
[oracle@igloo 9ias]$ ls -al /bin/fuser
lrwxrwxrwx 1 root root 13 Dec 10 12:57 /bin/fuser -> ../sbin/fuser
3. Maybe maybe need user root to set up shmmax before installation
[root@igloo root]# cat bin/setup-portal.sh
#!/bin/sh
/bin/cat /proc/sys/kernel/shmmax
echo `expr 1024 \* 1024 \* 1024` > /proc/sys/kernel/shmmax
/bin/cat /proc/sys/kernel/shmmax
4. modify 9ias/bin/genclntsh during the installation
[oracle@igloo 9ias]$ diff bin/genclntsh bin/genclntsh.orig
182c182
< ${LD} ${LD_RUNTIME} ${LD_OPT} ${LD_OUT} \
---
> ${LD} ${LD_RUNTIME} ${LD_OPT} ${LD_OUT} ${LD_SELF_CONTAINED} \
5. create dbs/orapw file during the installation. Otherwise will get the
following errors:
ORA-01503: Create control file failed
ORA-01990: error opening password file "dbs/orapw"
ORA-27037: unable to obtain file status
[oracle@igloo 9ias]$ bin/orapwd -h
Usage: orapwd file=<fname> password=<password> entries=<users>
where
file - name of password file (mand),
password - password for SYS and INTERNAL (mand),
entries - maximum number of distinct DBA and OPERs (opt),
There are no spaces around the equal-to (=) character.
[oracle@igloo 9ias]$ bin/orapwd file=dbs/orapw password="password for system" entries=10
sys/change_on_install
system/manager
scott/tiger
ias_admin/password for ias_admin
[oracle@igloo 9ias]$ ls -al dbs/
-rwSr----- 1 oracle oinstall 2560 Dec 10 18:25 orapw
You can also run command:
[oracle@igloo bin]$ /servers/oracle/9ias/bin/dbca -progress_only -createDatabase -templateName Oracle9iAS_Repository_Database.dbc -gdbname iasdb.igloo.its.unimacq.edu.au -sid iasdb -datafileJarLocation /servers/oracle/9ias/assistants/dbca/templates -datafileDestination /servers/oracle/9ias/oradata -responseFile NO_VALUE -characterset WE8MSWIN1252 -passwordDialog false -obfuscatedPasswords false
But still another problem with OID setting up. JRE 1.1.8 bundled with
oracle doesn't run correctly under RedHat 8.0
[oracle@igloo 9ias]$ /servers/oracle/9ias/ldap/postcfg/postcfg /supwd 03724b3e85efe04d4c22cfdc936b9266a3a6181d9369144e97ab5b178ba93c95d0 1521
$0 = /servers/oracle/9ias/ldap/postcfg/postcfg
$1 = /supwd
$2 = 03724b3e85efe04d4c22cfdc936b9266a3a6181d9369144e97ab5b178ba93c95d0
$3 = 1521
$4 =
Parameter "orahome" = /servers/oracle/9ias
Parameter "orasid" = iasdb
Parameter "progressonly" = true
Parameter "startOID" = true
Parameter "oidport" = 4032
Parameter "oidsslport" = 4031
Parameter "gdbname" = iasdb.igloo.its.unimacq.edu.au
Parameter "config" = true
Parameter "subscribe" = true
Parameter "apachehost" = igloo.its.unimacq.edu.au
Parameter "apacheport" = 7777
Parameter "supwd" = ***
Parameter "lsnrport" = 1521
Inet: igloo.its.unimacq.edu.au
Could not contact OID server.
Parameter "crypto" = true
Parameter "orahome" = /servers/oracle/9ias
Parameter "orasid" = iasdb
Parameter "instance" = iasdb.igloo.its.unimacq.edu.au
Parameter "oidport" = 4032
Parameter "supwd" = ***
Parameter "provision" = true
Parameter "progressonly" = true
Parameter "lsnrport" = 1521
Could not contact OID server.
|