Monday 12 October 2015

Step-by-Setp installation guide of Self Service - Oracle portal Installation for JD Edwards

This step-by-step guide is done on SOLARIS system

Following component is needed to Install Self Service.
Please go thru oracle link http://docs.oracle.com/cd/E24705_01/doc.91/e21052/toc.htm before starting setup
  1. Install and Configure Oracle Database [11.2.0.1]
  2. Install Repository Creation using [RCU] – V37395-01
  3. Install jdk 1.7.0_79
  4. Installing Oracle WebLogic [10.3.6.0] Server
  5. Installing WebCenter Portal 11g [11.1.1.8.0]
  6. Configuring WebCenter
  7. Installation of required patches
  8. Starting nodeManager.sh & startWeblogic.sh
  9. Portal Login details
  10. Creation of new instance in Server Manager
  11. Register Portal
     
  1. Install and Configure Oracle Database [11.2.0.1]
Install Oracle Database [Pre-installation task]

a) Create necessary groups and a user. [Following instruction is to be done using root user id]

[code]
groupadd oinstall
groupadd dba
useradd -g oinstall -G dba -d /export/home/oracle -s /usr/bin/bash oracle
passwd oracle
[/code]

b) Create necessary folder for the installation

[code]
mkdir -p /u01/oracle/product/11.2.0/db_1
mkdir /export/home/oracle/tmp
[/code]

[code]
chown -R oracle:oinstall /export/home/oracle
[/code]

c) Change kernel parameters

[code]
projadd -U oracle -K "project.max-shm-memory=(priv,4g,deny)" oracle
projmod -sK "project.max-sem-nsems=(priv,256,deny)" oracle
projmod -sK "project.max-sem-ids=(priv,100,deny)" oracle
projmod -sK "project.max-shm-ids=(priv,100,deny)" oracle
echo "set maxuprc=16384" >> /etc/system
echo "set max_nprocs=30000" >> /etc/system
echo "set shmsys:shminfo_shmmax=4294967295" >> /etc/system
[/code]
Now reboot the machine and login with an oracle user. Now change the .profile file of the oracle user and set necessary environment variables:
vi /export/home/oracle/.profile
[code]
export ORACLE_SID=portal
export JAVA_HOME=/u01/jdk/jdk1.7.0_79
export ORACLE_BASE=/u01/db
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1
export PATH=$ORACLE_HOME/bin:$PATH
export TMP=/export/home/oracle/tmp
export TMPDIR=/export/home/oracle/tmp
export DISPLAY=:0.0
export PATH=$JAVA_HOME/bin:$PATH
[/code]



Now create an “installation” directory under /u01/installable. Extract downloaded files using unzip utility & start the installation.

[code]
cd/u01/oracle/installable/OracleDB/database
./runinstaller.
[/code]

1
C:\Temp\db\1
Uncheck the checkbox and click next.
2
C:\Temp\db\2
Click second option & click on Next button
3
C:\Temp\db\3
Click Next
4
C:\Temp\db\4
Click Next
5
C:\Temp\db\5
Select standard edition & click Next
6
C:\Temp\db\6
Enter Software installation directory & click on Next
7
C:\Temp\db\7
Enter Inventory directory & click on Next
8
C:\Temp\db\8
Click Next
9
C:\Temp\db\9
Save response file & click on Finish
10
C:\Temp\db\10
This will complete Oracle Database software installation part.



Configure Database (Creation of database using DBCA)

[code]
Cd /u01/oracle/product/11.2.0/db_1/bin
./dbca
[/code]

C:\Temp\db\db1

1
C:\Temp\db\db2
Click Next
2
C:\Temp\db\db3
Select create a database & click on next
3
C:\Temp\db\db4
Select option 1 & click on Next
4
C:\Temp\db\db5
Enter db name as portal & click on Next
5
C:\Temp\db\db7
De-select enable auto maintenance task - click next
6
C:\Temp\db\db8
Enter password as 0rac1e & click on Next
7
C:\Temp\db\db9
Click on Next
8
C:\Temp\db\db10
Remove all check box & click on Next
9
C:\Temp\db\db11
De-select sample schemas & click on Next
A
C:\Temp\db\db11
Enter 2048 MB as memory Size, select use automatic memory management & click on Next
B
C:\Temp\db\db13
Select AL32UTF8 as character set  & click on next
C
C:\Temp\db\db15
Select 100 processes and click on next
D
C:\Temp\db\db16
Click on Next
E
C:\Temp\db\db17
Select create database and click on Finish button

After completion start listner. This will complete the process for oracle database installation.

  1. Install Repository Creation using [RCU] – V37395-01
Download the RCU from oracle (link: http://www.oracle.com/technetwork/middleware/downloads/fmw-11-download-092893.html ) Part # V37394-01 is for Linux & V37395-01 is for Windows platform [We have downloaded Windows RCU].
Oracle WebCenter requires that certain schemas exist in the database prior to installation. You must run the Repository Creation Utility (RCU) in order to create the schemas in the database.

Before begin adjust the following database parameters before running RCU
alter system set processes=500 scope=spfile;
alter system set open_cursors=800 scope=spfile;
shutdown immediate;
startup;

You must unzip the file and put it in a easy to access folder. We can consider this folder as an Oracle Home (rcu Home).  In our case we have installed it in C:\Temp\rcu\rcuHome\BIN
The following screen will appear:
Create OBIEE schemas with RCU : Create repository . Choose "Create and load component schemas into a database." and press "Next".
The following screen will appear: select the “WebCenter Suite” & change prefix to “OW” from “DEV”
Create OBIEE schemas with RCU : Select Components
Click on "Next". The following screen will appear

Click on Next
Click on Create
When the schemas/ tablespaces are created the following screen will appear:
Create OBIEE schemas with RCU : Completion Summary  Click on "Close" and all the stuff is done. Now you are ready to install the OBIEE Server.

  1. Installing jdk 1.7
Before installation weblogic server Jdk 1.7 component is needed. Installable dk-7u79-solaris-sparc.gz and jdk-7u79-solaris-sparcv9.gz has been downloaded from oracle.

Installation steps are as follows

zcat jdk-7u<version>-solaris-sparc.tar.Z | tar xf -
zcat jdk-7u<version>-solaris-sparcv9.tar.Z | tar xf -

Restarted the server & verified new version of java

  1. Installing Oracle WebLogic [10.3.6.0] Server
Download following part number from e-delivery for weblogic installation, extract these zip files and copy to portal server
Extract V29856-01 & run following command in /u01/installable/WebLogic
java -d64 -jar wls1036_generic.jar

Following screen will appear
1
C:\Temp\jrockit\Screenshot\2
Click on Next
2
C:\Temp\jrockit\Screenshot\3
Enter path to install and Click on Next
3
C:\Temp\jrockit\Screenshot\4
Select custom and Click on Next
4
C:\Temp\jrockit\Screenshot\5
Click on Next
5
C:\Temp\jrockit\Screenshot\6
Verify java version & click on next
6
C:\Temp\jrockit\Screenshot\7
Click on Next
7
C:\Temp\jrockit\Screenshot\8
Click on Next
8
C:\Temp\jrockit\Screenshot\9
Deselect Run Quickstart & click on Done











  1. Installing WebCenter Portal 11g [11.1.1.8.0]
Installer requires the location of Java Runtime Environment [JRE]. Location has been given while running ./runinstaller

C:\Temp\weblogic\screenshot\1

C:\Temp\weblogic\screenshot\2
C:\Temp\weblogic\screenshot\3

C:\Temp\weblogic\screenshot\4
C:\Temp\weblogic\screenshot\5

C:\Temp\weblogic\screenshot\6


C:\Temp\weblogic\screenshot\7

C:\Temp\weblogic\screenshot\8


  1. Configuring Web Center


C:\Temp\weblogic\screenshot\9

C:\Temp\weblogic\screenshot\10
C:\Temp\weblogic\screenshot\11

C:\Temp\weblogic\screenshot\12

C:\Temp\weblogic\screenshot\13

C:\Temp\weblogic\screenshot\14

C:\Temp\weblogic\screenshot\15
C:\Temp\weblogic\screenshot\16
C:\Temp\weblogic\screenshot\17

C:\Temp\weblogic\screenshot\18

C:\Temp\weblogic\screenshot\19
C:\Temp\weblogic\screenshot\20

C:\Temp\weblogic\screenshot\21
C:\Temp\weblogic\screenshot\22
C:\Temp\weblogic\screenshot\23



  1. Installation of Required patches
Patch: 6880880 This is latest opatch
Downloaded p6880880_111000_SOLARIS64.zip patches from patches and update tab of oracle support.
>mv p6880880_111000_SOLARIS64.zip /u01/Middleware/Oracle_WC1
>cd /u01/Middleware/Oracle_WC1
>mv OPatch OPatch_28042015
>unzip p6880880_112000_SOLARIS64.zip

Apart from patch following patches has been applied
Patch : 18633874 -  p18633874_111180_Generic.zip
Patch 20425442 - p20425442_111180_Generic.zip






  1. Starting nodeManager.sh & startWeblogic.sh
Now we need to start WebCenter WebLogic Admin Server and Managed Servers (WLS_Spaces, WLS_Portlet and WLS_Services)

Post Configuration Tasks
  • Starting Node Manager
  • Starting the WebLogic Administration Server
  • Starting Managed Servers from the Administration Console
  • Verify the installation


Starting WebLogic Node Manger

1. Run this script to start the Node Manager once. This process will create the Node Manager
properties file.
MW_Home/wlserver_10.3/server/bin/startNodeManager.sh
2. Shut down the Node Manager process.
3. Run this script to set the Node Manager properties. This process will update the
nodemanager.properties file.
MW_Home/oracle_common/common/bin/setNMProps.sh
4. Re-Run this script to start the Node Manager:
MW_Home/wlserver_10.3/server/bin/startNodeManager.sh



Starting WebLogic startWeblogic

1.Before starting server create boot.properties in
/u01/Middleware/user_projects/domains/portal_domain/servers/AdminServer/security
The boot.properties should contain following entries
username=weblogic
password=oracle123
2. Start server with running startWeblogic.sh script in the directory /u01/Middleware/user_projects/domains/portal_domain/bin

  1. Portal Login Details

SR #
Description
Link
1
Web Logic Admin
2
Web Center Login
3
Web Center Console / Enterprise Manager
  1. Create new instance in the server manager
Login to server manager
Create new manage instance
Select Enterprise HTML Server & Click on Continue
Enter Instance name
Click on Continue on


  1. Register Portal
Login to web center console
Click on Register portal

1 comment: