Oracle OEM 13C

1、环境概要

--------- -------- IP 内存
Linux 6.7 DB 12.2 192.168.3.2 32G
OEM 13.2 192.168.3.2 32G

2、系统环境配置

[[email protected] ~]# vi /etc/sysctl.conf
kernel.shmall = 4294967296
kernel.sem = 510 65280 510 128
kernel.shmmni = 4096
kernel.shmmax = 137438953472
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 1048576
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
fs.file-max = 6815744
fs.aio-max-nr = 1048576
vm.swappiness = 0
vm.dirty_background_ratio = 3
vm.dirty_ratio = 80
vm.dirty_expire_centisecs = 500
vm.dirty_writeback_centisecs = 100
net.ipv4.tcp_sack = 0
net.ipv4.tcp_timestamps = 0
net.ipv4.conf.default.rp_filter = 0
net.ipv4.tcp_wmem = 262144
net.ipv4.tcp_rmem = 4194304

[[email protected] ~]# sysctl -p   --使参数生效

2.1 配置用户shell限制

[[email protected] ~]# vi /etc/security/limits.conf
oracle          soft    nproc           2047
oracle          hard    nproc           16384
oracle          soft    nofile          1024
oracle          hard    nofile          65536
oracle          soft    memlock         3145728
oracle          hard    memlock         3145728
oracle          soft    stack           10240
oracle          hard    stack           10240

2.2 模块配置

[[email protected] ~]# vi /etc/pam.d/login
session    required     /lib64/security/pam_limits.so

2.3 创建用户和组

 groupadd oinstall
 groupadd dba
 useradd -m -g oinstall -G dba oracle
 echo "oracle"|passwd --stdin oracle
 mkdir -p /DBSoft/product/12.2.0.1/db_1
 chown -R oracle:oinstall /DBSoft

2.4 操作系统profile配置

[[email protected] ~]# vi /etc/profile
if [ \$USER = "oracle" ]; then
    if [ \$SHELL = "/bin/ksh" ]; then
        ulimit -p 16384
        ulimit -n 65536
    else
        ulimit -u 16384 -n 65536
    fi
fi

2.5 配置oracle用户环境变量

vi /home/oracle/.bash_profile
export EDITOR=vi
export ORACLE_SID=woo
export ORACLE_BASE=/DBSoft
export ORACLE_HOME=\$ORACLE_BASE/product/12.2.0.1/db_1
export LD_LIBRARY_PATH=\$ORACLE_HOME/lib
export PATH=\$ORACLE_HOME/bin:\$PATH
umask 022

2.6 关闭防火墙、selinux

chkconfig --level 345 ip6tables off
chkconfig --level 345 iptables off
service ip6tables stop
service iptables stop
sed -i "/^SELINUX=/s#enforcing#disabled#" /etc/selinux/config

2.7 修改hosts文件

vi /etc/hosts
192.168.3.2  leo

3 安装数据库软件

[[email protected] ~]$ ls
linuxx64_12201_database.zip
[[email protected] ~]$ unzip linuxx64_12201_database.zip
[[email protected] ~]$ ll
total 3372760
drwxr-xr-x. 7 oracle oinstall       4096 July 09  2019 database
-rwxr-xr-x. 1 root   root     3453696911 July  07 16:03 linuxx64_12201_database.zip

[[email protected] database]$ ./runInstaller -silent -noconfig -responseFile /home/oracle/database/response/db_install.rsp -ignorePrereq
Starting Oracle Universal Installer...

Checking Temp space: must be greater than 500 MB.   Actual 27734 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 20479 MB    Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2019-07-09_10-23-25AM. Please wait ...[[email protected] database]$ [WARNING] [INS-32055] The Central Inventory is located in the Oracle base.
   ACTION: Oracle recommends placing this Central Inventory in a location outside the Oracle base directory.
You can find the log of this install session at:
 /DBSoft/oracle/oraInventory/logs/installActions2019-07-09_10-23-25AM.log

提示执行root脚本:
[[email protected] database]$ The installation of Oracle Database 12c was successful.
Please check ‘/DBSoft/oracle/oraInventory/logs/silentInstall2019-07-09_10-23-25AM.log‘ for more details.
As a root user, execute the following script(s):
    1. /DBSoft/oracle/oraInventory/orainstRoot.sh
    2. /DBSoft/oracle/product/12.2.0.1/db_1/root.sh
Successfully Setup Software.

3.1 GUI界面









这是一个bug,已经执行并且添加,不用管,详见supprt (文档 ID 2287806.1),点击忽略即可。



3.2 执行root脚本

[[email protected] ~]# /DBSoft/oracle/product/12.2.0.1/db_1/root.sh 


4 DBCA创建数据库
















修改日志组的大小为250M



4.1 修改数据库配置

SQL> alter system set processes= 2000 scope=spfile;
SQL> alter system set session_cached_cursors=300 scope=spfile
SQL> alter system set open_cursors=350 scope=spfile;
SQL> alter system set sessions=2000 scope=spfile;
SQL> alter system set shared_pool_size=5120M scope=spfile;
SQL> alter system set "_allow_insert_with_update_check"=true;

5 安装OEM
注意:OEM 13cR2安装包下载之后不要解压,直接执行em13200_linux64.bin文件会自动解压到/tmp目录中,随后会会调用安装程序起图形界面,这个过程大约5-10分钟,需耐心等待。













注意:看到这些信息要在数据库端修改对应的参数再重新执行即可。







注意:经过3.5个小时的安装终于出现弹出需要执行allroot.sh脚本界面,安装基本告成。执行allroot.sh脚本

6 使用OEM
打开浏览器进入OEM页面https://192.168.3.2:7802/em 用户名sysman密码oracle123
进入之后接受许可协议





7 安装部署Agent
7.1 添加地址解析

在所有受管理的服务器增加OMS服务解析地址:
# echo “192.168.3.3     oem13c” >> /etc/hosts

7.2 部署Agent








7.3 执行root.sh脚本

所有受管节点以root用户执行root.sh脚本
[[email protected] ~]# /DBSoft2/oracle/product/oem13c/AgentHome/agent_13.2.0.0.0/root.sh

至此,EM13C Agent 部署完成。

原文地址:https://blog.51cto.com/11298469/2419166

时间: 2024-11-09 10:32:31

Oracle OEM 13C的相关文章

解决IE上登陆oracle OEM时报:“证书错误,导航已阻止”的错误

今天在IE上登陆OEM时,报证书错误,导航已阻止,我选择:继续浏览此网站(不推荐),但是点了之后还没有反应,在网上搜了很多,原因基本都是windows的问题,最后发现问题是:oracle oem证书的密钥小于1024,解决方法就是执行certutil命令,也就是在cmd上执行:“certutil -setreg chain\EnableWeakSignatureFlags 8” ,会报:之后,就可以登陆EM了

IE11上登陆oracle OEM时报:“证书错误,导航已阻止”且无继续浏览此网站(不推荐)的错误

问题原因:oracle oem证书的密钥小于1024 解决方案:在cmd中执行命令:certutil -setreg chain\EnableWeakSignatureFlags 8 出现以下提示: 重新登录EM即可. (https://localhost:1158/em 或https://127.0.0.1:1158/em)

Oracle OEM

一.OEM是什么 Oracle Enterprise Manager(Oracle企业治理器,简称OEM)是通过一组Oracle程序,为治理分布式环境提供了治理服务. 二.配置OEM 三.启动OEM 1.首先启动监听 lsnrctl start 2.然后启动OEM emctl start dbconsole 四.关闭OEM emctl stop dbconsole

Oracle OEM建库实例

OEM是一个图形化的数据库管理员工具.它为数据库管理员提供了一个集中的系统管理工具,同时 它也是一个用来管理.诊断和调试多个数据库的工具,一个用来管理来自多个地点的多个网络节点和服务的工具.该工具可以使不同的数据库管理员之间共享一些工 作,另外它还提供了一些管理并行服务器和分布式数据库的工具.总之,OEM是一个功能强大且操作简单的图形化数据库管理员工具. 1.访问https://localhost:1158/em/console/logon/logon 输入登录名密码 2.创建表空间 表空间是O

Oracle OEM重建

参考博客:http://blog.csdn.net/tianlesoftware/article/details/4702978 测试环境: C:\Users\Administrator>sqlplus "/as sysdba" SQL*Plus: Release 11.1.0.7.0 - Production on Thu Oct 16 14:09:39 2014 Copyright (c) 1982, 2008, Oracle. All rights reserved. Co

Configure Oracle Enterprise Manager 13c In Silent Mode

本文从两大部分分别介绍了如何静默创建数据库以及如何静默安装配置OEM 13C. 一.OEM数据库创建 1.Oracle官方下载OEM13c,文件列表如下: 12.1.0.2.0_Database_Template_for_EM13_1_0_0_0_Linux_x64.zip em13100_linux64.bin em13100_linux64-2.zip em13100_linux64-3.zip em13100_linux64-4.zip em13100_linux64-5.zip 2.解压

Oracle Study之--OEM登录错误  

Oracle Study之--OEM登录错误      系统环境:     操作系统: Windows 7     数据库:    Oracle 11gR2 今天在IE上登陆OEM时,报证书错误,导航已阻止,我选择:继续浏览此网站(不推荐),但是点了之后还没有反应,在网上搜了很多,原因基本都是windows的问题,最后发现问题是:oracle oem证书的密钥小于1024,解决方法就是执行certutil命令,也就是在cmd上执行: "certutil -setreg chain\EnableW

Oracle 12c 安装及配置

Oracle 12c R2 for Windows_X64 安装 1.安装准备 1.1 下载Oracle for Windows版本 官方下载地址:http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html 1.2 解压zip压缩包文件 解压下载的压缩包文件至同一目录中,目录中避免出现汉字和空格,如某目录下的database文件夹中,解压后的文件目录结构如下:  2.安装过程 2.1 执行安

赵强老师:免费实战微课系列课程

赵强老师实战微课系列课程 Oracle数据库.大数据.Weblogic中间件 永久免费!!! (*)赵强老师实战微课之一:在Oracle SQL*PLUS中修改SQL语句 http://edu.51cto.com/course/course_id-9016.html (*)赵强老师实战微课之二:搭建Hadoop的Eclipse开发环境 http://edu.51cto.com/course/course_id-9017.html (*)赵强老师实战微课之三:使用Weblogic Console生