How to start Oracle Enterprise manager

Hi,
I installed the Oracle 10g, but I cann't start OEM. How to start OEM?

I have similar problems. I have removed and installed Oracle twice to see if that would help. Every time I am able to actually start OEM, but when I reboot the PC it stops functioning. The two first times OEM was to be found at http://PJMOBILE:5500/em/ and the third time at http://localhost:5500/em/. I wonder why its different.
So I read the previous notes on this issue with great interst. I tried the different advises but with out success.
When I typed "emctl" I got the message "EM Configuration issue. C:\oracle\product\10.1.0\Db_1/PJMOBILE_global not found."
WHen I types "emctl start dbconsole" I got the message "OC4J Configuration issue. C:\oracle\product\10.1.0\Db_1/oc4j/j2ee/OC4J_DBConsole_PJMOBILE_global not found."
In both cases it looks for files in a path name based on my computer name PJMOBILE as opposed to based on "localhost". These directoriues are not there but their localhost counterparts are.
So it seems to me that rebooting my machine has caused some environment variable to be erased.
I hope this adds to the analysis of matters.
Best regards
/poul-jørgen

Similar Messages

  • How to start Oracle Enterprise Manager(Oracle 9i) on Sun Solaris 9 platform

    Hi
    How to start Oracle Enterprise Manager(Oracle 9i) on Sun Solaris 9 platform and Oracle Enterprise Manager(Oracle 10G) on Sun Solaris 10 platform?
    Thanks.
    RJ.

    I need to use it to unlock some accounts.There is a SQL command to do that
    SQL> alter user <username> account unlock;
    Anyway...
    $ export ORACLE_SID=chucky
    $ emctl start dbconsole

  • Starting Oracle Enterprise Manager

    This is an easy question for someone. I installed 9i on a Red Hat 9 Linux system. There was an error at the end of the install so I don't think it completely installed the tools. I have managed to fix most of the errors and can successfully start the database. What I haven't been able to find is the command to start the Enterprise Manager. Our dba hasn't ever used the unix tool he has become a point and click admin using Windows for too long. Can someone tell me how to start the Enterprise Manager in Linux. Thanks.

    Try this on the machine itself as the oracle user :
    $ORACLE_HOME/bin/oemapp console

  • How to configure Oracle Enterprise Manager for ASM RAC Database ?

    Dears,,
    We have two databases (Primary & Standby), each database has two instances
    Database version: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit
    How to configure Oracle Enterprise Manager for this environment ?
    I need documentation for this please.
    Many thanks & Regards,,

    Assuming an agent is running on the servers you want to monitor,
    navigate to the Agent home page (Via setup --> Agent)
    When in the agent home page select 'Add Database'and press [Go]
    Assuming yopur database now gets recognized, select the Configure icon and enter the password for dbsnmp.
    When done, press [Ok] to return to the agent home page.
    Regards
    Rob
    http://oemgc.wordpress.com

  • How to configure Oracle Enterprise manager 11.2.0.1 for ASM instance

    Hi All,
    Please let us know How to configure Oracle Enterprise manager 11.2.0.1 for ASM instance.
    Reagrds,
    Vikas

    Assuming an agent is running on the servers you want to monitor,
    navigate to the Agent home page (Via setup --> Agent)
    When in the agent home page select 'Add Database'and press [Go]
    Assuming yopur database now gets recognized, select the Configure icon and enter the password for dbsnmp.
    When done, press [Ok] to return to the agent home page.
    Regards
    Rob
    http://oemgc.wordpress.com

  • 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>

  • Help needed with starting Oracle Enterprise Manager on win 2008 server SP2

    Hi,
    i am unable to start the oracle enterprise manager. I did the following steps:
    E:\oracle\product\10.2.0\db_1\BIN>sqlplus
    SQL*Plus: Release 10.2.0.4.0 - Production on Tue Oct 12 16:59:20 2010
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    Enter user-name: /as sysdba
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Productio
    With the Partitioning, OLAP, Data Mining and Real Application Testing optio
    SQL> host
    Microsoft Windows [Version 6.1.7600]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.
    E:\oracle\product\10.2.0\db_1\BIN>emctl stop dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    https://primary:1158/em/console/aboutApplication
    The OracleDBConsoleorcl service is not started.
    More help is available by typing NET HELPMSG 3521.
    E:\oracle\product\10.2.0\db_1\BIN>emctl status dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    https://primary:1158/em/console/aboutApplication
    Oracle Enterprise Manager 10g is not running.
    E:\oracle\product\10.2.0\db_1\BIN>emctl start dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    https://primary:1158/em/console/aboutApplication
    Agent Version : 10.1.0.6.0
    OMS Version : 10.1.0.6.0
    Protocol Version : 10.1.0.2.0
    Agent Home : E:\oracle\product\10.2.0\db_1\primary_orcl
    Agent binaries : E:\oracle\product\10.2.0\db_1
    Agent Process ID : 1740
    Agent URL : https://primary:1830/emd/main
    Started at : 2010-10-11 18:12:36
    Started by user : SYSTEM
    Last Reload : 2010-10-12 12:37:00
    Last successful upload : 2010-10-12 09:31:28
    Last attempted upload : 2010-10-12 16:55:14
    Total Megabytes of XML files uploaded so far : 2.87
    Number of XML files pending upload : 264
    Size of XML files pending upload(MB) : 1.34
    Available disk space on upload filesystem : 37.95%
    Agent is already started. Will restart the agent
    The syntax of this command is:
    NET STOP
    service

    Sorry mate,
    i have no idea why its showing different versions. I installed the software using the media i received thru Oracle for 64 bits.
    I started the Windows service for dbconsole. It worked for a minute and the page disappeared again. Does it have something to do with firewall. I had set the Firewall off.

  • Can't start Oracle Enterprise Manager

    Hi
    We installed Oracle Database 10g on Sun Solaris SPARC 64 bit.
    I am trying to access Oracle Enterprise manager but cannot.
    I tried to start the dbconsole but got the following error:
    /external1/oracle/testdb/9.2.0/bin
    ./emctl start dbconsole
    result was :./emctl: No such file or directory
    Can you please help me solve this problem?
    Regards
    Quintus

    bash-3.00$ export
    ORACLE_HOME=external1/oracle/testdb/9.2.0/
    bash-3.00$ export ORACLE_SID=TEST
    bash-3.00$ emctl status dbconsole
    bash: emctl: command not found
    I seriously doubt you ever read my previous post.
    You can try the commands a thousand times on your 9i installation, it's not going to work period.

  • How to start oracle policy manager

    Hello all,
    I don't know how start the oracle policy manager on Linux Plataform, I have installed Oracle 9.2.0.4 on RHEL3, thanks for your help

    Hi
    OPM, oracle policy manager, is installed with the old enterprise manager.
    OPM is to manage VPD, virtuell private database and label security.
    Label Security is an extra Option.
    Regards
    Roman

  • How to start Oracle Configuraton Manager?

    Hi
    I am a bit greenhorn to EBS
    I don't know how to start OAM.
    Could anyone help please?
    We have EBS R12 on AIX.
    Thanx

    Jane,
    OAM is a responsibility which can be accessed from the application.
    Please refer to:
    Note: 413067.1 - No OAM Application Manager Link in R12 after a fresh installation
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=413067.1

  • How to configure Oracle Enterprise manager.

    Hello,
    I recently installed Oracle EBS 12.1.1 on RedHat Enterprise Linux 6.2(64 bit). Then upgraded the database to 11.2.0.3 and application to 12.1.3.
    While upgrading the database i got the error message that enterprise manager configuration failed.
    I now want to configure the enterprise manager, can anyone please help me with this.
    Please find the log file and screen shot at below link:-
    https://docs.google.com/file/d/0B_bzj8IFyvCRNnRUclpUVnNjVTQ/edit?usp=sharing
    Thanks,
    Swapnil

    Hi,
    Following your attached files i noted that the error was :
    oracle.sysman.emcp.exception.EMConfigException: Password file may be missing or configured incorrectly
    is the password file exists under $ORACLE_HOME/dbs/orapwSID?
    if there is not a orapw file so you have to create it
    orapwd file=orapwSID password=sys entries=3
    Thnx

  • Starting Oracle Enterprise Management Console

    I have oracle11gR2 database instance up and running on RHEL and i am able to connect to this instance using sqldeveloper. I need to have access to enterprise manager console too.
    I tried to start enterprise manager using following command
    [ora112@localhost ~]$ emctl start dbconsole
    Environment variable ORACLE_UNQNAME not defined. Please set ORACLE_UNQNAME to database unique name.
    then it tells me that ORACLE_UNQNAME is not defined.
    the i set ORACLE_UNQNAME=JIP (JIP=ORACLE_SID), even after doing this , i get the same message when i try to start enterprise manager console.
    could anybody help me resolve this issue
    thanks in advance for any help

    Unset ORACLE_SID (i.e. only set ORACLE_UNQNAME instead of ORACLE_SID), then try again. Pl also post the output of command "env | sort" just before issuing the emctl command
    HTH
    Srini

  • How to start the enterprise Manager  console in GUI based.

    I am totally confuse while using oracle10g Enterprise Manager Console based. I can't able to get the administrator privileges. Even though I had the administrator privileges and password I knew. But while administrating through Enterprise Manager in 10g little bit confuse for me.
    Help me .. I am here to hear a quick response as soon as possible

    DBA database privilege is different from EM Administrator privilege. Check to ensure you have the right one.

  • How to install oracle enterprise manager for 10g release 2

    I have installed oracale 10g release 2 on my pc , the first zip on http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10203vista.html
    then i have downloaded the management agent 10.2.0.4 from http://www.oracle.com/technology/software/products/oem/htdocs/agentsoft.html. but i don't know its installation procedure, can anyone help me out thanx in advance for all the participants.

    Hi,
    After that I suggested to you to post in this forum (more suitable I think for Installation issues) I read the links that you post. In the link of Mass Agent Deployment exists this note:
    Installation Instructions: Follow the instructions outlined in the instructions.txt file to successfully install the Management Agent
    could you find this file and follow the instructions?
    Regards,

  • Unable to start Oracle Enterprise Manager 10g Database Control

    We have 2 systems.. one with the database and one with the midtier (both Linux). Our site is currently down and after rebooting it, and trying to start the database console ($ORACLE_HOME/bin/emctl start dbconsole), the db console fails to load. I looked at the sysman log files and got the following
    From emoms.trc
    2011-10-29 01:00:02,536 [JobWorker 6217:Thread-13] ERROR em.jobs executeCommand.159 - UpdateARUTables: Oracle MetaLink credentials are incorrect or missing. Click Patching Setup to set required parameters.
    From emagent.trc
    2011-10-29 10:52:53 Thread-3030621104 ERROR util.files: nmeufile_getLength: Error in lfilen. Error = 2 (No such file or directory)
    From emagentfetchlet.log
    2011-10-29 10:52:52,827 [main] WARN track.OracleInventory collectInventory.439 - ECM: The inventory location file for the special Windows NT case does not exist or is unreadable.
    From emdctl.trc
    2011-11-01 23:21:43 Thread-3065480896 ERROR main: nmectl.c: nmectl_validateTZRegion, agentTZoffset =-240,and testTZoffset for US/Eastern:-300 do not match
    Any help would be greatly appreciated.
    Thanks,
    Cecilia

    yes, that link is pretty much right, Ive run those manual commands many times and MOST of them works fine see below. the recommended way of doing this putst the database into quiesce mode which pretty much kills your DB. As far as I can remember, I did the manual way a couple years ago and had awful trouble with one of the steps (cant remember which) and ended up bringing DB down anyway so I would suggest doing the work in a maintenance window just in case. double check all the steps anyway as it looks like something changed in your environment to cause your initial errors, whatever scenario caused that (permissions or whatever) may still exist.
    14:32:48 SQL> DROP USER sysman CASCADE;
    DROP PUBLIC SYNONYM setemviewusercontext;
    DROP ROLE mgmt_user;
    DROP PUBLIC SYNONYM mgmt_target_blackouts;
    DROP USER mgmt_view;
    DROP USER dbsnmp CASCADE;
    -- remove the os folder contents
    rm $ORACLE_HOME/host_sid/
    rm $ORACLE_HOME/oc4j/j2ee/OC4J_DBConsole_host_sid
    -- then easiest way to install the repository is to run
    emca -config dbcontrol db -repos create

Maybe you are looking for