需求:安装部署OEM 13.2
环境:两台主机,系统RHEL 6.5,分别部署OMS和OMR:
OMS,也就是OEMCC的服务端 IP:192.168.1.88 内存:12G+ 硬盘:100G+
OMR,也就是OEM底层的资料库 IP:192.168.1.89 内存:8G+ 硬盘:100G+
步骤:
参考文档:
1.准备安装介质需要下载的介质:
OEMCC 13.2.0.0 介质(8G):
em13200p1_linux64.bin
em13200p1_linux64-2.zip
em13200p1_linux64-3.zip
em13200p1_linux64-4.zip
em13200p1_linux64-5.zip
em13200p1_linux64-6.zip
em13200p1_linux64-7.zip
dbca建库模板文件(360M):
12.1.0.2.0_Database_Template_for_EM13_2_0_0_0_Linux_x64.zip
Oracle 12.1.0.2 介质(2.5G):
linuxamd64_12102_database_1of2.zip
linuxamd64_12102_database_2of2.zip
总共大概要下载11G大小的安装介质。这同时也反映出OEM的庞大。
2.OMR:安装Oracle 12.1.0.2软件这一步就是安装12.1.0.2的数据库软件,可以参考:
注:选用12.1.0.2版本的软件,是因为OEM13.2提供的资料库模板是12.1.0.2版本的。
3.OMR:使用OEM模板dbca建库使用Oracle提供的EM模板12.1.0.2.0_Database_Template_for_EM13_2_0_0_0_Linux_x64.zip,dbca创建需要的资料库oemrepo实例:
3.1 将模板文件拷贝到Oracle数据库的DBCA模板目录下并解压:
DBCA的模板目录位于:$ORACLE_HOME/assistants/dbca/templates/
[oracle@OMR u01]$ cd $ORACLE_HOME/assistants/dbca/templates/
[oracle@OMR templates]$ pwd
/u01/app/oracle/product/12.1.0/dbhome_1/assistants/dbca/templates
[oracle@OMR templates]$ cp /u01/12.1.0.2.0_Database_Template_for_EM13_2_0_0_0_Linux_x64.zip ./
[oracle@OMR templates]$ unzip 12.1.0.2.0_Database_Template_for_EM13_2_0_0_0_Linux_x64.zip
[oracle@OMR templates]$ ls -lrth
total 1.4G
-rw-r--r--. 1 oracle oinstall 11K Dec 23 2013 New_Database.dbt
-rw-r--r--. 1 oracle oinstall 2.3M Jul 7 2014 example.dmp
-rw-r--r--. 1 oracle oinstall 22M Jul 7 2014 example01.dfb
-rw-r--r--. 1 oracle oinstall 171M Jul 7 2014 sampleschema.dfb
-rw-r--r--. 1 oracle oinstall 5.3K Jul 7 2014 sampleschema.xml
-rw-r--r--. 1 oracle oinstall 148M Jul 7 2014 pdbseed.dfb
-rw-r--r--. 1 oracle oinstall 4.0K Jul 7 2014 pdbseed.xml
-rw-r--r--. 1 oracle oinstall 305M Jul 7 2014 Seed_Database.dfb
-rw-r--r--. 1 oracle oinstall 18M Jul 7 2014 Seed_Database.ctl
-rw-r--r--. 1 oracle oinstall 5.0K Jul 7 2014 Data_Warehouse.dbc
-rw-r--r--. 1 oracle oinstall 4.8K Jul 7 2014 General_Purpose.dbc
-rw-r-----. 1 oracle oinstall 387M Sep 30 2016 12.1.0.2.0_Database_Template_for_EM13_2_0_0_0.dfb
-rw-r-----. 1 oracle oinstall 9.9M Sep 30 2016 12.1.0.2.0_Database_Template_for_EM13_2_0_0_0.ctl
-rw-rw-r--. 1 oracle oinstall 167 Sep 30 2016 shpool_12.1.0.2.0_Database_SQL_for_EM13_2_0_0_0.sql
-rw-rw-r--. 1 oracle oinstall 5.5K Sep 30 2016 12.1.0.2.0_Database_Template_for_EM13_2_0_0_0_Small_deployment.dbc
-rw-rw-r--. 1 oracle oinstall 5.5K Sep 30 2016 12.1.0.2.0_Database_Template_for_EM13_2_0_0_0_Medium_deployment.dbc
-rw-rw-r--. 1 oracle oinstall 5.5K Sep 30 2016 12.1.0.2.0_Database_Template_for_EM13_2_0_0_0_Large_deployment.dbc
-rw-rw-r--. 1 oracle oinstall 2.0K Sep 30 2016 set_repo_param_12.1.0.2.0_Database_SQL_for_EM13_2_0_0_0_Small_deployment.sql
-rw-rw-r--. 1 oracle oinstall 2.1K Sep 30 2016 set_repo_param_12.1.0.2.0_Database_SQL_for_EM13_2_0_0_0_Medium_deployment.sql
-rw-rw-r--. 1 oracle oinstall 2.1K Sep 30 2016 set_repo_param_12.1.0.2.0_Database_SQL_for_EM13_2_0_0_0_Large_deployment.sql
-rwxr-xr-x. 1 oracle oinstall 360M Jan 19 07:04 12.1.0.2.0_Database_Template_for_EM13_2_0_0_0_Linux_x64.zip
3.2 dbca创建资料库oemrepo实例的关键步骤:
第2步:选择高级选项
第3步:可以看到多出的3个模板,根据需求,我这里选择small的
第6步:输入统一密码,我这里是OEMrepo123
第13步:安装概览
第15步:完成实例oemrepo的安装
最后使用netca创建监听,至此OMR的所有操作就已经完成了。 4.OMS:安装部署OEM13.2
4.1 创建oracle用户
groupadd -g 501 oinstall
groupadd -g 502 dba
useradd -u 502 -g oinstall -G dba oracle
4.2 安装依赖的rpm软件包
直接使用yum安装所有需要的软件包: