zoukankan      html  css  js  c++  java
  • 11g单节点配置em

    环境:

    OS:Centos 7

    DB:11.2.0.4

     

    1.创建

    [oracle@11g lib]$ emca -config dbcontrol db -repos create
    
    STARTED EMCA at Oct 13, 2021 4:18:18 AM
    EM Configuration Assistant, Version 11.2.0.3.0 Production
    Copyright (c) 2003, 2011, Oracle.  All rights reserved.
    
    Enter the following information:
    Database SID: slnngk
    Listener port number: 1521
    Listener ORACLE_HOME [ /u01/app/oracle/product/11.2.0.4/db_1 ]: 
    Password for SYS user:  
    Password for DBSNMP 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/product/11.2.0.4/db_1
    
    Local hostname ................ 11g
    Listener ORACLE_HOME ................ /u01/app/oracle/product/11.2.0.4/db_1
    Listener port number ................ 1521
    Database SID ................ slnngk
    Email address for notifications ............... 
    Outgoing Mail (SMTP) server for notifications ............... 
    
    -----------------------------------------------------------------
    Do you wish to continue? [yes(Y)/no(N)]: yes
    Oct 13, 2021 4:18:38 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /u01/app/oracle/cfgtoollogs/emca/slnngk/emca_2021_10_13_04_18_18.log.
    Oct 13, 2021 4:18:38 AM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Oct 13, 2021 4:20:14 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    Oct 13, 2021 4:20:15 AM oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
    INFO: Uploading configuration data to EM repository (this may take a while) ...
    Oct 13, 2021 4:20:45 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Uploaded configuration data successfully
    Oct 13, 2021 4:20:46 AM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
    INFO: Securing Database Control (this may take a while) ...
    Oct 13, 2021 4:20:51 AM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
    INFO: Database Control secured successfully.
    Oct 13, 2021 4:20:51 AM oracle.sysman.emcp.util.DBControlUtil startOMS
    INFO: Starting Database Control (this may take a while) ...
    Oct 13, 2021 4:21:09 AM oracle.sysman.emcp.EMDBPostConfig performConfiguration
    INFO: Database Control started successfully
    Oct 13, 2021 4:21:09 AM oracle.sysman.emcp.EMDBPostConfig performConfiguration
    INFO: >>>>>>>>>>> The Database Control URL is https://11g:1158/em <<<<<<<<<<<
    Oct 13, 2021 4:21:11 AM oracle.sysman.emcp.EMDBPostConfig invoke
    WARNING: 
    ************************  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/product/11.2.0.4/db_1/11g_slnngk/sysman/config/emkey.ora. 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 Oct 13, 2021 4:21:11 AM

     

    2.浏览器打开

    https://192.168.56.144:1158/em

     

    3.若已经创建了em需要重新创建可以执行如下命令

    emca -deconfig dbcontrol db
    emca -repos drop
    emca -config dbcontrol db -repos create

     

    4.重启

    [oracle@rac01 ~]$emctl stop dbconsole
    [oracle@rac01 ~]$emctl start dbconsole
  • 相关阅读:
    Python 学习笔记 11.模块(Module)
    Python 学习笔记 8.引用(Reference)
    Python 学习笔记 9.函数(Function)
    Python 学习笔记 6.List和Tuple
    Python 学习笔记 4.if 表达式
    Python 学习笔记 2.自省
    Python 学习笔记 3.简单类型
    Python 学习笔记 7.Dictionary
    Python 学习笔记 5.对象驻留
    Python 学习笔记 10.类(Class)
  • 原文地址:https://www.cnblogs.com/hxlasky/p/15402800.html
Copyright © 2011-2022 走看看