EBS Installation Single Node

download EBS Installation Single Node

If you can't read please download the document

description

EBS

Transcript of EBS Installation Single Node

How To: Install Oracle EBS R12.1.1 on Linux (1 Node)-------------------------------------------------------------------------------------------Software Used--------------------VMware 10Oracle Enterprise Linux: Enterprise-R5-U5-Server-x86_64-dvdOracle EBS R12.1.1Download Oracle EBS R12.1.1 & Oracle Linux from "edelivery.oracle.com"-------------------------Install Oracle Linux----------------------------------------------------install VMware tools--------------------------------------------------------------Copy software to your VMUnzip your software-----------------------------------Unzip all parts >> unzip '*.unzip'Remove all zipped folders to save space----------------------------------------------configure linux & VMware network----------------------------------------------IP: 192.168.40.50Subnet: 255.255.255.0Gateway & DNS: 192.168.40.2Hosts file: ebsr12.oraebs.com--------------------------configure linux yum --------------------------# cd /etc/yum.repos.d# wget http://public-yum.oracle.com/public-yum-el5.repo---------------------------------Check Missed Packages---------------------------------rpm -q --qf '%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})\n' \binutils control-center gcc gcc-c++ glibc glibc-common \libstdc++ libstdc++-devel make sysstat libaio \libaio-devel glibc-devel libgcc \gdbm libgomp util-linux xorg-x11-libs-compat \elfutils-libelf-devel elfutils-libelf-devel-static \libaio-devel xorg-x11-libs-compat \unixODBC unixODBC-devel kernel-headers binutils openmotif21 make gdbm \libXp libgomp------------------Install Missed------------------yum -y install util-linux unzip gdbm sysstat binutils gcc gcc-c++ libaio-devel glibc-devel libstdc++-devel elfutils-libelf-devel elfutils-libelf-devel-static unixODBC unixODBC-devel kernel-headers libXp.so.6 make ksh------------------------------------------------------Download openmotif & xorg liberary from------------------------------------------------------https://oss.oracle.com/projects/compat-oracle/files/Enterprise_Linux/Choose the suitable package for your Linux version (5,6 OR 7)install packagesrpm -Uvh openmotifrpm -Uvh xorg-----------------------------------Modify Kernel Parameters-----------------------------------Shared memory---------------------echo "kernel.shmmax=2147483648" >> /etc/sysctl.confecho "kernel.sem=250 32000 100 128" >> /etc/sysctl.confecho "fs.file-max=65536" >> /etc/sysctl.confecho "net.ipv4.ip_local_port_range = 2024 65000" >> /etc/sysctl.conf-----------------------------------------------Modify number of open descriptors-----------------------------------------------echo "hard nofile 65535" >> /etc/security/limits.confecho "soft nofile 4096" >> /etc/security/limits.confecho "hard nproc 16384" >> /etc/security/limits.confecho "soft nproc 2047" >> /etc/security/limits.conf---------------------vi /etc/resolv.conf---------------------options attempts:5options timeout:15---------------------temp dir---------------------export TMPDIR=/tmpexport TMP=/tmp-----------------------------------Solve Oracle Application Server error-----------------------------------Link to Motif library in Oracle Application Server 10.1.2unlink /usr/lib/libXtst.so.6ln -s /usr/X11R6/lib/libXtst.so.6.1 /usr/lib/libXtst.so.6-------------------------------------------Solve Oracle HTTP server error -------------------------------------------ln -s /usr/lib/libgdbm.so.2.0.0 /usr/lib/libdb.so.2ORif you have patch p6078836_101330_LINUX.zip from MOScp libdb.so.2 /usr/lib-------------------------------------------OS Users and group creation-------------------------------------------groupadd dbauseradd oracle -g dbauseradd applmgr -g dbapasswd oraclepasswd applmgr----------Let system update the changes without restarting----------sysctl -p----------Permissions are given to oracle and applmgr so that they can write to /d01/oracle----------mkdir -p /d01/oraclechgrp -R dba /d01 | chmod g+rwx /d01/oracle---------------oraInst.loc---------------vi /etc/oraInst.locinventory_loc=/d01/oracle/oraInventory------------------------run Rapid Installer------------------------sh /ebs/Stage/startCD/Disk1/rapidwiz/rapidwizFinishing your Installation------------------------Setup environment files for oracle & applmgr------------------------su - oraclevi .bash_profileadd this line after PATH ". /d01/oracle/PROD/db/tech_st/11.1.0/PROD_ebs12.env"su - applmgrvi .bash_profileadd this line after PATH ". /d01/oracle/PROD/apps/apps_st/appl/APPSPROD_ebsr12.env"----------------Default Passwords----------------Database:SYS/change_on_installSYSTEM/managerApplication Schema passwords:APPS Schema: APPS/APPSGWYUID User: APPLSYSPUB/PUBGuest User: GUEST/ORACLEApplication Users:SYSADMIN/SYSADMINMFG/WELCOMEOPERATIONS/WELCOMESERVICES/WELCOMEMRC/WELCOMEHRMS/WELCOME--------------Environment File Database ORACLE_HOME environment file passes instantiated variables test: File = /d01/oracle/PROD/db/tech_st/11.1.0/PROD_ebs.envsu - oraclevi .bash_profileadd this line after PATH ". /d01/oracle/PROD/db/tech_st/11.1.0/PROD_ebs.env" Apps ORACLE_HOME environment file passes instantiated variables test: File = /d01/oracle/PROD/apps/apps_st/appl/APPSPROD_ebs.envsu - applmgrvi .bash_profileadd this line after PATH ". /d01/oracle/PROD/apps/apps_st/appl/APPSPROD_ebs.env"-----------------------------loginhttp://.:/OA_HTML/AppsLogin-----------------------------Configuration file$ORACLE_HOME/appsutil/conf_.txt$INST_TOP/conf_.txt/tmp/ During Installation only-----------------------------Rapid Install Log FilesDatabase$ORACLE_HOME/appsutil/log//.logApps/d01/oracle/PROD/inst/apps//logs/.log--------------run Java 7 Problem----------------killall -9 firefoxmkdir /opt/javachmod 777 javaupdate-alternatives --install /usr/bin/java java /opt/java/jre1.7.0_80/bin/java 1update-alternatives --set java /opt/java/jre1.7.0_80/bin/javaexport JAVA_HOME="/opt/java/jre1.7.0_80/bin/java"for 32-bitcd /usr/lib/mozilla/pluginsfor 64-bitcd /usr/lib64/mozilla/pluginsln -sf /opt/java/jre1.7.0_80/lib/amd64/libnpjp2.sothen test your java plugin----------------run Java 8 Problem----------------killall -9 firefoxmkdir /opt/javaupdate-alternatives --install /usr/bin/java java /opt/java/jre1.8.0_05/bin/java 1update-alternatives --set java /opt/java/jre1.8.0_40/bin/javaexport JAVA_HOME="/opt/java/jre1.8.0_40/bin/java"for 32-bitcd /usr/lib/mozilla/pluginsfor 64-bitcd /usr/lib64/mozilla/pluginsln -sf /opt/java/jre1.8.0_40/lib/amd64/libnpjp2.so