Welcome to DediSys
Search  
Main Menu  

Online  
There are 3 unlogged users and 0 registered users online.

You can log-in or register for a user account here.

  

Oracle Applications (11.5.10.2) Installation on Oracle Enterprise Linux 4.5

Posted by: admin on Jul 06, 2009 - 08:33 PM
Linux 
Oracle Applications (11.5.10.2) Installation on Oracle Enterprise Linux 4.5 This article is intended as a brief guide to installing Oracle Applications (11.5.10.2) on Oracle Enterprise Linux 4.5. The article is based on a server installation with a minimum of 2G swap, secure Linux disabled and the following package groups installed:
  • X Window System
  • GNOME Desktop Environment
  • Editors
  • Graphical Internet
  • Server Configuration Tools
  • Development Tools
  • Administration Tools
  • System Tools
Alternative base installations may require additional packages to be loaded.
<h2>Download Software</h2> Download two additional packages from Metalink Patch 4198954.

Make sure an appropriate Java JDK (1.3.1) is available on the system.
<h2>Unpack Files</h2> First unzip the Oracle patch:
<source>
unzip p4198954_21_LINUX.zip
</source> Next, create a staging area for the Oracle Applications software:
<blockquote>
mkdir /Stage11i
cd /Stage11i

# Start Here
mkdir startCD

# APPL_TOP
mkdir oraApps

# RDBMS
mkdir oraDB

# Tools
mkdir oraiAS

# Databases
mkdir oraAppDB
</blockquote> Copy the contents of all the DVDs into the appropriate directories.
<h2>Hosts File</h2> The /etc/hosts file must contain a fully qualified name for the server:
<blockquote>
<IP-address>  <fully-qualified-machine-name>  <machine-name>
</blockquote> <h2>Set Kernel Parameters</h2> Add the following lines to the /etc/sysctl.conf file:
<blockquote>
kernel.shmmax = 2147483648
kernel.shmmni = 100
kernel.shmall = 2097152
# semaphores: semmsl, semmns, semopm, semmni
kernel.sem = 100 256 100 100
fs.file-max = 327679
kernel.hostname   = testapps01.localdomain  #<--- full qualified hostname !!
kernel.domainname = localdomain             #<--- correct domain name !!
</blockquote> Run the following command to change the current kernel parameters: <blockquote>
/sbin/sysctl -p
</blockquote> Add the following lines to the /etc/security/limits.conf file:
<blockquote>
oracle soft nofile 65536
oracle hard nofile 65536
oracle soft nproc 16384
oracle hard nproc 16384
</blockquote> <h2>Setup</h2> The following additional packages are required. Depending on the update/respin version of Enterprise Linux, the exact package versions and locations may vary.
<blockquote>
alsa-lib-devel-*
audiofile-devel-*
compat-db-*
compat-gcc-32-3*
compat-gcc-32-c++-3*
compat-libcwait-2*
compat-libgcc-296-2*
compat-libstdc++-296-2*
compat-oracle-rhel4-1*
esound-0*
esound-devel-0*
fontconfig-devel-2*
freetype-devel-2*
gcc-3*
gcc-c++-3*
glib-1*
glib-devel-1*
gnome-libs-1*
gnome-libs-devel-1*
gtk+-devel-1*
gtk2-devel-2*
imlib-1*
imlib-devel-1*
jdk-1*
libaio-0*
libaio-devel-0*
libjpeg-devel-*
libtiff-devel-*
libungif-devel-*
libungif-progs-*
make-3*
openmotif21*
ORBit-devel-*
xorg-x11-deprecated-libs-6*
xorg-x11-deprecated-libs-devel-6*
xorg-x11-devel-*
</blockquote> Due to all the package inter-dependencies, it probably makes sense to copy all these packages from the CDs to a single directory, then install then using the following command. For convenience, I wrapped all the necessary packages for an OEL 4.5 installation into a single tar file (11i-rh4-rpms.tar), making subsequent installations much simpler.
<blockquote>
rpm -Uvh *.rpm
</blockquote> Install the packages associated with Patch 4198954:
<blockquote>
cd 4198954
rpm -Uvh compat-oracle-rhel4-1*
rpm -Uvh compat-libcwait-2*
</blockquote> Create the new groups and users:
<blockquote>
groupadd oinstall
groupadd dba
groupadd oper
groupadd apache

useradd -g oinstall -G dba oracle
passwd oracle

useradd -g oinstall -G apache apache
passwd apache
</blockquote> Create the directories in which the Oracle software will be installed:
<blockquote>
mkdir -p /u01
chown -R oracle:oinstall /u01
</blockquote> Login as the oracle user and add the following line at the end of the .bash_profile file:
<blockquote>
# Oracle 9i
LD_ASSUME_KERNEL=2.4.19; export LD_ASSUME_KERNEL
</blockquote> <h2>Installation</h2> Log into the oracle user. If you are using X emulation then set the DISPLAY environmental variable:
<blockquote>
DISPLAY=<machine-name>:0.0; export DISPLAY
</blockquote> Start the Rapid Install Wizard by issuing the following commands:
<blockquote>
cd /Stage11i/startCD/Disk1/rapidwiz/
chmod u+x rapidwiz
./rapidwiz
</blockquote> Follow any instructions and rerun as requested. The Rapid Installation Wizard installation is shown below.
  1. Click the "Next" button on the welcome screen.

    <img src="/www/images/OracleApps_11_5_10_2_Installation-on-OEL45_files/01-Welcome.jpg" alt="Welcome" />

  2. Accept the default "Install Oracle Applications E-Business 11i" option by clicking the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/02-SelectWizardOperation.jpg" alt="Select Wizard Operation" />

  3. Select the "No" option, then click the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/03-LoadConfiguration.jpg" alt="Load Configuration" />

  4. Select the "Single-node" option, then click the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/04-InstallType.jpg" alt="Install Type" />

  5. Select the "fresh database" database type, enter a database name, in this case I used "PLAY", then click the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/05-DefineDatabaseType.jpg" alt="Define Database Type" />

  6. Enter the appropriate base directory, in this case I used "/u01/oracle", then click the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/06-DatabaseInstallInformation.jpg" alt="Database Install Information" />

  7. Select the "E-Business Suite licensing" option, then click the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/07-SelectLicensingType.jpg" alt="Select Licensing Type" />

  8. Accept the default products by clicking the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/08-LicenseAdditionalProducts.jpg" alt="License Additional Products" />

  9. Select the appropriate country functionality, then click the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/09-SelectCountrySpecificFunctionalities.jpg" alt="Select Country Specific Functionalities" />

  10. Select any additional language support if necessary, then click the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/10-SelectAdditionalLanguages.jpg" alt="Select Additional Languages" />

  11. Select the appropriate territory and characterset information, then click the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/11-SelectInternationalizationSettings.jpg" alt="Select Internationalization Settings" />

  12. Enter the appropriate base directory, in this case I used "/u01/oracle", then click the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/12-ConfigurationInformationForNode.jpg" alt="Configuration Information For Node" />

  13. Accept the global settings by clicking the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/13-GlobalSystemSettings.jpg" alt="Global System Settings" />

  14. Note the location of the config files. It's worth taking a copy of this file as it comes in hady when reloading or upgrading the software. Click the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/14-SaveInstanceSpecificConfiguration.jpg" alt="Save Instance Specific Configuration" />

  15. Wait for the system checks to complete.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/15-SystemCheckStatus.jpg" alt="System Check Status" />

  16. Assuming all the system checks were completed successfully, click the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/16-ValidateSystemConfiguration.jpg" alt="Validate System Configuration" />

  17. Click the "Next" button on the installation review screen.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/17-ComponentInstallationReview.jpg" alt="Component Installation Review" />

  18. Click the "Yes" button to start the installation.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/18-InstallationConfirmation.jpg" alt="Installation Confirmation" />

  19. Wait while the installation takes place.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/19-InstallingOracleApplications.jpg" alt="Installing Oracle Applications" />

  20. Assuming all the post-install checks are successful, click the "Next" button.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/20-ValidateSystemConfiguration.jpg" alt="Validate System Configuration" />

  21. Click the "Finish button to exit the Rapid Install Wizard.

    <img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/21-CompletedInstallation.jpg" alt="Completed Installation" />

<h2>Post Installation</h2> Adjust the following paths and commands by replacing "play" and "PLAY" with the database name you chose during the installation.

Add the following into the "/home/oracle/.bash_profile" file.
<blockquote>
DB_HOME=/u01/oracle/playdb/9.2.0; export DB_HOME
IAS_HOME=/u01/oracle/playora/iAS; export IAS_HOME
APACHE_HOME=$IAS_HOME/Apache/Apache; export APACHE_HOME
APPL_TOP=/u01/oracle/playappl; export APPL_TOP
COMMON_TOP=/u01/oracle/playcomn; export COMMON_TOP
CLIENT_HOME=/u01/oracle/playora/8.0.6; export CLIENT_HOME
</blockquote> To switch environments, move to the appropriate home directory and run the environment script, like:
<blockquote>
cd $DB_HOME
. ./PLAY_testapps01.env
</blockquote> <h2>Shutdown/Startup</h2> Adjust the following paths and commands by replacing "play" and "PLAY" with the database name you chose during the installation.

To shutdown the system issue the following commands.
<blockquote>
cd $COMMON_TOP/admin/scripts/PLAY_testapps01/
./adstpall.sh apps/apps

cd $DB_HOME
. ./PLAY_testapps01.env
cd $ORACLE_HOME/appsutil/scripts/PLAY_testapps01
./addlnctl.sh stop PLAY
./addbctl.sh stop immediate
</blockquote> To start the system issue the following commands.
<blockquote>
cd $DB_HOME
. ./PLAY_testapps01.env
cd $ORACLE_HOME/appsutil/scripts/PLAY_testapps01
./addlnctl.sh start PLAY
./addbctl.sh start

cd $COMMON_TOP/admin/scripts/PLAY_testapps01/
./adstrtal.sh apps/apps
./adcmctl.sh start apps/apps
</blockquote> <h2>Rapid Installation Wizard Portal</h2> Once the installation is complete, the Rapid Installation Portal can be accessed using the following information.
  • URL: http://machine-name:8000
  • Username: SYSADMIN
  • Password: SYSADMIN
The front screen of the portal is shown below.

<img src="OracleApps_11_5_10_2_Installation-on-OEL45_files/22-RapidInstallPortal.jpg" alt="" />

To change the SYSADMIN passowrd do the following:
  • Log in to the eBusiness Suite homepage as SYSADMIN
  • Click on the "preferences" link (top-right).
  • Enter the old and new passwords.
For more information see:
---
source: http://www.oracle-base.com/articles/apps/OracleApps_11_5_10_2_InstallationOnOEL45.php

  
Login  






 Log in Problems?
 New User? Sign Up!

Copyright (C) 2001 DediSys.or.id
powered by postnuke
Best Webhosting by MWN