ebs 12.1.1 单节点多用户安装

本次测试环境:操作系统 oracle linux 6.9   oracle ebs 12.1.1   192.168.20.210  erpapp1.hthorizon.com erpapp1

yum安装依赖的rpm包,关于用户和组会自动创建,以及修改系统核心参数及limit

 1 准备yum安装相关依赖rpm包,参考Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 (文档 ID 761566.1)
 2 wget http://public-yum.oracle.com/public-yum-ol6.repo
 3 [ol6_latest]
 4 
 5 name=Oracle Linux $releasever Latest ($basearch)
 6 
 7 baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/latest/$basearch/
 8 
 9 gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
10 
11 gpgcheck=1
12 
13 enabled=1
14 
15 
16 [ol6_addons]
17 
18 name=Oracle Linux $releasever Add ons ($basearch)
19 
20 baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/addons/$basearch/
21 
22 gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
23 
24 gpgcheck=1
25 
26 enabled=1
27 
28 
29 
30 [ol6_UEK_latest]
31 
32 name=Latest Unbreakable Enterprise Kernel for Oracle Linux $releasever ($basearch)
33 
34 baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/$basearch/
35 
36 gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
37 
38 gpgcheck=1
39 
40 enabled=1
41 
42 yum install oracle-ebs-server-R12-preinstall
View Code

创建相关目录及授权

mkdir -p /u01/app/inst
chown -R oracle:oinstall /u01
chmod -R 775 /u01/

  bug预修复

bug修复,oracle linux 6.9 unzip 6.0版本太高不识别
R12 Rapid Install Failing With "RC-20200: Fatal: Could not find Unzip. At this time only Native UnZip 5.X is supported." (文档 ID 1455077.1)
 mv /usr/bin/unzip /usr/bin/unzip-ver6
Attempting to Start Apache (adapcctl.sh) Throws an 'Error While Loading Shared Libraries: libdb.so.2' on Linux (文档 ID 879522.1)
R12 Rapidwiz Postinstall Steps Http, Login page, Virtual directory, JSP, Help Page Fails (文档 ID 414414.1)
Http, Login page, Virtual directory, JSP, Help Page服务启动不起来,需要建下面软连接
ln -s /usr/lib/libgdbm.so.2.0.0 /usr/lib/libdb.so.2

  

下面进行安装单节点多用户安装到https://edelivery.oracle.com/EPD/Search/handle_go下载Oracle E-Business Suite Release 12.1.1 Media Pack for Linux x86-64-bit
下载完以后编译脚本解压

 1 cat 1.sh
 2 unzip V15683-01_1of3.zip        ;
 3 unzip V15683-01_2of3.zip        ;
 4 unzip V15683-01_3of3.zip        ;
 5 unzip V15682-01_1of3.zip        ;
 6 unzip V15682-01_2of3.zip        ;
 7 unzip V15682-01_3of3.zip        ;
 8 unzip V15681-01_1of3.zip        ;
 9 unzip V15681-01_2of3.zip        ;
10 unzip V15681-01_3of3.zip        ;
11 unzip V15680-01_1of3.zip        ;
12 unzip V15680-01_2of3.zip        ;
13 unzip V15680-01_3of3.zip        ;
14 unzip V15688-01_1of2.zip        ;
15 unzip V15688-01_2of2.zip        ;
16 unzip V15687-01_1of3.zip        ;
17 unzip V15687-01_2of3.zip        ;
18 unzip V15687-01_3of3.zip        ;
19 unzip V15685-01_1of3.zip        ;
20 unzip V15685-01_2of3.zip        ;
21 unzip V15685-01_3of3.zip        ;
22 unzip V15684-01_1of3.zip        ;
23 unzip V15684-01_2of3.zip        ;
24 unzip V15684-01_3of3.zip        ;
25 unzip V15691-01_1of3.zip        ;
26 unzip V15691-01_2of3.zip        ;
27 unzip V15691-01_3of3.zip        ;
28 unzip V15690-01_1of3.zip        ;
29 unzip V15690-01_2of3.zip        ;
30 unzip V15690-01_3of3.zip        ;
31 unzip V15689-01.zip              ;
32 unzip V35224-01_1of3.zip        ;
33 unzip V35224-01_2of3.zip        ;
34 unzip V35224-01_3of3.zip        ;
35 unzip B53824-01_1of4.zip        ;
36 unzip B53824-01_2of4.zip        ;
37 unzip B53824-01_3of4.zip        ;
38 unzip B53824-01_4of4.zip        ;
39 unzip V15686-01_1of3.zip        ;
40 unzip V15686-01_2of3.zip        ;
41 unzip V15686-01_3of3.zip        ;
View Code

解压完毕以后目录如下

[applmgr@erpapp1 soft]$ ls
oraAppDB  oraApps  oraAS  oraDB  startCD

  root用户进行安装

 export DISPLAY=192.168.20.200:0.0
 cd /u01/soft/startCD/Disk1/rapidwiz
 ./rapidwiz

  

原文地址:https://www.cnblogs.com/omsql/p/9391924.html