Providing Textual Descriptions of Enterprise Manager Charts

On my 10.2.0.3 Grid Control, I followed the steps described in EM Advanced Configuration, section 1.3.2 Providing Textual Descriptions of Enterprise Manager Charts. BUT, it does NOT work. The mentioned small icon does not appear.
Has anyone met the same issue?
Thanks.

I think the problem might be that IE version 7 does not fully support 10gAS yet as I have some issues displaying my discoverer reports through portals. I sometimes get blank pages. I suggest you explore that possibility
Firefox works fine for me as well
Janet

Similar Messages

  • Automatically starting Oracle Enterprise Manager with chkconfig

    Folks,
    While Oracle Linux 6 is out (6.2 actually), Oracle has yet to get everything 'working out of the box' with 6.2. Right now (June 2012) you've got to download patches from Oracle, the new way to start services in Linux 6, upstart, doesn't work with all Oracle features yet, etc. Update: You can still use chkconfig with OL6.
    Because of the above, I've been using Oracle Linux 5.8. Linux 5 uses something called chkconfig to register services. You first need to put a script in the right directory: /etc/rc.d/init.d. Linux looks in this directory for scripts and runs those scripts with either a start or stop after them depending on if the system is coming up or going down. Technically this happens every time you change your runlevel (google Unix runlevels for more info), not just when the system goes up or down.
    Here's a script that you can put in /etc/rc.d/init.d. I named mine oracleEM:
    [root@localhost ~]# cd /etc/rc.d/init.d
    [root@localhost init.d]# vi oracleEM
    Enter i to enter insert mode and then enter the below (or just copy and paste it)
    *#!/bin/sh*
    *#chkconfig: 2345 80 05*
    *#description: Oracle Enterprise Manager*
    ORA_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
    ORA_OWNER=oracle
    ORA_SID=orcl
    *# We're checking to see if ps returns 1 or 2 results for pmon_orcl*
    *# If there are two, Oracle is running, one we are just seeing our grep*
    ORACLE_STATUS=$(ps -eaf | grep pmon_$ORA_SID | wc -l)
    *if [ ! -f $ORA_HOME/bin/emctl ]*
    then
    echo "Enterprise Manager startup: cannot start"
    exit
    fi
    case "$1" in
    *"start")*
    *if [ $ORACLE_STATUS -lt 2 ]*
    then
    echo "Waiting for Oracle instance $ORA_SID to start before starting Enterprise Manager"
    fi
    *while [ $ORACLE_STATUS -lt 2  ];do*
    echo "Waiting...."
    sleep 5
    ORACLE_STATUS=$(ps -eaf | grep pmon_$ORA_SID | wc -l)
    done
    su - $ORA_OWNER -c "$ORA_HOME/bin/emctl start dbconsole"
    *"stop")*
    su - $ORA_OWNER -c "$ORA_HOME/bin/emctl stop dbconsole"
    esac
    Press the Esc key to leave insert mode, then type *:wq* to write the file and quit.
    We'll need to make the script executable, so we need to run the following command:
    [root@localhost init.d]# *chmod +x oracleEM*
    Finally we need to register the oracleEM script with Linux using the chkconfig command:
    [root@localhost init.d]# *chkconfig --add oracleEM*
    Now Enterprise Manager will start up automatically when you start your system, but only after Oracle has started.
    Rich
    Edited by: RichS on Jun 9, 2012 1:00 AM

    The script you are using will not work for RHEL or Oracle Linux since it is incorrect and missing important coding.
    You can probably fix the script by removing the dash (-) from the su command and adding the lockfile that is required for RHEL to process the stop routine at system shutdown. The dash will reset the shell environment and the startup won't work. You should also start it in the background in order not to prolong the system startup more then necessary.
    lockfile=/var/lock/subsys/oracleEM
    start)
       su $ORA_OWNER -c "$ORA_HOME/bin/emctl start dbconsole &" &>/dev/null
       touch $lockfile
    stop)
       su $ORA_OWNER -c "$ORA_HOME/bin/emctl stop dbconsole"
       rm -rf $lockfile
    ...You do not need to start your Oracle instance before starting dbconsole. So there is no need for the "sleep" routine. You can start the Oracle Database control console even when the instance is down:
    For instance:
    <pre>
    [oracle@vm005 ~]$ ps -ef | grep pmon
    oracle 17749 10343 0 22:48 pts/3 00:00:00 grep pmon
    $ emctl start dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    https://vm005.example.com:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ....... started.
    </pre>

  • Error on installing Enterprise Manager 11grid

    Hello
    I want to monitor the performance of our EBS R12.1
    so I only achieve this goal is to install 11grid in our Linux x86/64bit
    Our OS: Oracle Linux Enterprise 5.4
    DB: 11.1.0
    APPS: R12.1.2
    I run this command
    [oracle@tailinsubic bin]$ emca -config dbcontrol db -repos create
    STARTED EMCA at Jun 21, 2011 2:29:11 PM
    EM Configuration Assistant, Version 11.1.0.7.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: PROD3
    Listener port number: 1523
    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 ................ /oracle/PROD4/PROD/db/tech_st/11.1.0
    Local hostname ................ tailinsubic.ebs.com
    Listener port number ................ 1523
    Database SID ................ PROD3
    Email address for notifications ...............
    Outgoing Mail (SMTP) server for notifications ...............
    Do you wish to continue? [yes(Y)/no(N)]: yes
    Jun 21, 2011 2:29:42 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /oracle/PROD4/PROD/db/tech_st/11.1.0/cfgtoollogs/emca/PROD3/emca_2011_06_21_14_29_11.log.
    Jun 21, 2011 2:29:43 PM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Jun 21, 2011 2:29:43 PM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error creating the repository
    Jun 21, 2011 2:29:43 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at /oracle/PROD4/PROD/db/tech_st/11.1.0/cfgtoollogs/emca/PROD3/emca_repos_create_<date>.log for more details.
    Jun 21, 2011 2:29:43 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error creating the repository
    Refer to the log file at /oracle/PROD4/PROD/db/tech_st/11.1.0/cfgtoollogs/emca/PROD3/emca_2011_06_21_14_29_11.log for more details.
    Could not complete the configuration. Refer to the log file at /oracle/PROD4/PROD/db/tech_st/11.1.0/cfgtoollogs/emca/PROD3/emca_2011_06_21_14_29_11.log for more details.
    [oracle@tailinsubic bin]$
    please help
    thanks

    Thanks for your reply
    I found a site which is
    https://edelivery.oracle.com
    Select a Product Pack: Oracle Enterprise manager
    Platform: linux x86-64
    Description: Oracle Enterprise Manager 11g Grid Control Release 1 (11.1.0.1.0) Media Pack for Linux x86-64
    Release: 11.1.0.1.0
    Part Number: B58756-04
    Updated: MAR-28-2011      
    # Parts / Size: 14 / 13G
    To obtain my goal i have to download 11grid Control?
    may i ask a few questions:
    What does it mean about DBControl repository? and IMHO?
    Thanks

  • I have installed oracle 10g in my winxp machine. i am using enterprise manager. i am not able to shutdown the system as it asks for os username and password. i have provided my os username and password but eerror persiste. somebody pls help me to get rid

    I have installed oracle 10g in my winxp machine. i am using enterprise manager. i am not able to shutdown the system as it asks for os username and password. i have provided my os username and password but eerror persiste. somebody pls help me to get rid of this.

    Here I am using Java Type IV for database
    connection.
    So,there was no necessity of creating DNS.How your app communicates with db shouldn't matter for the end user. Still, you may want to use a functional network name also for the thin client driver connection string.
    So,is there any other way to solve this problem.What is the problem really? Do you not use dns for network naming? Maybe you have to manage the hosts file on every client then.

  • Please provide the patch set for Oracle Enterprise Manager Grid Control 10

    Hi,
    please provide the patch set for Oracle Enterprise Manager Grid Control 10.2.0.1 and 10.2.0.5 for AIX 5.3
    patch set for Oracle Enterprise Manager Grid Control for 11.2.0.2 OS AIX 5.3
    Thanks,
    Vishal Hande.

    user12009184 wrote:
    Hi,
    please provide the patch set for Oracle Enterprise Manager Grid Control 10.2.0.1 and 10.2.0.5 for AIX 5.3
    patch set for Oracle Enterprise Manager Grid Control for 11.2.0.2 OS AIX 5.3
    Thanks,
    Vishal Hande.you must obtain all patches directly from
    http://support.oracle.com

  • Top activity chart on Enterprise manager

    Hi,
    The Top activity chart is not empty on the Enterprise manager of a 2 node 11gR2 RAC DB,
    the statistics_level is set to "typical".
    NAME                   TYPE     VALUE
    optimizer_use_pending_statistics     boolean FALSE
    statistics_level                     string TYPICAL
    timed_os_statistics                  integer 0
    timed_statistics                     boolean TRUE
    $emctl status dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.3.0
    Copyright (c) 1996, 2011 Oracle Corporation.  All rights reserved.
    https://xx.xx.xx:1158/em/console/aboutApplication
    Oracle Enterprise Manager 11g is running.
    Logs are generated in directory /u01/app/oracle/product/11.2.0/db_1/xxx01_orcl/sysman/log
    $emctl status agent
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.3.0
    Copyright (c) 1996, 2011 Oracle Corporation.  All rights reserved.
    Agent Version     : 10.2.0.4.4
    OMS Version       : 10.2.0.4.4
    Protocol Version  : 10.2.0.4.4
    Agent Home        : /u01/app/oracle/product/11.2.0/db_1/xxx01_orcl
    Agent binaries    : /u01/app/oracle/product/11.2.0/db_1
    Agent Process ID  : 815
    Parent Process ID : 801
    Agent URL         : https://xxx.xx.xx:3938/emd/main
    Repository URL    : https://xx.xx.xx:1158/em/upload/
    Started at        : 2013-09-20 06:39:57
    Started by user   : oracle
    Last Reload       : 2013-12-09 19:37:51
    Last successful upload                       : 2013-12-26 09:47:31
    Total Megabytes of XML files uploaded so far :  3257.08
    Number of XML files pending upload           :        0
    Size of XML files pending upload(MB)         :     0.00
    Available disk space on upload filesystem    :    54.07%
    Data channel upload directory                : /u01/app/oracle/product/11.2.0/db_1/xxxx01_orcl/sysman/recv
    Last successful heartbeat to OMS             : 2013-12-26 09:49:41
    Agent is Running and Ready
    How can I enable the Top Activity chart on the Enterprise manager console.
    Thanks in advance.

    There is no pending upload in the EM Agent,
    STATISTICS_NAME                ACTIVATION_LEV SYSTEM_STATUS    STATISTICS_VIEW_NAME           SESSIO
    Buffer Cache Advice            TYPICAL        ENABLED          V$DB_CACHE_ADVICE              NO
    MTTR Advice                    TYPICAL        ENABLED          V$MTTR_TARGET_ADVICE           NO
    Timed Statistics               TYPICAL        ENABLED                                         YES
    Timed OS Statistics            ALL            DISABLED                                        YES
    Segment Level Statistics       TYPICAL        ENABLED          V$SEGSTAT                      NO
    PGA Advice                     TYPICAL        ENABLED          V$PGA_TARGET_ADVICE            NO
    Plan Execution Statistics      ALL            DISABLED         V$SQL_PLAN_STATISTICS          YES
    Shared Pool Advice             TYPICAL        ENABLED          V$SHARED_POOL_ADVICE           NO
    Modification Monitoring        TYPICAL        ENABLED                                         NO
    Longops Statistics             TYPICAL        ENABLED          V$SESSION_LONGOPS              NO
    Bind Data Capture              TYPICAL        ENABLED          V$SQL_BIND_CAPTURE             NO
    Ultrafast Latch Statistics     TYPICAL        ENABLED                                         NO
    Threshold-based Alerts         TYPICAL        ENABLED                                         NO
    Global Cache Statistics        TYPICAL        ENABLED                                         NO
    Active Session History         TYPICAL        ENABLED          V$ACTIVE_SESSION_HISTORY       NO
    Undo Advisor, Alerts and Fast  TYPICAL        ENABLED          V$UNDOSTAT                     NO
    Ramp up
    Streams Pool Advice            TYPICAL        ENABLED          V$STREAMS_POOL_ADVICE          NO
    Time Model Events              TYPICAL        ENABLED          V$SESS_TIME_MODEL              YES
    Plan Execution Sampling        TYPICAL        ENABLED          V$ACTIVE_SESSION_HISTORY       YES
    Automated Maintenance Tasks    TYPICAL        ENABLED                                         NO
    SQL Monitoring                 TYPICAL        ENABLED          V$SQL_MONITORING               YES
    Adaptive Thresholds Enabled    TYPICAL        ENABLED                                         NO
    V$IOSTAT_* statistics          TYPICAL        ENABLED                                         NO
    23 rows selected.

  • Oracle Enterprise Manager Agent deployment (Installation and Configuration) Error

    Hello,
    I am trying to create an agent on a linux server using Oracle Enterprise Manager 12.1.0.3. The user is created with root privilege on the server, by change /etc/sudoers entry username the same as the root entry. After that I tried to add host target by clicking Setup->Add Target->Add target Manually->Add Host Targets in the Oracle Enterprise Manager.
    In the Add Target view: I clicked on add, then I entry host and platform information. After that I click next. Then I provided the Linux x86-64 : Installation Details for
    Installation Base Directory, Instance Directory, Name Credential ... then click next. then click Deploy Agent.
    In the Add Host Status view: stages Initialization and Remote Prerequisite Check successfully passed, but in the stage Agent Deployment, it failed in the Installation and Configuration phrase of the Agent Deployment stage.
    The log content is shown below. There are numerous SEVERE Errors. But I don't have much experience in dealing with these type of problems. I thank you in advance for all the helps.
    lf
    WARNING: Validation of XML schema is disabled because AggregateDescriptions.xsd could not be found
    INFO: Creating new CFM connection
    INFO: Creating a new logger for oracle.sysman.top.agent
    INFO: Unmarshalling /users/ncgf/em_agent/core/12.1.0.3.0/inventory/ContentsXML/ConfigXML/oracle.sysman.top.agent.12_1_0_3_0.xml
    INFO: Creating a new logger for OuiConfigVariables
    INFO: Unmarshalling /users/ncgf/em_agent/core/12.1.0.3.0/inventory/ContentsXML/ConfigXML/OuiConfigVariables.1_0_0_0_0.xml
    INFO: Aggregate Description oracle.sysman.top.agent:12.1.0.3.0:common successfully loaded
    INFO: Aggregate Description OuiConfigVariables:1.0.0.0.0:common successfully loaded
    INFO: Successfully returning from CfmFactory.connect()
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 2 aggregate instances saved
    INFO: oracle.sysman.top.agent:IAction.perform() was called on {Action state:configuration in CfmAggregateInstance: oracle.sysman.top.agent:12.1.0.3.0:common:family=CFM:oh=/users/ncgf/em_agent/core/12.1.0.3.0:label=1}
    INFO: Framework waiting for Action to complete at 15:08:10.272
    INFO: CfwProgressMonitor:actionProgress:About to perform Action=configuration Status=is running with ActionStep=0 stepIndex=0 microStep=0
    WARNING: Skipping environment variable line: "}": oracle.sysman.emCfg.common.CfwException: A non-empty environment line must contain "=": }
    WARNING: Failed to read environment variable file /users/ncgf/em_agent/core/12.1.0.3.0/install/envVars.properties: java.io.FileNotFoundException: /users/ncgf/em_agent/core/12.1.0.3.0/install/envVars.properties (No such file or directory)
    INFO: oracle.sysman.top.agent:About to execute plug-in Agent Configuration Assistant
    INFO: oracle.sysman.top.agent:The plug-in Agent Configuration Assistant is running
    INFO: oracle.sysman.top.agent:Internal PlugIn Class: oracle.sysman.agent.config.AgentConfiguration
    INFO: oracle.sysman.top.agent:Classpath = /users/ncgf/em_agent/core/12.1.0.3.0/oui/jlib/srvm.jar:/users/ncgf/em_agent/core/12.1.0.3.0/jlib/agentConfig.jar:/users/ncgf/em_agent/core/12.1.0.3.0/jlib/emConfigInstall.jar:/users/ncgf/em_agent/core/12.1.0.3.0/sysman/jlib/emagentSDK.jar:/users/ncgf/em_agent/core/12.1.0.3.0/modules/oracle.http_client_11.1.1.jar:/users/ncgf/em_agent/core/12.1.0.3.0/sysman/jlib/log4j-core.jar
    INFO: oracle.sysman.top.agent:AgentConfiguration:agent configuration has been started
    INFO: oracle.sysman.top.agent:Parametes passed to agent configuration are:
    1.ORACLE_HOME=/users/ncgf/em_agent/core/12.1.0.3.0
    2.AGENT_PORT=3872
    3.ORACLE_HOSTNAME=nsn175-89.us.oracle.com
    4.b_doDiscovery=false
    5.AGENT_BASE_DIR=/users/ncgf/em_agent
    6.AGENT_INSTANCE_HOME=/users/ncgf/em_agent/agent_inst
    7.s_hostname=nsn175-89.us.oracle.com
    8.OMS_HOST=nsn175-105.us.oracle.com
    9.b_startAgent=false
    10.b_secureAgent=true
    11.b_chainedInstall=false
    12.b_forceConfigure=false
    13.EM_UPLOAD_PORT=4904
    14.b_forceAgentDefaultPort=false
    15.s_staticPorts=
    16.PROPERTIES_FILE=
    b_skipValidation=false
    INFO: oracle.sysman.top.agent:Validating OMS_HOST and EM_UPLOAD_PORT
    INFO: oracle.sysman.top.agent:Validating with http protocol ...
    INFO: oracle.sysman.top.agent:URL framed is:http://nsn175-105.us.oracle.com:4904/empbs/genwallet
    SEVERE: oracle.sysman.top.agent:Connection refusedUnexpected end of file from server
    INFO: oracle.sysman.top.agent:Validating with https protocol ...
    INFO: oracle.sysman.top.agent:URL framed is:https://nsn175-105.us.oracle.com:4904/empbs/genwallet
    SEVERE: oracle.sysman.top.agent:The EM_UPLOAD_PORT passed is a secure port. Hence AGENT_REGISTRATION_PASSWORD or s_encrSecurePwd should be passed
    INFO: oracle.sysman.top.agent:EM Protocol Switch determined: https
    INFO: oracle.sysman.top.agent:Performing free port detection..
    INFO: oracle.sysman.top.agent:Trying for host : nsn175-89/10.134.175.89 and port : 3872
    INFO: oracle.sysman.top.agent: Trying for host : /127.0.0.1 and port : 3872
    INFO: oracle.sysman.top.agent:** Agent Port Check completed successfully.**
    INFO: oracle.sysman.top.agent:Agent Port from User Passed Port3872
    INFO: oracle.sysman.top.agent:Paths after canonical format conversions are :
    1. state_dir=/users/ncgf/em_agent/agent_inst
    2. agentBaseDir=/users/ncgf/em_agent
    3. oraHome=/users/ncgf/em_agent/core/12.1.0.3.0
    INFO: oracle.sysman.top.agent:Parent directory of agent instance home:/users/ncgf/em_agent
    INFO: oracle.sysman.top.agent:AgentConfiguration:perform:AgentPortHandler for /users/ncgf/em_agent/core/12.1.0.3.0 and hosts=nsn175-89.us.oracle.com returned Port to Use=3872
    INFO: oracle.sysman.top.agent:Instantiating emctl.template file #DEFAULT_EMSTATE# with /users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent:Writing the following contents into /users/ncgf/em_agent/core/12.1.0.3.0/install/oragchomelist
    INFO: oracle.sysman.top.agent:/users/ncgf/em_agent/core/12.1.0.3.0:/users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent:Both /etc/oragchomelist and /var/opt/oracle/oragchomelist does not exist.
    INFO: oracle.sysman.top.agent:Executing emctl deploy agent command...
    INFO: oracle.sysman.top.agent:AgentConfiguration: Executing emctl deploy agent command...
    INFO: oracle.sysman.top.agent:Executing the command: /users/ncgf/em_agent/core/12.1.0.3.0/bin/emctl deploy agent -L -o nsn175-105.us.oracle.com:4904 -N /users/ncgf/em_agent/agent_inst nsn175-89.us.oracle.com:3872 nsn175-89.us.oracle.com
    INFO: oracle.sysman.top.agent:Creating shared install...
    INFO: oracle.sysman.top.agent:Source location: /users/ncgf/em_agent/core/12.1.0.3.0
    INFO: oracle.sysman.top.agent:Destination (shared install) : /users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent:Secure Mode: No
    INFO: oracle.sysman.top.agent:DeployMode : agent
    INFO: oracle.sysman.top.agent:
    INFO: oracle.sysman.top.agent:Creating directories...
    INFO: oracle.sysman.top.agent:Creating private.properties...
    INFO: oracle.sysman.top.agent:Creating blackouts.xml...
    INFO: oracle.sysman.top.agent:Creating targets.xml...
    INFO: oracle.sysman.top.agent:Creating emctl control program...
    INFO: oracle.sysman.top.agent:Creating emtgtctl control program...
    INFO: oracle.sysman.top.agent:Agent will not be secured.
    INFO: oracle.sysman.top.agent:Secure REPOSITORY_URL found. New agent should be configured for secure mode
    INFO: oracle.sysman.top.agent:Secure emdWalletSrcUrl found. New agent should be configured for secure mode
    INFO: oracle.sysman.top.agent:Oracle Enterprise Manager Cloud Control 12c Release 3
    INFO: oracle.sysman.top.agent:Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
    INFO: oracle.sysman.top.agent:Property 'agentTZRegion' is  missing from /users/ncgf/em_agent/agent_inst/sysman/config/emd.properties. Updating it...
    INFO: oracle.sysman.top.agent:An agentTZregion of 'US/Pacific' is installed in /users/ncgf/em_agent/agent_inst/sysman/config/emd.properties.
    INFO: oracle.sysman.top.agent:The command: /users/ncgf/em_agent/core/12.1.0.3.0/bin/emctl deploy agent -L -o nsn175-105.us.oracle.com:4904 -N /users/ncgf/em_agent/agent_inst nsn175-89.us.oracle.com:3872 nsn175-89.us.oracle.com completed with status=0
    SEVERE: oracle.sysman.top.agent:Securing of agent step will be skipped because of the following reasons:
    1. Agent Registration Password was not passed.
    2. b_secureAgent was passed as false
    3. The flag -forceConfigure was assed from agentDeploy.sh
    INFO: oracle.sysman.top.agent:Plugin File:/users/ncgf/em_agent/plugins.txt
    INFO: oracle.sysman.top.agent:Plugin Homes found.
    INFO: oracle.sysman.top.agent:Executing command :/users/ncgf/em_agent/core/12.1.0.3.0/perl/bin/perl /users/ncgf/em_agent/core/12.1.0.3.0/bin/AgentPluginDeploy.pl -oracleHome /users/ncgf/em_agent/core/12.1.0.3.0 -agentDir /users/ncgf/em_agent -pluginIdsInfoFile /users/ncgf/em_agent/plugins.txt -action configure -emStateDir /users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent:
    INFO: oracle.sysman.top.agent:
    INFO: oracle.sysman.top.agent:The Agent emStateDir location passed is /users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent: The log file is /users/ncgf/em_agent/agent_inst/install/logs/agentplugindeploy_2013_10_16_15_08_11.log
    INFO: oracle.sysman.top.agent: The temp file created to check R/W permissions in Oraclehome: /users/ncgf/em_agent/core/12.1.0.3.0 is /users/ncgf/em_agent/core/12.1.0.3.0/rwFile
    INFO: oracle.sysman.top.agent:Plugin command completed with status=0
    INFO: oracle.sysman.top.agent:Executing command :/users/ncgf/em_agent/agent_inst/bin/emctl listplugins agent -type all
    INFO: oracle.sysman.top.agent:Oracle Enterprise Manager Cloud Control 12c Release 3
    INFO: oracle.sysman.top.agent:Oracle Enterprise Manager Cloud Control 12c Release 3
    INFO: oracle.sysman.top.agent:Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
    INFO: oracle.sysman.top.agent:Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
    INFO: oracle.sysman.top.agent:---------------------------------------------------------------
    INFO: oracle.sysman.top.agent:---------------------------------------------------------------
    SEVERE: oracle.sysman.top.agent:ERROR: The Management Agent configuration failed. The plug-in configuration for the oracle.sysman.oh monitoring plug-in may have failed, or this plug-in may not be present in the Management Agent software. Ensure that the Management Agent software has the oracle.sysman.oh monitoring plug-in, if not then retry the operation. If the agent software has the oracle.sysman.oh monitoring plug-in, view the plug-in deployment log /users/ncgf/em_agent/agent_inst/install/logs to check if the plug-in configuration for the oracle.sysman.oh monitoring plug-in failed.
    SEVERE: oracle.sysman.top.agent:Agent configuration has failed
    INFO: oracle.sysman.top.agent:AgentConfiguration:agent configuration finished with status = false
    INFO: oracle.sysman.top.agent:AgentConfiguration:agent configuration finished with status = false
    INFO: oracle.sysman.top.agent:The plug-in Agent Configuration Assistant has failed its perform method
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 2 aggregate instances saved
    INFO: done waiting for Action from 15:08:10.272
    Thank you for your help AkankshaSheoranKaler. I have executed the following command based on your request. If there is any issue, please let me know. Thanks!
    "Can you run this command to make sure that the agents bits were downloaded correctly : oms home /bin /emcli verify_updates
    Share the output of the command. I am suspecting this is a know issue (Bug 17300008) but i will wait for your output.  Also if you can open an SR with oracle support to track this issue and its resolution. "
    [ncgf@nsn175-105 bin]$ ./emcli setup -url=https://nsn175-105.us.oracle.com:7803/em -u sername=SYSMAN
    Oracle Enterprise Manager 12c 3.
    Copyright (c) 1996, 2013 Oracle Corporation and/or its affiliates. All rights reserve d.
    The configuration directory "/users/ncgf" may not be local. See the "dir" option in t he help for the setup command.
    Do you want to continue using this directory? [yes/no] yes
    Enter password
    Emcli setup successful
    [ncgf@nsn175-105 bin]$ ./emcli verify_updates
    Verifying updates. Starting validation...
    Type       : Plug-in
    Description: Demo Hostsample Test Plugin
    Attributes
            Version: 1201000100
            Revision: 0
            OS Platform: Generic Platform
            Plug-in Name: Demo Host Sample Plugin
    Archives are missing from the Software Library. Unable to determine the URL for downloading the update. The update might not have come from Oracle Enterprise Manager Store.
    For each update with missing archives, emcli import_update can be used with a -force option to re-upload the archives to the Software Library.

       Hello AkankshaSheoranKaler
    We have done the following, but we aren't able to resolve this issue. Thank you for your help!
    lf
    “This  happen if the software library is not accessible, readable or unmounted (if it is in shared file system).”
    On Enterprise Manager server [nsn175-105], we did the following:
    1. we modified /etc/exports to include this line: /export *(rw,no_root_squash,sync)
    we start nfs service by executing command “service nfs start”.  
    On Management Agent server (nsn175-89), we verified that we are able to mount /export directory of EM server.
    On Management Agent server, we started firefox browser and were able to run successfully https://nsn175-105.us.oracle.com:4904/empbs/genwallet
    After making this change, we ran agent deployment again. We encountered the same error as shown above.
    “You can fix the software library or you can download the agent bits in offline mode.”
    For fixing the software library, select Setup->Provision and Patching->Offline Patching, then select Offline Patching radio button, download: https://updates.oracle.com/download/em_catalog.zip. Next upload this zip file.
    “Try downloading the bits again”
    We are not sure what agent bits are. Would you please explain this and provide procedure how we can download this?
    (Here I have attempted to fix the software library, but I am new to Enterprise Manager and not sure how to interpret this).

  • Oracle Enterprise Manager "Performance" tab  (Oracle 10g)

    Hi,
    How to I make a report based on Performance TAB.
    View Data -> Historical
    Sessions
    Runnable Process
    Active Sessions
    Instance Disk i/o
    Instance throughput
    Explain : What is (example :*what is session for?* ) , What is X and Y (example :*what is X = Y= Time and date*)
    Please reply.. I need it by today.. :(

    The help file explains it a lot better than I can... therefore:
    Interpreting the Host: Average Runnable Processes Chart
    If you have opted to show both the CPU cores and CPU threads,
    consistent values somewhere between the two line values may
    indicate that too many users are waiting in line for CPU time.
    Compare the values with those of CPU Used in the Average Active
    Sessions chart. If the sessions value is low and the run queue
    length value is high, this indicates that something else on the host
    other than your database is consuming the CPU.
    If you have selected Memory Access mode, the Host chart does
    not initially display historical data, except when the screen was
    loaded recently and cached historical data is still available. Host data
    is cached starting from the time the screen was first accessed,
    and gradually fills the history on the Host chart.
    Interpreting the Average Active Sessions Chart
    The Session Count is computed by categorizing the time
    that all active sessions consumed in the last sampling interval
    into different wait classes, summing the amount in each wait class,
    and dividing it by the sampling interval. For example, If there
    are 3 active sessions in the last 15-second sampling interval, and
    each session spent half of the time (7.5 seconds each) on CPU
    and half of the time idling, then 3 x 7.5 / 15 = 1.5 active sessions
    on CPU appear for that sampling interval.
    Compare the peaks on the Average Active Sessions chart with those
    on the Instance Throughput charts. If the Average Active Sessions
    chart displays a large number of sessions waiting, indicating internal
    contention, but throughput is high, then the situation may be
    acceptable. The database is probably also performing efficiently if
    internal contention is low but throughput is high. However, if internal
    contention is high but throughput is low, then consider tuning the database. Selecting Memory Access Mode for Slow or Hung Systems
    You can click the Monitor In Memory Access Mode link in the Related Links section to enable Memory Access Mode. The Database Performance page reappears with a Disable Memory Access Mode button and a Switch to SQL Access Mode button in the upper right corner.
    You can temporarily disable Memory Access Mode by clicking this button, upon which the Database Performance page reappears in SQL Access Mode. To reactivate Memory Access Mode, click the Monitor In Memory Access Mode link again, then click Enable Memory Access Mode when the Database Performance page reappears.
    In Memory Access Mode, performance statistics are retrieved directly from the Shared Global Area (SGA) using optimized/lightweight system-level calls as an alternative to SQL. Memory Access mode avoids the computation associated with parsing and executing SQL statements, thereby making it ideal for severe cases of library cache contention that can prevent the instance from being monitored in SQL Mode. You should switch to Memory Access Mode for slow or hung systems.
    Pages in Memory Access Mode contain data sampled at a higher frequency than pages in SQL Mode. (Charts may appear to be slightly different from SQL mode for this reason.) Consequently, Enterprise Manager provides better information about where events begin and end, and can also handle short-duration events that might otherwise be missed.
    >
    It basically tells you how much of a given resource was used at a point in time.
    John

  • Enterprise manager is shutting down intermittently

    Hi,
    The Enterprise manager of our production 10.2.0.4 database is shutting down intermittently with the following errors in the "emagent.trc" file;
    SQL = "OCIServerAttach"...
    LOGIN = dbsnmp/<PW>@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=c1-hd03)(PORT=1521)
    )(CONNECT_DATA=(SID=center)))
    2010-06-13 09:04:47 Thread-31773 ERROR vpxoci: Error while trying to retrieve text for error ORA
    -12157
    2010-06-13 09:04:51 Thread-264310 ERROR fetchlets.healthCheck: GIM-00104: Health check failed to
    connect to instance.
    GIM-00090: OS-dependent operation:open failed with status: 24
    GIM-00091: OS failure message: Too many open files
    GIM-00092: OS failure occurred at: sskgmsmr_7
    2010-06-13 09:04:51 Thread-264310 ERROR engine: [oracle_database,center,health_check] : nmeegd_
    GetMetricData failed : Instance Health Check initialization failed due to one of the following c
    auses: the owner of the EM agent process is not same as the owner of the Oracle instance process
    es; the owner of the EM agent process is not part of the dba group; or the database version is n
    ot 10g (10.1.0.2) and above.
    2010-06-13 09:05:02 Thread-31773 WARN vpxoci: OCI Error -- ErrorCode(12157): Error while trying
    to retrieve text for error ORA-12157
    It has been identified as a bug in the Oracle metalink ID 368612.1, and one workaround has been provided in the metalink note, but it did not resolve the issue.
    Any help in this regard will be appreciated.
    Thanks!

    Hi user-1221,
    If you have a metalink account that can create an SR call, please create one immediately.
    I have never seen GIM errors but you have some issues about the operating system then :(
    Ogan

  • Cannot Connect using Enterprise Manager

    The details of the Oracle 9i Server 9.2.0.1.0 are as follows:
    IP: 172.25.22.78
    SID: MSPD
    Port 1521
    I am trying to connect to this server using enterprise manager but i get the "ORA-12543: TNS:destination host unreachable" Error.
    However I am able to ping the server successfully.
    When I try the command telnet 172.25.22.78 1521 I get an error "Could not open connection to Host, on port 1521; connect failed."
    What could be the reason?
    Following is the entry in TNSNAMES.ORA
    # TNSNAMES.ORA Network Configuration File: C:\oracle\ora92\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle configuration tools.
    MSPD_172.25.22.78 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.25.22.78)(PORT = 1521))
    (CONNECT_DATA =
    (SID = mspd)
    (SERVER = DEDICATED)
    Thanks and Regards,
    Ashwin

    Hello everyone,
    Thanks for all your answers so far. I appreciate your assistance very much.
    Does tnsping work?
    No TNSPING 172.25.22.78 1521 did not work
    Can you connect via sqlplus?
    No. The net service mspd_172.25.22.78 is configured in the Net Manager.
    It fails when I test it from Net manager as well as SQL Plus
    The server is in Boston.
    This problem is only occuring when we are accessing the server from Mumbai.
    My team from Cincinatti is able to connect to the server.
    ping, tnsping, sqlplus, telnet are all successful for them.
    When i contacted the Network team in mumbai they had a look at the Trace route of the IP and declared that there is no firewall from our side that is blocking the communication. They asked me to contact the client to see if the server port they provided is correct and is open for access.
    Could it be that the client put up a firewall that allows access from cincinatti office but not mumbai? (all tests from cinci - pass, all tests from mumbai except ping fail).
    Is it possible that Cinci team can access port 1521 but from mmumbai we have to give another port which is reverse mapped to port 1521?
    Thanks and Regards,
    Ashwin

  • Problem in setting up Enterprise Manager in 11g version 2

    Hello,
    I am facing some problem in starting Oracle enterprise manager. Oracle EM Grid control is not installed.
    OS = Linux x86_64
    Oracle version = 11.2.0
    Following is the output in while providing "set" command and TNS listener is running.
    A__z='"*SHLVL'
    BASH=/bin/bash
    BASHOPTS=cmdhist:expand_aliases:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath
    BASH_ALIASES=()
    BASH_ARGC=()
    BASH_ARGV=()
    BASH_CMDS=()
    BASH_LINENO=()
    BASH_SOURCE=()
    BASH_VERSINFO=([0]="4" [1]="1" [2]="2" [3]="1" [4]="release" [5]="x86_64-redhat-linux-gnu")
    BASH_VERSION='4.1.2(1)-release'
    CLASSPATH=/opt/oracle/product/11.2.0/db_1/jlib:/opt/oracle/product/11.2.0/db_1/rdbms/jlib
    COLUMNS=157
    DIRSTACK=()
    DISPLAY=local_host:0.0
    EUID=502
    GROUPS=()
    G_BROKEN_FILENAMES=1
    HISTCONTROL=ignoredups
    HISTFILE=/opt/oracle/.bash_history
    HISTFILESIZE=1000
    HISTSIZE=1000
    HOME=/opt/oracle
    HOSTNAME=ariane
    HOSTTYPE=x86_64
    IFS=$' \t\n'
    LANG=en_US.UTF-8
    LD_LIBRARY_PATH=:/usr/openwin/lib:/usr/local/lib:/usr/local/lib:/usr/lib:/usr/lib64:/lib:/lib64:/opt/oracle/product/11.2.0/db_1/lib
    LESSOPEN='|/usr/bin/lesspipe.sh %s'
    LINES=46
    LOGNAME=oracle
    MACHTYPE=x86_64-redhat-linux-gnu
    MAIL=/var/spool/mail/oracle
    MAILCHECK=60
    OLDPWD=/opt/oracle/product/11.2.0/db_1/jlib
    OPTERR=1
    OPTIND=1
    ORACLE_BASE=/opt/oracle
    ORACLE_DOC=/opt/oracle/product/11.2.0/db_1/doc
    ORACLE_HOME=/opt/oracle/product/11.2.0/db_1
    ORACLE_SID=SIDB
    OSTYPE=linux-gnu
    PATH=/bin:/usr/bin:/usr/ccs/bin:/usr/local/bin:/opt/bin:/opt/oracle/product/11.2.0/db_1/bin:/opt/oracle/orasql/SIDB:/opt/oracle/orarepl/SIDB/scripts/conf:/opt/oracle/orarepl/SIDB/scripts/monitor:/opt/oracle/backup/bin
    PIPESTATUS=([0]="127")
    PPID=41740
    PS1='\s-\v\$ '
    PS2='> '
    PS4='+ '
    PWD=/opt/oracle/product/11.2.0/db_1/bin
    SHELL=/bin/ksh
    SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
    SHLVL=2
    TERM=xterm
    TZ=Asia/Kolkata
    UID=502
    USER=oracle
    _=oracle/sysman/emd/targetIntg/agent/AgentTargetInstaller
    *After providing the command "./emctl start dbconsole", I'm getting following error.*
    Can't locate CompEMdbconsole.pm in @INC (@INC contains: %s_javapOracleHome%/sysman/admin/scripts %s_javapOracleHome%/bin /opt/oracle/product/11.2.0/db_1/perl/lib/5.10.0/x86_64-linux-thread-multi /opt/oracle/product/11.2.0/db_1/perl/lib/5.10.0 /opt/oracle/product/11.2.0/db_1/perl/lib /opt/oracle/product/11.2.0/db_1/perl/lib/site_perl/5.10.0/x86_64-linux-thread-multi /opt/oracle/product/11.2.0/db_1/perl/lib/site_perl/5.10.0 /opt/oracle/product/11.2.0/db_1/perl/lib/site_perl /opt/oracle/product/11.2.0/db_1/perl/libwww-perl/lib /opt/oracle/product/11.2.0/db_1/perl/ext/POSIX /opt/oracle/product/11.2.0/db_1/perl/URI /opt/oracle/product/11.2.0/db_1/perl/HTML_Parser /opt/oracle/product/11.2.0/db_1/perl/HTML-Parser/lib /opt/oracle/product/11.2.0/db_1/sysman/admin/scripts /opt/oracle/product/11.2.0/db_1/bin /opt/oracle/product/11.2.0/db_1/sysman/admin/scripts/Net-DNS-0.48/lib/ /opt/oracle/product/11.2.0/db_1/sysman/admin/scripts/libnet-1.19/ .) at /opt/oracle/product/11.2.0/db_1/bin/EmctlCommon.pm line 597.
    *Running only "./emctl" provides :*
    OC4J Configuration issue. /opt/oracle/product/11.2.0/db_1/sysman/j2ee not found.
    *Running " ./emca -config dbcontrol db -repos recreate", gives the output*
    "STARTED EMCA at Sep 26, 2012 1:07:55 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: SIDB
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/sysman/emd/targetIntg/agent/AgentTargetInstaller
    at oracle.sysman.emcp.target.TargetManager.getAgentTargetInstaller(TargetManager.java:1008)
    at oracle.sysman.emcp.target.TargetManager.getLocalHost(TargetManager.java:1033)
    at oracle.sysman.emcp.ParamsManager.getLocalHost(ParamsManager.java:1037)
    at oracle.sysman.emcp.ParamsManager.getHost(ParamsManager.java:3020)
    at oracle.sysman.emcp.DatabaseChecks.checkDbAvailabilityImpl(DatabaseChecks.java:118)
    at oracle.sysman.emcp.DatabaseChecks.checkDbAvailability(DatabaseChecks.java:163)
    at oracle.sysman.emcp.DatabaseChecks.getDbServiceName(DatabaseChecks.java:582)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1267)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:573)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:521)
    Could anyone please let me know the corrective actions to be taken? Whether installing OEM Grid control is mandatory?
    Thanks,
    Deb

    Hello,
    Yes. Both are ruuning. Output of lsnrctl status :
    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 26-SEP-2012 13:32:36
    Copyright (c) 1991, 2009, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=SIDB))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    Start Date 15-SEP-2012 19:58:20
    Uptime 10 days 17 hr. 34 min. 16 sec
    Trace Level off
    Security ON: Password or Local OS Authentication
    SNMP OFF
    Listener Parameter File /opt/oracle/product/11.2.0/db_1/network/admin/listener.ora
    Listener Log File /opt/oracle/diag/tnslsnr/ariane/listener/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=SIDB)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=PNPKEY)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=arian)(PORT=1521)))
    Services Summary...
    Service "SIDB" has 1 instance(s).
    Instance "SIDB", status UNKNOWN, has 1 handler(s) for this service...
    Service "SIDB.10.54.159.32" has 1 instance(s).
    Instance "SIDB", status READY, has 1 handler(s) for this service...
    The command completed successfully

  • 10g / Enterprise Manager / SAVES old CONNECT STRING

    Using 10g Personal Edition on Windows XP, I was able to use Enterprise Manager.
    Then I rebooted. My DSL modem changed the IP address. The previous IP address was stored in SqlNet.ORA, TNSNames.Ora, the Registry and in a file directory name:
    F:\oracle\product\10.1.0\Db_5\208.127.230.185_Forcl
    The new IP is 208.127.230.136 .
    I can login with SQL*Plus.
    Enterprise Manager says I should Recover the Database. It uses this connect string:
    (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=208.127.230.185)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=Forcl)))
    There is no clear place to edit the HOST IP or to clear out ALL of the previous references to the old IP address.
    Suggestions?
    Thanks,
    - CarlD

    We're on the right track.
    Is a loopback connector a software setting or some form of hardware?
    If I have to reconfigure every time I boot, are there specific files that need to change? Can I just edit the file?
    I don't see a reconfigure or -reconfigure option. I can run:
    emctl deploy [two options]
    Deploy has two options :
         emctl deploy agent [-n <NTServiceName>] [-u <NTServiceUsername>] [-p <NTServicePassword>] [-s <install-password>] <deploy-dir> <deploy-hostname>:<port> <source-hostname>
         emctl deploy dbconsole [-n <NTServiceName>] [-u <NTServiceUsername>] [-p <NTServicePassword>] [-s <install-password>] <deploy-dir> <deploy-hostname>:<port> <source-hostname> <sid>
    agent :
         'agent' creates and deploys only the agent.
         'dbconsole' creates and deploys both the agent and the dbconsole.
    [-s <password>]:
         Install password for securing agent.
    [-n <NTServiceName>]:
         The name of the Windows Service to create for the deployment. If
         not specified no service is created.
    [-u <NTServiceUsername>]:
    [-p <NTServicePassword>]:
         Credentials of the Windows Service. The deployed agent/dbconsole
         will run with these credentials.
    <deploy-dir> :
         Directory to create the shared(state-only) installation
    <deploy-hostname:port> :
         Hostname and port of the shared(state-only) installation.
         Choose unused port.
    <source-hostname> :
         The hostname of the source install.
         Typically the machine where EM is installed. This is searched and
         replaced in targets.xml by the hostname provided in
         argument <deploy-hostname:port>.
    <sid> :
         The instance of the remote database. Only specified when
         deploying "dbconsole".

  • Oracle Enterprise Manager Ops Center 12c does not support RHEL 5.9 but did oracle have any plan to release patchs to support RHEL 5.9?

    To Forum Users,
    Below is my issue description:
    OPS Center 12C is successfully installed & configured on RHEL 5.9 but post installation while trying to configure controller (enterprise & proxy) using http url it redirect to secure port https but doent promts login screen page. Later i found RHEL 5.9 O.S doen't support Ops center 12c.
    Did oracle have any bug / patches for this issue ? or any planned release for / against this vulnerabilities ?

       Hello AkankshaSheoranKaler
    We have done the following, but we aren't able to resolve this issue. Thank you for your help!
    lf
    “This  happen if the software library is not accessible, readable or unmounted (if it is in shared file system).”
    On Enterprise Manager server [nsn175-105], we did the following:
    1. we modified /etc/exports to include this line: /export *(rw,no_root_squash,sync)
    we start nfs service by executing command “service nfs start”.  
    On Management Agent server (nsn175-89), we verified that we are able to mount /export directory of EM server.
    On Management Agent server, we started firefox browser and were able to run successfully https://nsn175-105.us.oracle.com:4904/empbs/genwallet
    After making this change, we ran agent deployment again. We encountered the same error as shown above.
    “You can fix the software library or you can download the agent bits in offline mode.”
    For fixing the software library, select Setup->Provision and Patching->Offline Patching, then select Offline Patching radio button, download: https://updates.oracle.com/download/em_catalog.zip. Next upload this zip file.
    “Try downloading the bits again”
    We are not sure what agent bits are. Would you please explain this and provide procedure how we can download this?
    (Here I have attempted to fix the software library, but I am new to Enterprise Manager and not sure how to interpret this).

  • Unable to open Enterprise Manager in web browser

    Hi All,
    I have configured EM in my single instance database in Windows server 2008 inside VMware . But i am unable to open em in web browser.
    C:\Users\Administrator>emctl status dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    https://WIN-4RW5HRZKIEB:1158/em/console/aboutApplication
    Oracle Enterprise Manager 11g is running.
    Logs are generated in directory C:\app\oracle\product\11.2.0\dbhome_1/WIN-4RW5HRZKIEB_dipu/sysman/log
    and my listener status
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Production
    Start Date 11-APR-2013 23:06:27
    Uptime 0 days 0 hr. 58 min. 46 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Log File c:\app\oracle\diag\tnslsnr\WIN-4RW5HRZKIEB\listener\alert\log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=WIN-4RW5HRZKIEB)(PORT=1521)))
    Services Summary...
    Service "arya1XDB" has 1 instance(s).
    Instance "arya1", status READY, has 1 handler(s) for this service...
    Service "dipu" has 1 instance(s).
    Instance "arya1", status READY, has 1 handler(s) for this service...
    The command completed successfully
    But when i am entering the eterprise manager link(https://WIN-4RW5HRZKIEB:1158/em) on my web browser of windows 2008 nothing is comming. please tell me how to resolve it
    Regards,
    Arya

    I'm having a similar issue.
    Did a fresh install of 11.2.0.1.0 under Windows 2003 - latest updates - IE 8.
    I can access Enterprise Manager from other computers - but not from the local server.
    I've tried both: https://oracle.xxxx.xxx:1158/em and https://localhost:1158/em
    Both give me the generic "Internet Explorer cannot display the webpage" - but if I access from another computer it comes up - so I know everything is working...

  • Cannot send email using PL/SQL through Enterprise Manager 10g

    Hi
    I need to schedule a job that sends email periodically. I am using the scheduler in Oracle Enterprise Manager 10g for this. For sending the email, I am creating a PL/SQL job. The code is as follows:
    PROCEDURE send_test_message
    IS
    mailhost := 'iwblrcormsg001.sci.local';
    sender := '[email protected]';
    recipient := '[email protected]';
    mail_conn utl_smtp.connection;
    BEGIN
    mail_conn := utl_smtp.open_connection(mailhost, 25);
    utl_smtp.helo(mail_conn, mailhost);
    utl_smtp.mail(mail_conn, sender);
    utl_smtp.rcpt(mail_conn, recipient);
    utl_smtp.open_data(mail_conn);
    utl_smtp.write_data(mail_conn, 'This is a test message.' || chr(13));
    utl_smtp.write_data(mail_conn, 'This is line 2.' || chr(13));
    utl_smtp.close_data(mail_conn);
    utl_smtp.quit(mail_conn);
    END;
    I have setup the smtp server and received a test email from the EM notifying me of successful configuration. When the above job is run, the scheduler shows status as successful. If I go to the command step, it displays the following output:
    Output Log
    SQL*Plus: Release 10.1.0.2.0 - Production on Thu Feb 19 19:04:29 2009
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> SQL> SQL> SQL> Connected.
    SQL> SQL> 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 Disconnected from Personal Oracle Database 10g Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Now, the only issue is that I do not receive any email at the address specified! I would be very grateful if someone could point out the error here.

    I would use APEX4.0 for this.
    Create an interactive report based on your data. Add a chart to that report and use the NOTIFY feature to send you the email.

Maybe you are looking for