当前位置:   article > 正文

Oracle 13c OEM 安装手册

oracle 13coem

1       安装准备工作

 以下包已Redhat 为准,其他版的操作系统以官方手册为准。

 

1.1         Oracle Management Service 依赖如下包

  1. glibc-common-2.3.4-2.43(x86_64)
  2. glibc-devel-2.3.4-2.43(x86_64)
  3. glibc-profile-2.3.4-2.43(x86_64)
  4. glibc-headers-2.3.4-2.43(x86_64)
  5. glibc-utils-2.3.4-2.43(x86_64)
  6. glibc-2.3.4-2.43(x86_64)
  7.  
  8. make-3.81
  9. binutils-2.20
  10. gcc-4.4.4
  11. libaio-0.3.107
  12. glibc-common-2.12-1
  13. libstdc++-4.4.4
  14. libXtst-1.0.99 (x86_64)
  15. sysstat-9.0.4
  16. glibc-devel-2.12-1.7 (i686) (This is a 32-bit package)
  17. glibc-devel-2.12-1.7 (x86_64) (This is a 64-bit package)

 

 

1.2         Oracle Management Agent 依赖如下包

 

  1. make-3.81
  2. binutils-2.20
  3. gcc-4.1.1
  4. libaio-0.3.106
  5. glibc-common-2.3.4
  6. libstdc++-4.1.1
  7. sysstat-5.0.5   
  8. make-3.81
  9. binutils-2.20
  10. gcc-4.1.1
  11. libaio-0.3.106
  12. glibc-common-2.3.4
  13. libstdc++-4.1.1
  14. sysstat-5.0.5

 

这里建议配置好YUM,用yum 来一次安装。 参考:

Linux 平台下 YUM 源配置 手册

 

http://www.cndba.cn/dave/article/154

 

1.3         修改系统参数

1.3.1     验证UDP和TCP 内核参数

 

避免端口被占用,修改最小端口到11000。

 

  1. [root@www.cndba.cn ~]# cat /proc/sys/net/ipv4/ip_local_port_range
  2. 9000         65000
  3. [root@www.cndba.cn ~]#
  4.  
  5. [root@www.cndba.cn ~]# echo 11000 65000 > /proc/sys/net/ipv4/ip_local_port_range
  6. [root@www.cndba.cn ~]# cat /proc/sys/net/ipv4/ip_local_port_range
  7. 11000      65000
  8. [root@www.cndba.cn ~]#

 

修改/etc/sysctl.conf 文件,修改如下内容:

net.ipv4.ip_local_port_range = 11000 65000

 

然后重启网络服务:

[root@www.cndba.cn ~]# service network restart

 

1.3.2     修改kernel.shmmax 内核参数

 

如果OMS 和 Management Repository(database) 在不同的主机上,那么OMS的主机kernel.shmmax 参数设置为小于4G或者4294967295。 直接修改/etc/sysctl.conf 文件修改,然后运行sysctl –p 生效即可。

 

如果OMSManagement Repository(database) 在同一个主机上,那么kernel.shmmax 参数以Oracle 数据库文档要求的为准。

 

 

1.4         安装Oracle 数据库并修改参数

 

OEM 13c 只支持12.1.0.2.0 以上的数据库,所以需要先安装12的DB。 参考:

 

linux 6.4 平台下 Oracle 12c 单实例 安装手册

http://www.cndba.cn/dave/article/323

 

安装DB过程省略,注意:不要安装EM。

 

  1. [oracle@www.cndba.cn ~]$ sqlplus / as sysdba
  2.  
  3. SQL*Plus: Release 12.1.0.2.0 Production on Tue Mar 1 15:07:20 2016
  4.  
  5. Copyright (c) 19822014, Oracle.  All rights reserved.
  6.  
  7.  
  8. Connected to:
  9. Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
  10. With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
  11.  
  12. SQL>
  13.  
  14. alter system set optimizer_adaptive_features=false scope=both sid='*';
  15. alter system set processes=600 scope=spfile;
  16. alter system set session_cached_cursors=300 scope=spfile;
  17. alter system set sga_target=8g scope=spfile;
  18. alter system set shared_pool_size=600m scope=spfile;
  19. alter system set pga_aggregate_target=2g scope=spfile;
  20.  
  21. alter system set shared_pool_size=1G scope=spfile;
  22.  
  23. /u01/app/oracle1/oradata/orz/redo01.log
  24.  
  25. 修改Online redo log 大小,单个文件最小600M:
  26. SQL> alter database add logfile group 4('/u01/app/oracle/oradata/dave/redo04.log') size 1G;
  27. Database altered.
  28.  
  29. SQL> alter database add logfile group 5('/u01/app/oracle/oradata/dave/redo05.log') size 1G;
  30. Database altered.
  31.  
  32. SQL> alter database add logfile group 6('/u01/app/oracle/oradata/dave/redo06.log') size 1G;
  33. Database altered.
  34.  
  35. SQL> alter database drop logfile group 2;
  36. Database altered.
  37.  
  38. SQL> alter database drop logfile group 1;
  39. Database altered.
  40.  
  41. SQL> alter system switch logfile;
  42. System altered.
  43.  
  44. SQL> alter database clear unarchived logfile group 3;
  45. Database altered.
  46.  
  47. SQL> alter database drop logfile group 3;
  48. Database altered.
  49.  
  50. -- Restart the instance.
  51. SHUTDOWN IMMEDIATE
  52. STARTUP

 

 

1.5         创建OEM安装目录

 

  1. [oracle@www.cndba.cn /]$ mkdir -p /u01/app/oracle/Middleware
  2. [oracle@www.cndba.cn /]$ mkdir -p /u01/app/oracle/MiddlewareAgent

 

 

2       安装 Enterprise Manager Cloud Control

 

  1. [oracle@www.cndba.cn software]$ chmod a+x em13100_linux64.bin
  2. [oracle@www.cndba.cn software]$ ll
  3. total 6616032
  4. -rw-r--r-- 1 oracle oinstall 1315250699 Feb 29 16:02 em13100_linux64-2.zip
  5. -rw-r--r-- 1 oracle oinstall 2145473190 Feb 29 16:06 em13100_linux64-3.zip
  6. -rw-r--r-- 1 oracle oinstall 2141357330 Feb 29 16:07 em13100_linux64-4.zip
  7. -rw-r--r-- 1 oracle oinstall  331590923 Feb 29 15:54 em13100_linux64-5.zip
  8. -rwxr-xr-x 1 oracle oinstall  841114290 Feb 29 15:58 em13100_linux64.bin
  9. [oracle@www.cndba.cn software]$
  10.  
  11. 运行开始安装:
  12. [oracle@www.cndba.cn software]$ ./em13100_linux64.bin
  13. 0%...............................................................100%
  14. Launcher log file is /tmp/OraInstall2016-03-01_02-07-09PM/launcher2016-03-01_02-07-09PM.log.
  15. Starting Oracle Universal Installer
  16.  
  17. Checking if CPU speed is above 300 MHz.   Actual 3400.000 MHz    Passed
  18. Checking monitor: must be configured to display at least 256 colors.   Actual 16777216    Passed
  19. Checking swap space: must be greater than 512 MB.   Actual 31999 MB    Passed
  20. Checking if this platform requires a 64-bit JVM.   Actual 64    Passed (64-bit not required)
  21. Checking temp space: must be greater than 300 MB.   Actual 818155 MB    Passed
  22.  
  23.  
  24. Preparing to launch the Oracle Universal Installer from /tmp/OraInstall2016-03-01_02-07-09PM
  25. ====Prereq Config Location main===
  26. /tmp/OraInstall2016-03-01_02-07-09PM/stage/prereq
  27. EMGCInstaller args -scratchPath
  28. EMGCInstaller args /tmp/OraInstall2016-03-01_02-07-09PM
  29. EMGCInstaller args -sourceType
  30. EMGCInstaller args network
  31. EMGCInstaller args -timestamp
  32. EMGCInstaller args 2016-03-01_02-07-09PM
  33. EMGCInstaller args -paramFile
  34. EMGCInstaller args /tmp/sfx_0Utw4M/Disk1/install/linux64/oraparam.ini
  35. EMGCInstaller args -nocleanUpOnExit
  36. DiskLoc inside SourceLoc/software
  37. EMFileLoc:/tmp/OraInstall2016-03-01_02-07-09PM/oui/em/
  38. ScratchPathValue :/tmp/OraInstall2016-03-01_02-07-09PM

 

 

  1. [root@www.cndba.cn ~]# /u01/app/oracle/Middleware/allroot.sh
  2.  
  3. Starting to execute allroot.sh .........
  4.  
  5. Starting to execute /u01/app/oracle/Middleware/root.sh ......
  6. /etc exist
  7.  
  8. Creating /etc/oragchomelist file...
  9. /u01/app/oracle/Middleware
  10. Finished product-specific root actions.
  11. /etc exist
  12. Finished execution of  /u01/app/oracle/Middleware/root.sh ......
  13.  
  14.  
  15. Starting to execute /u01/app/oracle/MiddlewareAgent/agent_13.1.0.0.0/root.sh ......
  16. Finished product-specific root actions.
  17. /etc exist
  18. Finished execution of  /u01/app/oracle/MiddlewareAgent/agent_13.1.0.0.0/root.sh ......
  19. [root@www.cndba.cn ~]#

 

 

 

 

 

在如下平台下安装费时约3小时:

  1. [root@www.cndba.cn ~]# free -g
  2.              total       used       free     shared    buffers     cached
  3. Mem:            23         22          0          5          0         15
  4. -/+ buffers/cache:          7         15
  5. Swap:           31          0         31
  6.  
  7. processor : 3
  8. vendor_id        : GenuineIntel
  9. cpu family        : 6
  10. model               : 58
  11. model name    : Intel(R) Core(TM) i3-3240 CPU @ 3.40GHz
  12. stepping  : 9
  13. microcode        : 27
  14. cpu MHz           : 3400.000
  15. cache size        : 3072 KB

 

zhuan :http://www.cndba.cn/dave/article/324

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/581848
推荐阅读
相关标签
  

闽ICP备14008679号