Introduction:This document gives a step by step approach for installing OCS (Oracle Collabsuite) 10g. This is created from the Oracle documentation available on OTN. This serves as a simple guide for installation of OCS 10g.
Setup Details:
OS Detail :
bash-2.05b$ uname -a
Linux ap6059rt 2.4.21-37.0.0.1.4.ELhugemem #1 SMP Fri Feb 24 18:01:54 PST 2006 i686 i686 i386 GNU/Linux
bash-2.05b$ cat /etc/issue
Red Hat Enterprise Linux AS release 3 (Taroon Update 6)
Kernel \r on an \m
OCS 10g Version : Oracle Collabsuite 10g Release I (10.1.2.0.0)
Pre – Installation Steps
Download the required OCS software zip files to one of the directory on slot and unzip the same in a separate directory.
bash-2.05b$ ls -rlttotal 12
drwxrwxrwx 2 oracle oracle 4096 Mar 5 16:08 OCS-Supp-DVD
drwxr-xr-x 2 oracle oracle 4096 Mar 5 16:08 OCS-Main-DVDs
Perform the following pre-reqs steps before starting the installation. These are the pre-installation steps.
1) Check the free space on slot and also under /tmp directory
[oracle@ap6059rt /slot03]$ df -k .
Filesystem 1K-blocks Used Available Use% Mounted on
ap1079nap-vlan901:/vol/rtvol37/slot1474
140509184 4416256 136092928 4% /SLOTS/slot03
[oracle@ap6059rt /slot03]$ df -k /tmp
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda2 46354176 183516 43815936 1% /tmp
[oracle@ap6059rt /slot03]$
2) Check the swap memory available. It should be atleast twice that of RAM memory.
[oracle@ap6059rt /slot03]$ grep SwapTotal /proc/meminfoSwapTotal: 24587472 kB
visual:
visual id: 0x32
class: TrueColor
depth: 16 planes
available colormap entries: 64 per subfield
red, green, blue masks: 0xf800, 0x7e0, 0x1f
significant bits in color specification: 6 bits
3) Check the Linux Red Hat release and important packages
Note:- Login as root and then perform these tasks.
[jmyang@ap6059rt /slot03]# cat /etc/redhat-release
Red Hat Enterprise Linux AS release 3 (Taroon Update 6)
[jmyang@ap6059rt /slot03]# rpm -q glibc-2.3.2
glibc-2.3.2-95.37
[jmyang@ap6059rt /slot03]# rpm -q glibc-common-2.3.2
glibc-common-2.3.2-95.37
[jmyang@ap6059rt /slot03]# rpm -q binutils-2.14.90.0.4
binutils-2.14.90.0.4-39
[jmyang@ap6059rt /slot03]# rpm -q compat-db-4.0.14
compat-db-4.0.14-5.1
[jmyang@ap6059rt /slot03]# rpm -q compat-glibc-7.x
compat-glibc-7.x-2.2.4.32.6
[jmyang@ap6059rt /slot03]# rpm -q compat-libstdc++-7.3
compat-libstdc++-7.3-2.96.128
[jmyang@ap6059rt /slot03]# rpm -q compat-libstdc++-devel
compat-libstdc++-devel-7.3-2.96.128
[jmyang@ap6059rt /slot03]# rpm -q gcc-3.2.3
gcc-3.2.3-53
[jmyang@ap6059rt /slot03]# rpm -q gcc-c++-3.2.3
gcc-c++-3.2.3-53
[jmyang@ap6059rt /slot03]# rpm -q libstdc++-3.2.3
libstdc++-3.2.3-53
[jmyang@ap6059rt /slot03]# rpm -q libstdc++-devel-3.2.3
libstdc++-devel-3.2.3-53
[jmyang@ap6059rt /slot03]# rpm -q openmotif21-2.1.30
openmotif21-2.1.30-9.RHEL3.6
[jmyang@ap6059rt /slot03]# rpm -q pdksh-5.2.14
pdksh-5.2.14-21
[jmyang@ap6059rt /slot03]# rpm -q setarch-1.3
setarch-1.3-1
[jmyang@ap6059rt /slot03]# rpm -q make-3.79.1
make-3.79.1-17.1
[jmyang@ap6059rt /slot03]# rpm -q gnome-libs-1.4.1.2.90
gnome-libs-1.4.1.2.90-34.2
[jmyang@ap6059rt /slot03]# rpm -q sysstat-5.0.5
sysstat-5.0.5-5.rhel3 4) Checking Kernel parameters.
4) Checking Kernel parameters
Note:- All these values should be updated as a root user. So login as root and then perform these tasks.
shmall is -sh-2.05b# cat /proc/sys/kernel/shmall
2097152
it is smaller than 3279547
so we need to modify the /etc/sysctl.conf
Once this file is modified we can run /sbin/sysctl -p for this to take effect.
You can check all the kernel parameters using
sh-2.05b# /sbin/sysctl -p
net.ipv4.ip_forward = 0
net.ipv4.conf.default.rp_filter = 1
kernel.sysrq = 1
kernel.core_uses_pid = 1
fs.file-max = 1677721
vm.pagecache = 1 15 15
kernel.shmmax = 4294967295
kernel.shmmni = 4096
kernel.shmall = 3279547
net.ipv4.tcp_tw_recycle = 1
kernel.sem = 1100 32000 100 1100
kernel.msgmnb = 65535
kernel.msgmni = 2878
kernel.msgmax = 8192
net.ipv4.ip_local_port_range = 10000 65000
net.core.rmem_default = 262144
net.core.rmem_max = 262144
net.core.wmem_default = 262144
net.core.wmem_max = 262144
kernel.sysrq-key = 64
5) To improve the performance of the software on Linux system, you must increase the following shell limits for oracle user
– login as root
– Add the following lines to /etc/security/limits.conf file:
- soft nproc 4096
- hard nproc 16384
- soft nofile 16384
- hard nofile 65536
– Add the following lines to the /etc/pam.d/login file, if it does not already exist:
session required /lib/security/pam_limits.so
– Add the following lines to the /etc/pam.d/su
file, if you use su to switch to oracle account
6) Check your shell and add the below content accordingly
sh-2.05b# echo $SHELL
/usr/local/bin/tcsh
- For the C or tch shell, add the following lines to the /etc/csh.login file:
if ( $USER == “oracle” ) then
limit maxproc 16384
limit descriptors 65536
endif
- For the Bourne, Bash, or Korn shell, add the following lines to the /etc/profile file:
if [ $USER = “oracle” ]; then
if [ $SHELL = “/bin/ksh” ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi
7) Location of the Default Identity Management Realm has been set in /etc/hosts
The hosts file should use the following format:
ip_address fully_qualified_hostname short_hostname
Example:
123.45.67.89 primaryHost.mydomain.com primaryHost
sh-2.05b$ cat /etc/hosts
127.0.0.1 localhost.localdomain localhost
140.87.205.80 ap6059rt.us.oracle.com ap6059rt
This completes all pre-reqs steps. Now starting with installation.
Installation Steps
Unzip the downloaded DVD in one of the directories before starting the installation.
For Example in my case the location for ZIP was
sh-2.05b$ pwd/slot03/ocs10g/downloads/OCS-Main-DVDs
sh-2.05b$ ls -lrt
total 3725448
-rw-r–r– 1 oracle oracle 1840273814 Mar 5 14:10 B24986-01_1of2.zip
-rw-r–r– 1 oracle oracle 1967099379 Mar 5 14:42 B24986-01_2of2.zip
Created a directory call setup at /slot03/ocs10g/downloads location and unziped both the zip files in setup directory.
sh-2.05b$ cd /slot03/ocs10g/downloads/setup/
sh-2.05b$ unzip /slot03/ocs10g/downloads/OCS-Main-DVDs/B24986-01_1of2.zip
sh-2.05b$ unzip /slot03/ocs10g/downloads/OCS-Main-DVDs/B24986-01_2of2.zip
Your setup directory will now look like this
sh-2.05b$ cd /slot03/ocs10g/downloads/setup/
sh-2.05b$ ls -lrt
total 36
-rwxrwxrwx 1 oracle oracle 4715 Oct 26 2005 runInstaller
-rw-r–r– 1 oracle oracle 4410 Oct 27 2005 welcome.html
drwxrwxrwx 2 oracle oracle 4096 Nov 2 2005 response
drwxrwxrwx 5 oracle oracle 4096 Nov 2 2005 install
drwxrwxrwx 8 oracle oracle 4096 Nov 2 2005 doc
drwxrwxrwx 4 oracle oracle 4096 Nov 2 2005 calendar_standalone
drwxrwxrwx 8 oracle oracle 4096 Mar 5 22:06 stage
Another important thing before starting the installation is to rename a file /etc/tnsname.ora. If this file is present then installation will give error and will be terminated. So make sure to login as root user and rename this file to some other name
sh-2.05b$ mv /etc/tnsname.ora /etc/tnsname.ora.backup
Start the installation by running runInstaller present in unzipped directory (/slot03/ocs10g/downloads/setup/ in my case).
Make sure that the installation is started as oracle user and not as root.
sh-2.05b$ cd /slot03/ocs10g/downloads/setup
sh-2.05b$ ./runInstaller -invPtrLoc /slot03/oracle/product/ocs10g/oraInst.loc
Screen 0) A welcome screen will come. Click on next and go to next screen

Screen 1) Specify Inventory directory and Credential Specify the inventory directory and the group which will be th owner of inventory. In our case we want the user oracle to be the owner of inventory and its primary group is DBA. So we are providing the group for inventory as DBA

Screen 2) Specify File Location
Specify the ORACLE_HOME location where the software will be installed. Under this location 1 or 2 directories will be created (depending on your installation). Once will be for infra and other for application.

Screen 3) Select a product to install
select the product you want to install. We are here doing the complete installation. So we will be installing infra as well as application. Depending on your requirement you can choose either or both of them.

Screen 4) Installer will carryout the pre-reqs checking and will flag an error if any of the pre-reqs are not satisfied.

Screen 5) Language Selection
Select the language you want to install

Screen 6) This screen will summarize the selection done till now. Validate and click on next to go to next screen.

Screen 7) Select component to configure
You can select one or more component you want the installer to configure for you. In our case we are going for all the components.

Screen 8) Specify Namespace in Internet Directory
The distinguished name (DN) that you specify in the Specify Namespace in Internet Directory screen will be designated as the namespace in Oracle Internet Directory, where users and groups are administered.
A suggested namespace appears on the screen. The installer determines the suggested namespace from the /etc/hosts file. If it meets your deployment requirements, then select it. If not, enter another DN in the Custom Namespace field.

Screen 9) Specify database configuration option
Enter a name for the Oracle Collaboration Suite Database. You can give any name (less than 8 chars) for database or even accept the default one.

Screen 10) Specify database schema password
Its good to have common password for all account. This is to avoid confusion.

Screen 11) Specify Application Passwords
Its good to have same passwords as database user passwords. This is to avoid confusion.

Screen 12) Specify Oracle Mail Domain Information

Screen 13 – a) Specify port Configuration Options
In this screen specify the port you want your application to use. You can go with default port numbers of you can specify your own port numbers. When specifying custom ports, make sure that the port is not in use. You can check if the port is in use or not using netstat -an | grep <port no> command. Also if specifying the custom ports, then make sure that port numbers are above 1024. In our case, we changed the HTTP port number from 80 to 7779. Also SSl port has been changed from 443 to 4443. The ranges for the port is given in 3rd column.
Also note that these ports are for infra installation. When installing application, it will again ask for the ports.

Screen 13 – b) Also the port number of SMTP server was already in use. So you can change the port number from 25 to some unused port (example 30).

Screen 14) Warning
This screen will show a warning, since some of the ports are below 1024. Only root user is having access to ports below 1024. You can select the check box “I authorize SUID root actions” and click on next.

Screen 15) Installation summary.
Click on “Install” button to begin installation of infra.

Screen 16) Shows the installation progress for infra tier. Remember that in our installation, we have selected to install infra as well as application. So first it will install infra and then application. Installing infra also involves installing database also. This is shown in screen 17 below.
After this installation progress screen, when the installation comes to end, installer will ask to run root.sh as root user.
When such message appears, start another session and login as root. Run the required script and then come to this screen, click on OK. Do not click on OK before running root.sh.
During our installation, we faced some issue while running root.sh. We logged a bug 6870418 for the same and as per server team, the underlying filer was not having root privileges. After this bug is resolved, we were able to run root.sh 
Screen 17) Shows all the components of infra getting installed in the back screen. Database installation is in progress and is shown in front screen.

Screen 18) Shows the component progress during installation. After this screen infra installation completes and installer automatically starts application (mid tier) installation.

Screen 19) Specify port configuration options
Installer will ask for ports for the second time. These ports are for applicaiton (mid tier). Example there will be 2 HTTP server process that will run, one for infra and one for mid tier. So we have to specify HTTP port for both. Similar is the case with other ports as well. If you remember we have given 7779 initially for HTTP port of infra. We can change that here to 7778 or some thing else. Even if we keep the ports same as that of infra (example 7779), it will automatically select different ports. In our case we have kept the same port number as that of infra. (that is 7779 for HTTP, 4443 for SSL and 30 for SMTP. All other ports are having default values).After clicking next, it will show the installation progress for each component similar to screen Screen 18) and after the installation of all components of mid tier, installer will ask to run root.sh again. After running root.sh the installation will end.
================================================================= Use the following URL to access the Oracle Collaboration Suite Console :
http://ap6059rt.us.oracle.com:1810
Use the following URL to access the Oracle Collaboration Suite 10.1.2.0.0
Release Notes:
http://ap6059rt.us.oracle.com:7779/relnotes/toc.htm
Global Database Name: ocs10g.us.oracle.com
================================================================
Post Installation steps
For accessing database from UNIX prompt, you need to source the environment using the following export commands.
This will source the required ORACLE_HOME (infra) and other parameters mentioned below.
export ORACLE_HOME=/slot03/oracle/product/ocs10g/infra
export TNS_ADMIN=$ORACLE_HOME/network/admin
export ORACLE_SID=ocs10g
export PATH=$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/LIB:$LD_LIBRARY_PATH
- OID account can be unlocked as given below
sh-2.05b$ oidpasswd connect=ocs10g unlock_su_acct=true
OID DB user password:
OID super user account unlocked successfully.
- Performing Component-Specific Tasks
sh-2.05b# export ORACLE_HOME=/slot03/oracle/product/ocs10g/infra
sh-2.05b# export PATH=$ORACLE_HOME/bin:$PATH
sh-2.05b# tnslsnr listener_es -user 8000 -group 8000 &
- Configuring the Time-out Value in the sqlnet.ora File
Set following parameter in sqlnet.ora
SQLNET.EXPIRE_TIME = 10 References: