`

Oracle em相关

阅读更多

emca -repos create创建一个EM资料库

emca -repos recreate重建一个EM资料库

emca -repos drop删除一个EM资料库

emca -config dbcontrol db配置数据库的 Database Control

emca -deconfig dbcontrol db删除数据库的 Database Control配置

emca -reconfig ports 重新配置db control的端口,默认端口在1158

emctl start console启动EM console服务,使用前需要先设置ORACLE_SID环境变量

emctl stop console停止EM console服务,使用前需要先设置ORACLE_SID环境变量

注:通过查看$ORACLE_HOME/install/portlist.ini 文件可以知道当前dbcontrol正在使用的端口

================================================================
【收藏】Oracle 入门之EM配置

参考:http://www.linuxidc.com/Linux/2010-09/28558.htm
ORACLE 11g R2 64位启动em,出现如下错误:
[root@localhost ~]# su - oracle
[oracle@localhost ~]$ emctl start dbconsole
Environment variable ORACLE_UNQNAME not defined. Please set ORACLE_UNQNAME to database unique name.

[oracle@localhost ~]$ export ORACLE_UNQNAME=online
[oracle@localhost ~]$ emctl start dbconsole
OC4J Configuration issue. /u01/app/oracle/oc4j/j2ee/OC4J_DBConsole_localhost.localdomain_online not found.
问题原因为em资料库配置不正确,或者是dbcontrol没有配置好

1:重建EM资料
[oracle@localhost ~]$ emca -repos recreate

STARTED EMCA at Sep 6, 2010 4:42:53 PM
EM Configuration Assistant, Version 11.2.0.0.2 Production
Copyright (c) 2003, 2005, Oracle. All rights reserved.

Enter the following information:
Database SID: online
Listener port number: 1521
Password for SYS user:
Password for SYSMAN user:

Do you wish to continue? [yes(Y)/no(N)]: y
Sep 6, 2010 4:43:30 PM oracle.sysman.emcp.EMConfig perform
INFO: This operation is being logged at /u01/cfgtoollogs/emca/online/emca_2010_09_06_16_42_52.log.
Sep 6, 2010 4:43:31 PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Dropping the EM repository (this may take a while) ...
Sep 6, 2010 4:46:23 PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Repository successfully dropped
Sep 6, 2010 4:46:24 PM oracle.sysman.emcp.EMReposConfig createRepository
INFO: Creating the EM repository (this may take a while) ...
Sep 6, 2010 4:53:00 PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Repository successfully created
Enterprise Manager configuration completed successfully
FINISHED EMCA at Sep 6, 2010 4:53:00 PM

2:配置dbcontrol
[oracle@localhost ~]$ emca -config dbcontrol db

STARTED EMCA at Sep 6, 2010 5:02:57 PM
EM Configuration Assistant, Version 11.2.0.0.2 Production
Copyright (c) 2003, 2005, Oracle. All rights reserved.

Enter the following information:
Database SID: online
Listener port number: 1521
Listener ORACLE_HOME [ /u01/app/oracle ]:
Password for SYS user:
Password for DBSNMP user:
Password for SYSMAN user:
Password for SYSMAN user: Email address for notifications (optional):
Outgoing Mail (SMTP) server for notifications (optional):
-----------------------------------------------------------------

You have specified the following settings

Database ORACLE_HOME ................ /u01/app/oracle

Local hostname ................ localhost.localdomain
Listener ORACLE_HOME ................ /u01/app/oracle
Listener port number ................ 1521
Database SID ................ online
Email address for notifications ...............
Outgoing Mail (SMTP) server for notifications ...............

-----------------------------------------------------------------
Do you wish to continue? [yes(Y)/no(N)]: y
Sep 6, 2010 5:03:34 PM oracle.sysman.emcp.EMConfig perform
INFO: This operation is being logged at /u01/cfgtoollogs/emca/online/emca_2010_09_06_17_02_56.log.
Sep 6, 2010 5:03:39 PM oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
INFO: Uploading configuration data to EM repository (this may take a while) ...
Sep 6, 2010 5:04:45 PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Uploaded configuration data successfully
Sep 6, 2010 5:04:46 PM oracle.sysman.emcp.ParamsManager getLocalListener
WARNING: Error retrieving listener for localhost.localdomain
Sep 6, 2010 5:04:49 PM oracle.sysman.emcp.util.DBControlUtil configureSoftwareLib
INFO: Software library configured successfully.
Sep 6, 2010 5:04:49 PM oracle.sysman.emcp.EMDBPostConfig configureSoftwareLibrary
INFO: Deploying Provisioning archives ...
Sep 6, 2010 5:05:22 PM oracle.sysman.emcp.EMDBPostConfig configureSoftwareLibrary
INFO: Provisioning archives deployed successfully.
Sep 6, 2010 5:05:22 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
INFO: Securing Database Control (this may take a while) ...
Sep 6, 2010 5:06:17 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
INFO: Database Control secured successfully.
Sep 6, 2010 5:06:17 PM oracle.sysman.emcp.util.DBControlUtil startOMS
INFO: Starting Database Control (this may take a while) ...
Sep 6, 2010 5:07:00 PM oracle.sysman.emcp.EMDBPostConfig performConfiguration
INFO: Database Control started successfully
Sep 6, 2010 5:07:00 PM oracle.sysman.emcp.EMDBPostConfig performConfiguration
INFO: >>>>>>>>>>> The Database Control URL is https://localhost.localdomain:1158/em <<<<<<<<<<<
Sep 6, 2010 5:07:04 PM oracle.sysman.emcp.EMDBPostConfig invoke
WARNING:

可以看到em已经启动:
[oracle@localhost ~]$ netstat -ntpl |grep 1158
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 :::1158 :::* LISTEN 11125/java
[oracle@localhost ~]$ emctl status dbconsole
Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
https://localhost.localdomain:1158/em/console/aboutApplication
Oracle Enterprise Manager 11g is running.
------------------------------------------------------------------
Logs are generated in directory /u01/app/oracle/localhost.localdomain_online/sysman/log
************************ WARNING ************************

Management Repository has been placed in secure mode wherein Enterprise Manager data will be encrypted. The encryption key has

been placed in the file: /u01/app/oracle/localhost.localdomain_online/sysman/config/emkey.ora. Please ensure this file is

backed up as the encrypted data will become unusable if this file is lost.

***********************************************************
Enterprise Manager configuration completed successfully
FINISHED EMCA at Sep 6, 2010 5:07:04 PM

分享到:
评论

相关推荐

    Oracle\oracle_EM无法正常登陆解决方案

    ### Oracle EM 无法正常登录解决方案 #### 问题背景与描述 在使用Oracle 10G的企业管理器(Enterprise Manager, 简称EM)时,可能会遇到无法正常登录的情况。具体表现为,在浏览器地址栏输入`...

    oracle em重建

    2. **删除EM相关数据**:这可能涉及清除OMS和Agent的元数据、日志和临时文件,以确保重建过程的清洁性。具体操作取决于实际环境,可能需要删除`oms`和`agent`目录下的内容。 3. **重新安装EM组件**:根据需要重新...

    oracle em连不上

    "Oracle EM 连接问题解决方案" Oracle Enterprise Manager(EM)是Oracle数据库管理的一种图形化工具,能够对数据库进行管理和监控。但有时候,我们可能会遇到EM连接不上的问题,本文将为您提供一些建议来解决这个...

    Oracle应用项目——使用OracleEM创建表空间.pdf

    在Oracle企业管理器(Oracle Enterprise Manager,简称Oracle EM)中创建表空间是数据库管理员进行日常管理的重要任务之一。本篇文章将详细介绍如何使用Oracle EM创建表空间。 首先,我们需要了解创建表空间的基本...

    oracle安装及EM使用教程

    本文将详述Oracle的安装过程以及Enterprise Manager (EM) 的使用教程,帮助初学者快速掌握这两个关键环节。 首先,Oracle的安装是一个系统性的工程,需要考虑硬件配置、操作系统兼容性等因素。通常,我们遵循以下...

    Linux oracle重建EM.txt

    Linux oracle重建EM,用于oracle 10g版本

    Oracle_EM无法启动_解决方案

    这通常与网络配置、服务状态或EM库(EM Repository)的状态有关。本文档提供了一种通过使用EMCA工具来解决该问题的方法,并提供了详细的步骤和示例。 #### 二、解决方案概述 当遇到Oracle EM无法启动的问题时,可以...

    Oracle10g EM补丁

    Oracle10g数据库管理系统是Oracle公司推出的一款企业级数据库系统,其企业版(Enterprise Manager,简称EM)是用于管理和监控数据库的重要工具。然而,如同所有软件一样,Oracle EM也可能会遇到一些问题,需要通过...

    Oracle10g EM Console配置

    完成配置文件替换后,还需要清除EM控制台的相关缓存。缓存文件通常位于以下目录: - `$ORACLE_HOME/oc4j/j2ee/oc4j_applications/applications/em/em/cabo/images/cache/zhs` 清除该目录下的所有`.gif`文件,以...

    Python爬取ORACLE EM CC 12C 告警信息推送到微信企业号

    Python爬取ORACLE EM CC 12C 告警信息推送到微信企业号,需要自行部署相关环境,具体参考:https://blog.csdn.net/lanxuxml/article/details/80812310

    EM按钮乱码

    Oracle企业管理器(Enterprise Manager, 简称EM)是Oracle数据库管理系统的重要组成部分,它提供了图形化界面用于监控、管理及优化数据库。然而,在某些情况下,用户可能会遇到“EM按钮乱码”的问题,即EM界面中的按钮...

    oracle重建EM

    在Oracle 10g中,如果你改变了主机名或IP地址,可能导致EM无法正常启动,因为EM的相关配置文件中存储的旧主机名或IP不再有效。解决这个问题需要对EM进行重新配置。 首先,修改主机名或IP后,单纯使用PL/SQL连接...

    Linux平台下启动oracle 11g EM控制台

    ### Linux平台下启动Oracle 11g EM控制台的关键知识点 #### 一、Oracle EM(Enterprise Manager)控制台概述 Oracle Enterprise Manager (EM) 是一套综合管理解决方案,用于监控、管理和优化 Oracle 数据库及...

    oracle 10G EM 配置总结

    Oracle 10G Enterprise Manager (EM) 是一款强大的管理工具,用于监控、管理和优化Oracle数据库环境。在10G版本中,EM分为两个主要组件:Database Control(DBControl)和Grid Control。DBControl专注于单一数据库的...

    Linux oracle em 中文乱码解决方案

    在Linux环境下管理和维护Oracle数据库时,可能会遇到Oracle企业管理器(Enterprise Manager, EM)显示中文乱码的问题。这通常是由于字符编码设置不正确导致的。本文将深入探讨这个问题,并提供有效的解决方案。 首先...

    oracle em 安装失败 补丁 opath

    在尝试安装Oracle EM时,可能会遇到“补丁 opatch EM安装失败”的问题,这通常与OPatch工具和补丁应用过程中的错误有关。OPatch是Oracle用于应用和管理补丁的工具,其主要功能是更新Oracle产品组件。 首先,我们...

    oracleEM重建

    ### Oracle EM 重建知识点 #### 一、Oracle EM(Enterprise Manager)简介 Oracle Enterprise Manager (EM) 是一种全面的管理工具,用于管理Oracle环境中的各种组件,包括数据库、中间件和应用服务器等。EM提供了...

    oracle不能使用EM怎么办 oracle11g如何正确安装配置EM

    oracle不能使用EM的解决方法,具体内容如下 不能登录EM,执行emca -config dbcontrol db 不知道总是默认1522的端口号,无奈,google一番,从下面第二步开始执行。。。(我的监听没问题) 1、打开oracle配置工具里的...

    XP安装Oracle 10时实例化EM配置文件时出错解决方案

    该命令将删除与数据库orcl相关的所有EM配置和软件,确保没有残留的配置干扰新配置的创建。 #### 步骤2:重新创建EM资料档案库 在清理完旧配置后,使用`emca-configdbcontroldb-reposcreate`命令重新创建EM资料档案...

Global site tag (gtag.js) - Google Analytics