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

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

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

  • 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

  • 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

  • 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

  • Can't start Oracle Enterprise Manager Application Server Control:

    I've install AS 10g 10.1.2 on x64 Win XP64 with the option of just Oracle J2EE and web services.
    Everything installed fine but when I try to connect to the Enterprise manger server control I get :
    IOException in sending Request :: Connection refused: connect
    Reading the trouble shooting guide I see that maybe the Apache variable max connections needs upping. Mine was set to 150 and I upped it to 200 (and restarted)
    still not joy.
    can anyone help?

    According to metalink certification there is an issue with Win XP 64 bit for OAS 10.1.2.0.2 which is that
    Only Installation Types Supported is J2EE OracleAS Developer Kit
    Maybe you could consider OAS version 10.1.3.x ?

  • Problems after starting the Enterprise Manager agent

    Hello,
    I have a problem, the agent of the enterprise manager does not start, do not know how I can do to reinstall the agent, in executing the command emctl start agent, inevitably show that the agent can not be started, I've done many things and not know what else can do, I have the version oracle 10gR2 10.2.0.5.0 on AIX 6.1, additionally do not know what operating system processes or daemons must be up to work.
    thanks for the help you can give me

    Look, this is the result of instructions:
    [saray]]/etc/rc.d]>emctl status dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.5.0
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    http://saray:1158/em/console/aboutApplication
    EM Daemon is not running.
    Logs are generated in directory /oracle/app/product/10.2.0.5/saray_UFPS/sysman/log
    [saray]]/etc/rc.d]>emctl status dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.5.0
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    http://saray:1158/em/console/aboutApplication
    EM Daemon is not running.
    Logs are generated in directory /oracle/app/product/10.2.0.5/saray_UFPS/sysman/log
    [saray]]/etc/rc.d]>emctl start dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.5.0
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    http://saray:1158/em/console/aboutApplication
    ps: invalid list with -o.
    ps: illegal option -- -
    Usage: ps [-ANPaedfklmMZ] [-n namelist] [-F Format] [-o specifier[=header],...]
    [-p proclist][-G|-g grouplist] [-t termlist] [-U|-u userlist] [-c classlist] [ -T pid] [ -L pidlist]
    [-@ [wparname] ]
    Usage: ps [aceglnsuvwxX] [t tty] [ProcessNumber]
    Starting Oracle Enterprise Manager 10g Database Control .... started.
    Logs are generated in directory /oracle/app/product/10.2.0.5/saray_UFPS/sysman/log

  • Oracle Enterprise Manager 11g is not running

    Hi everyone.
    I can't open my Enterprise Manager in my browser.
    when I am typing this command "emctl status dbconsole",it gives me this error :
    C:\Windows\system32>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://localhost:1158/em/console/aboutApplication
    Oracle Enterprise Manager 11g is not running.
    Logs are generated in directory E:\app\Ahmad\product\11.2.0\dbhome_1/Ahmad-PC_or
    cl/sysman/log
    Thanks.

    user9077620 wrote:
    I type emctl start dbconsole
    then it mention to set variable ORACLE_UNQNAME then i did this step
    after that i retypr emctl start dbconsole , it gives me this error:
    C:\Windows\system32>emctl start dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    https://localhost:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ...The OracleDBConsoleo
    cl service is starting..............
    The OracleDBConsoleorcl service could not be started.
    A service specific error occurred: 2.
    More help is available by typing NET HELPMSG 3547.OS/Networking mis-configuration
    Oracle is victim; not culprit

  • Oracle Enterprise Manager - HTTP error: 503 Service Unavailable

    Dear all,
    some time ago I've upgraded Oracle Database 10g up to version 10.2.0.4.0 on a Linux system.
    Now if I try to connect to HTTP Oracle Enterprise Manager interface (http://(My server name):1158/em/console/aboutApplication) I see this error into my browser: "503 Service Unavailable - Service is not initialized correctly. The Em Key is not configured properly. Run "emctl status emkey" for more details."
    If I perform "emctl status dbconsole" command from command line I have this output
    TZ set to Europe/Vatican
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    http://(My server name):1158/em/console/aboutApplication
    Oracle Enterprise Manager 10g is not running.
    So I've tried to restart Oracle Enterprise Manager trough command line using "emctl start dbconsole":
    TZ set to Europe/Vatican
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    http://(My server name):1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 10g Database Control .... started.
    Now dbconsole seems to be running as follows
    TZ set to Europe/Vatican
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    http://(My server name):1158/em/console/aboutApplication
    Oracle Enterprise Manager 10g is running.
    but my browser always shows the same above error.
    If I try to perform the suggested "emctl status emkey" command trough command line I have this output:
    TZ set to Europe/Vatican
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Please enter repository password: (Here I put sysman password)
    Exception caught
    ORA-06550: line 1, column 13:
    PLS-00201: identifier 'MGMT_TIME_SYNC.STARTUPSYNC' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    java.sql.SQLException: ORA-06550: line 1, column 13:
    PLS-00201: identifier 'MGMT_TIME_SYNC.STARTUPSYNC' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:111)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:330)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:287)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:744)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:217)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:968)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1189)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3369)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3475)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4399)
    at oracle.sysman.emSDK.conf.ConfigManager.startupEmKey(ConfigManager.java:855)
    at oracle.sysman.emSDK.conf.ConfigManager.statusEmKeyInRepos(ConfigManager.java:1113)
    at oracle.sysman.eml.sec.rep.EmKeyUtil.statusEmKey(EmKeyUtil.java:273)
    at oracle.sysman.eml.sec.rep.EmKeyUtil.main(EmKeyUtil.java:583)
    I've done no changes on Linux operating system side.
    Could somebody help me, please?
    Thanks for help and regards.
    DragonsLordKERNEL
    Edited by: DragonsLordKERNEL on 17-nov-2008 11.06

    Check if your emkey file is still under $ORACLE_HOME/sysman/config/emkey.ora
    Also check Oracle doc,
    http://download.oracle.com/docs/cd/B19306_01/em.102/b40002/security2.htm#BABJGGIG
    consider remove the recreate emkey if it doesn't work out.

  • Oracle Enterprise Manager not being accessed.

    Environemnt details:
    EBS->R 12.0.6
    Database->10.2.0.2
    OS->AIX 5.3
    All 64-bit
    When start dbconsole:
    $ emctl start dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.2.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://<host.domai>:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 10g Database Control .... started.
    Logs are generated in directory /prodapps/oratest/TEST/db/tech_st/10.2.0/app2.trakker.com.pk_TEST/sysman/log
    $
    and try to access OEM through the URL http://<host.domai>:1158/em following error message reported:
    500 Internal Server Error
    java.lang.NullPointerException     at oracle.cabo.servlet.xml.UIXPageBroker.getConfigurationName(Unknown Source)     at oracle.cabo.servlet.ui.BaseUIPageBroker.getConfiguration(Unknown Source)     at oracle.cabo.servlet.ui.BaseUIPageBroker.getService(Unknown Source)     at oracle.cabo.servlet.xml.UIXPageBroker.getService(Unknown Source)     at oracle.sysman.emSDK.svlt.EMServlet.initialize(EMServlet.java:417)     at oracle.sysman.eml.app.Console.init(Console.java:360)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpApplication.loadServlet(HttpApplication.java:2130)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpApplication.findServlet(HttpApplication.java:4560)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2598)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:643)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)     at java.lang.Thread.run(Thread.java:568)
    The utility has never been used since its configuration.
    Any help will be highly appreciated.
    Regards,
    M.U.N.A

    Duplicate post ? - OEM configuration with EBS R12.0.6
    If you have not been able to successfully configure dbcontrol, I am not sure how you expect to be able to access and use it successfully ?
    Srini

  • OEM,Oracle Enterprise Manager does'nt get

    [https://192.168.20.220:1158/em/console/database/instance/repDown?target=acogrid.acolade.com.au&type=oracle_database]
    Hi,
    I installed Oracle 11g R2 in Linux machine and also changed the port number from 1521 to 1522.
    Now i can take oracle DB through sqlplus.....Database is OPEN.....Listener is STARTED.......
    But when i start oracle enterprise Manager (OEM),getting following errors..
    Database Instance ------ ( RED DOWN ARROW )
    Listener-------status ( DOWN )-----( RED DOWN ARROW )
    Host acogrid.acolade.com.au
    Port 1521
    Name LISTENER
    Oracle Home /app/oracle/product/11.2.0/db_1
    Location /app/oracle/product/11.2.0/db_1/network/admin
    Details TNS-12541: TNS:no listener
    Agent connection to Instance-------Status ( FAILED )----( RED DOWN ARROW )
    Status Failed
    Details ORA-12541: TNS:no listener (DBD ERROR: OCIServerAttach)
    Note: In the above errors, Please note, " port is 1521 "....But in TNSNAMES,LISTENER and SERVICE NAMES,i have mensioned 1522.
    Then How 1521 comes in OEM???????
    Please Help me to UP OEM............
    Arun Kurungatt

    Arun -
    After you create the EM repository, you cannot change the host name, IP address or listener configuration. If you do, db control will no longer work. In fact, just a few days ago, I made a listener configuration change and received the same error that you did from EM.
    The solution - drop and then recreate the EM repository.
    To drop:
    emca -deconfig dbcontrol db -repos drop
    To create:
    emca -config dbcontrol db -repos create
    Good luck!
    Scot
    Edited by: Scot Krause on Nov 16, 2010 9:09 AM

  • Not able to start the Oracle Enterprise Manager

    Hi All,
    I have installed the Oracle AS Infra on Linux box. I am able to start all the component using opmnctl startall and its showing alive also.
    I am able to login to OID. But not able to login to Oracle Enterprise Manager.
    After starting the Oracle Enterprise Manager using ./emctl start iasconsole
    getting below error in ons.log file
    09/10/13 20:35:58 [4] ONS server initiated
    09/10/13 20:35:58 [2] BIND (Address already in use)
    09/10/13 20:35:58 [2] 127.0.0.1:1034 - listener BIND failed
    09/10/13 20:35:58 [4] Listener thread -1275728992: 127.0.0.1:1034 (0x442) terminating
    09/10/13 20:35:58 [1] Local listener terminated
    09/10/13 20:35:59 [4] Local connection 0,127.0.0.1,1034 missing form factor
    <unknown>
    09/10/13 20:35:59 [4] Local connection 0,127.0.0.1,1034 missing form factor
    <unknown>
    09/10/13 20:35:59 [4] Local connection 0,127.0.0.1,1034 missing form factor
    <unknown>
    09/10/13 20:35:59 [4] Local connection 0,127.0.0.1,1034 missing form factor
    <unknown>
    09/10/13 20:35:59 [4] Local connection 0,127.0.0.1,1034 missing form factor
    <unknown>
    09/10/13 20:35:59 [4] Local connection 0,127.0.0.1,1034 missing form factor
    <unknown>
    09/10/13 20:37:59 [4] Local connection 0,127.0.0.1,1034 missing form factor
    <unknown>
    09/10/13 20:37:59 [4] Local connection 0,127.0.0.1,1034 missing form factor
    <unknown>
    09/10/13 20:37:59 [4] Local connection 0,127.0.0.1,1034 missing form factor
    <unknown>
    09/10/13 20:37:59 [4] Local connection 0,127.0.0.1,1034 missing form factor
    <unknown>
    09/10/13 20:37:59 [4] Local connection 0,127.0.0.1,1034 missing form factor
    <unknown>
    Please help me on this.
    Quick response will be appreciated.

    I have executed the command and got below result
    COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
    java 314 oracleam 10u IPv4 236338 TCP localhost.localdomain:41652->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 12u IPv4 236344 TCP localhost.localdomain:41654->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 14u IPv4 236348 TCP localhost.localdomain:41656->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 15u IPv4 236350 TCP localhost.localdomain:41657->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 16u IPv4 236402 TCP localhost.localdomain:41659->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 17u IPv4 236410 TCP localhost.localdomain:41661->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 18u IPv4 236428 TCP localhost.localdomain:41667->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 20u IPv4 236443 TCP localhost.localdomain:41674->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 24u IPv4 236502 TCP localhost.localdomain:41679->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 32u IPv4 236506 TCP localhost.localdomain:41681->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 33u IPv4 236513 TCP localhost.localdomain:41683->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 34u IPv4 236733 TCP localhost.localdomain:41696->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 35u IPv4 237150 TCP localhost.localdomain:41718->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 36u IPv4 237244 TCP localhost.localdomain:41721->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 37u IPv4 237248 TCP localhost.localdomain:41723->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 38u IPv4 237279 TCP localhost.localdomain:41729->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 39u IPv4 237281 TCP localhost.localdomain:41730->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 40u IPv4 237293 TCP localhost.localdomain:41733->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 41u IPv4 237295 TCP localhost.localdomain:41734->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 42u IPv4 239188 TCP localhost.localdomain:41737->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 43u IPv4 239196 TCP localhost.localdomain:41739->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 44u IPv4 239198 TCP localhost.localdomain:41740->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 45u IPv4 239200 TCP localhost.localdomain:41741->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 46u IPv4 239208 TCP localhost.localdomain:41743->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 47u IPv4 239250 TCP localhost.localdomain:41749->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 48u IPv4 239253 TCP localhost.localdomain:41750->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 49u IPv4 239257 TCP localhost.localdomain:41752->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 50u IPv4 239259 TCP localhost.localdomain:41753->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 51u IPv4 239261 TCP localhost.localdomain:41754->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 52u IPv4 239269 TCP localhost.localdomain:41756->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 53u IPv4 239276 TCP localhost.localdomain:41757->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 54u IPv4 239319 TCP localhost.localdomain:41758->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 55u IPv4 239323 TCP localhost.localdomain:41760->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 56u IPv4 239355 TCP localhost.localdomain:41765->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 57u IPv4 239368 TCP localhost.localdomain:41766->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 58u IPv4 239380 TCP localhost.localdomain:41769->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 59u IPv4 239382 TCP localhost.localdomain:41770->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 60u IPv4 239388 TCP localhost.localdomain:41772->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 61u IPv4 239392 TCP localhost.localdomain:41774->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 62u IPv4 239394 TCP localhost.localdomain:41775->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 63u IPv4 239396 TCP localhost.localdomain:41776->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 64u IPv4 239404 TCP localhost.localdomain:41778->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 65u IPv4 239424 TCP localhost.localdomain:41785->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 66u IPv4 239427 TCP localhost.localdomain:41786->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 67u IPv4 239432 TCP localhost.localdomain:41788->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 68u IPv4 239434 TCP localhost.localdomain:41789->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 69u IPv4 239436 TCP localhost.localdomain:41790->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 70u IPv4 239444 TCP localhost.localdomain:41792->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 71u IPv4 239446 TCP localhost.localdomain:41793->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 72u IPv4 239463 TCP localhost.localdomain:41794->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 73u IPv4 239467 TCP localhost.localdomain:41796->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 74u IPv4 239489 TCP localhost.localdomain:41803->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 75u IPv4 239491 TCP localhost.localdomain:41804->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 76u IPv4 239503 TCP localhost.localdomain:41807->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 77u IPv4 239505 TCP localhost.localdomain:41808->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 78u IPv4 239515 TCP localhost.localdomain:41811->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 79u IPv4 239519 TCP localhost.localdomain:41813->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 80u IPv4 239523 TCP localhost.localdomain:41814->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 81u IPv4 239525 TCP localhost.localdomain:41815->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 82u IPv4 239533 TCP localhost.localdomain:41817->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 83u IPv4 239552 TCP localhost.localdomain:41823->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 110u IPv4 126383 TCP localhost.localdomain:46540->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 117u IPv4 111061 TCP localhost.localdomain:42736->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 118u IPv4 105577 TCP localhost.localdomain:41300->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 119u IPv4 96758 TCP localhost.localdomain:39158->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 120u IPv4 94007 TCP localhost.localdomain:38446->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 122u IPv4 102826 TCP localhost.localdomain:40607->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 123u IPv4 124612 TCP localhost.localdomain:46090->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 124u IPv4 119613 TCP localhost.localdomain:44885->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 125u IPv4 122728 TCP localhost.localdomain:45603->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 126u IPv4 113248 TCP localhost.localdomain:43226->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 128u IPv4 128272 TCP localhost.localdomain:47030->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 129u IPv4 133174 TCP localhost.localdomain:48214->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 130u IPv4 143669 TCP localhost.localdomain:50853->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 131u IPv4 156014 TCP localhost.localdomain:53980->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 132u IPv4 140651 TCP localhost.localdomain:50147->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 133u IPv4 141438 TCP localhost.localdomain:50367->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 134u IPv4 149238 TCP localhost.localdomain:52303->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 135u IPv4 152323 TCP localhost.localdomain:53020->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 136u IPv4 154138 TCP localhost.localdomain:53494->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 137u IPv4 164752 TCP localhost.localdomain:56140->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 138u IPv4 167569 TCP localhost.localdomain:56621->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 139u IPv4 178977 TCP localhost.localdomain:59481->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 140u IPv4 176240 TCP localhost.localdomain:58775->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 143u IPv4 182972 TCP localhost.localdomain:60459->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 144u IPv4 187640 TCP localhost.localdomain:61664->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 145u IPv4 120680 TCP localhost.localdomain:45145->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 146u IPv4 194571 TCP localhost.localdomain:63380->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 147u IPv4 193675 TCP localhost.localdomain:63144->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 148u IPv4 196537 TCP localhost.localdomain:63871->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 149u IPv4 205259 TCP localhost.localdomain:33836->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 150u IPv4 207212 TCP localhost.localdomain:34329->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 151u IPv4 214074 TCP localhost.localdomain:36038->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 152u IPv4 215999 TCP localhost.localdomain:36522->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 153u IPv4 148366 TCP localhost.localdomain:52077->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 154u IPv4 227498 TCP localhost.localdomain:39455->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 155u IPv4 218786 TCP localhost.localdomain:37237->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 156u IPv4 234456 TCP localhost.localdomain:41160->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 157u IPv4 220583 TCP localhost.localdomain:37742->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 158u IPv4 157045 TCP localhost.localdomain:54244->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 159u IPv4 229424 TCP localhost.localdomain:39943->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 168u IPv4 181830 TCP localhost.localdomain:60230->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 170u IPv4 190566 TCP localhost.localdomain:62428->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 174u IPv4 208171 TCP localhost.localdomain:34589->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 176u IPv4 215112 TCP localhost.localdomain:36297->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 178u IPv4 210889 TCP localhost.localdomain:35312->localhost.localdomain:1034 (ESTABLISHED)
    java 314 oracleam 182u IPv4 221682 TCP localhost.localdomain:38020->localhost.localdomain:1034 (ESTABLISHED)
    opmn 31989 root 8u IPv4 88042 TCP localhost.localdomain:1034 (LISTEN)
    opmn 31989 root 12u IPv4 236339 TCP localhost.localdomain:1034->localhost.localdomain:41652 (ESTABLISHED)
    opmn 31989 root 13u IPv4 88556 TCP localhost.localdomain:1034->localhost.localdomain:37473 (ESTABLISHED)
    opmn 31989 root 14u IPv4 88264 TCP localhost.localdomain:1034->localhost.localdomain:37436 (ESTABLISHED)
    opmn 31989 root 15u IPv4 88473 TCP localhost.localdomain:1034->localhost.localdomain:37458 (ESTABLISHED)
    opmn 31989 root 16u IPv4 88518 TCP localhost.localdomain:1034->localhost.localdomain:37469 (ESTABLISHED)
    opmn 31989 root 17u IPv4 236345 TCP localhost.localdomain:1034->localhost.localdomain:41654 (ESTABLISHED)
    opmn 31989 root 18u IPv4 236349 TCP localhost.localdomain:1034->localhost.localdomain:41656 (ESTABLISHED)
    opmn 31989 root 19u IPv4 236351 TCP localhost.localdomain:1034->localhost.localdomain:41657 (ESTABLISHED)
    opmn 31989 root 20u IPv4 236403 TCP localhost.localdomain:1034->localhost.localdomain:41659 (ESTABLISHED)
    opmn 31989 root 21u IPv4 236411 TCP localhost.localdomain:1034->localhost.localdomain:41661 (ESTABLISHED)
    opmn 31989 root 22u IPv4 236429 TCP localhost.localdomain:1034->localhost.localdomain:41667 (ESTABLISHED)
    opmn 31989 root 23u IPv4 236444 TCP localhost.localdomain:1034->localhost.localdomain:41674 (ESTABLISHED)
    opmn 31989 root 24u IPv4 236503 TCP localhost.localdomain:1034->localhost.localdomain:41679 (ESTABLISHED)
    opmn 31989 root 25u IPv4 236507 TCP localhost.localdomain:1034->localhost.localdomain:41681 (ESTABLISHED)
    opmn 31989 root 26u IPv4 236514 TCP localhost.localdomain:1034->localhost.localdomain:41683 (ESTABLISHED)
    opmn 31989 root 27u IPv4 236734 TCP localhost.localdomain:1034->localhost.localdomain:41696 (ESTABLISHED)
    opmn 31989 root 28u IPv4 237151 TCP localhost.localdomain:1034->localhost.localdomain:41718 (ESTABLISHED)
    opmn 31989 root 29u IPv4 237245 TCP localhost.localdomain:1034->localhost.localdomain:41721 (ESTABLISHED)
    opmn 31989 root 30u IPv4 237249 TCP localhost.localdomain:1034->localhost.localdomain:41723 (ESTABLISHED)
    opmn 31989 root 31u IPv4 237280 TCP localhost.localdomain:1034->localhost.localdomain:41729 (ESTABLISHED)
    opmn 31989 root 32u IPv4 237282 TCP localhost.localdomain:1034->localhost.localdomain:41730 (ESTABLISHED)
    opmn 31989 root 33u IPv4 237294 TCP localhost.localdomain:1034->localhost.localdomain:41733 (ESTABLISHED)
    opmn 31989 root 34u IPv4 237296 TCP localhost.localdomain:1034->localhost.localdomain:41734 (ESTABLISHED)
    opmn 31989 root 35u IPv4 239189 TCP localhost.localdomain:1034->localhost.localdomain:41737 (ESTABLISHED)
    opmn 31989 root 36u IPv4 239197 TCP localhost.localdomain:1034->localhost.localdomain:41739 (ESTABLISHED)
    opmn 31989 root 37u IPv4 239199 TCP localhost.localdomain:1034->localhost.localdomain:41740 (ESTABLISHED)
    opmn 31989 root 38u IPv4 239201 TCP localhost.localdomain:1034->localhost.localdomain:41741 (ESTABLISHED)
    opmn 31989 root 39u IPv4 239209 TCP localhost.localdomain:1034->localhost.localdomain:41743 (ESTABLISHED)
    opmn 31989 root 40u IPv4 239251 TCP localhost.localdomain:1034->localhost.localdomain:41749 (ESTABLISHED)
    opmn 31989 root 41u IPv4 239254 TCP localhost.localdomain:1034->localhost.localdomain:41750 (ESTABLISHED)
    opmn 31989 root 42u IPv4 239258 TCP localhost.localdomain:1034->localhost.localdomain:41752 (ESTABLISHED)
    opmn 31989 root 43u IPv4 239260 TCP localhost.localdomain:1034->localhost.localdomain:41753 (ESTABLISHED)
    opmn 31989 root 44u IPv4 239262 TCP localhost.localdomain:1034->localhost.localdomain:41754 (ESTABLISHED)
    opmn 31989 root 45u IPv4 239270 TCP localhost.localdomain:1034->localhost.localdomain:41756 (ESTABLISHED)
    opmn 31989 root 46u IPv4 239277 TCP localhost.localdomain:1034->localhost.localdomain:41757 (ESTABLISHED)
    opmn 31989 root 47u IPv4 239320 TCP localhost.localdomain:1034->localhost.localdomain:41758 (ESTABLISHED)
    opmn 31989 root 48u IPv4 239324 TCP localhost.localdomain:1034->localhost.localdomain:41760 (ESTABLISHED)
    opmn 31989 root 49u IPv4 239356 TCP localhost.localdomain:1034->localhost.localdomain:41765 (ESTABLISHED)
    opmn 31989 root 50u IPv4 239369 TCP localhost.localdomain:1034->localhost.localdomain:41766 (ESTABLISHED)
    opmn 31989 root 51u IPv4 239381 TCP localhost.localdomain:1034->localhost.localdomain:41769 (ESTABLISHED)
    opmn 31989 root 52u IPv4 239383 TCP localhost.localdomain:1034->localhost.localdomain:41770 (ESTABLISHED)
    opmn 31989 root 53u IPv4 239389 TCP localhost.localdomain:1034->localhost.localdomain:41772 (ESTABLISHED)
    opmn 31989 root 54u IPv4 239393 TCP localhost.localdomain:1034->localhost.localdomain:41774 (ESTABLISHED)
    opmn 31989 root 55u IPv4 239395 TCP localhost.localdomain:1034->localhost.localdomain:41775 (ESTABLISHED)
    opmn 31989 root 56u IPv4 239397 TCP localhost.localdomain:1034->localhost.localdomain:41776 (ESTABLISHED)
    opmn 31989 root 57u IPv4 239405 TCP localhost.localdomain:1034->localhost.localdomain:41778 (ESTABLISHED)
    opmn 31989 root 58u IPv4 239425 TCP localhost.localdomain:1034->localhost.localdomain:41785 (ESTABLISHED)
    opmn 31989 root 59u IPv4 239428 TCP localhost.localdomain:1034->localhost.localdomain:41786 (ESTABLISHED)
    opmn 31989 root 60u IPv4 239433 TCP localhost.localdomain:1034->localhost.localdomain:41788 (ESTABLISHED)
    opmn 31989 root 61u IPv4 239435 TCP localhost.localdomain:1034->localhost.localdomain:41789 (ESTABLISHED)
    opmn 31989 root 62u IPv4 239437 TCP localhost.localdomain:1034->localhost.localdomain:41790 (ESTABLISHED)
    opmn 31989 root 63u IPv4 239445 TCP localhost.localdomain:1034->localhost.localdomain:41792 (ESTABLISHED)
    opmn 31989 root 64u IPv4 239447 TCP localhost.localdomain:1034->localhost.localdomain:41793 (ESTABLISHED)
    opmn 31989 root 65u IPv4 239464 TCP localhost.localdomain:1034->localhost.localdomain:41794 (ESTABLISHED)
    opmn 31989 root 66u IPv4 239468 TCP localhost.localdomain:1034->localhost.localdomain:41796 (ESTABLISHED)
    opmn 31989 root 67u IPv4 239490 TCP localhost.localdomain:1034->localhost.localdomain:41803 (ESTABLISHED)
    opmn 31989 root 68u IPv4 239492 TCP localhost.localdomain:1034->localhost.localdomain:41804 (ESTABLISHED)
    opmn 31989 root 69u IPv4 239504 TCP localhost.localdomain:1034->localhost.localdomain:41807 (ESTABLISHED)
    opmn 31989 root 70u IPv4 239506 TCP localhost.localdomain:1034->localhost.localdomain:41808 (ESTABLISHED)
    opmn 31989 root 71u IPv4 239516 TCP localhost.localdomain:1034->localhost.localdomain:41811 (ESTABLISHED)
    opmn 31989 root 72u IPv4 239520 TCP localhost.localdomain:1034->localhost.localdomain:41813 (ESTABLISHED)
    opmn 31989 root 73u IPv4 239524 TCP localhost.localdomain:1034->localhost.localdomain:41814 (ESTABLISHED)
    opmn 31989 root 74u IPv4 239526 TCP localhost.localdomain:1034->localhost.localdomain:41815 (ESTABLISHED)
    opmn 31989 root 75u IPv4 239534 TCP localhost.localdomain:1034->localhost.localdomain:41817 (ESTABLISHED)
    opmn 31989 root 76u IPv4 239553 TCP localhost.localdomain:1034->localhost.localdomain:41823 (ESTABLISHED)
    opmn 31989 root 103u IPv4 126384 TCP localhost.localdomain:1034->localhost.localdomain:46540 (ESTABLISHED)
    opmn 31989 root 110u IPv4 111062 TCP localhost.localdomain:1034->localhost.localdomain:42736 (ESTABLISHED)
    opmn 31989 root 111u IPv4 105578 TCP localhost.localdomain:1034->localhost.localdomain:41300 (ESTABLISHED)
    opmn 31989 root 112u IPv4 96759 TCP localhost.localdomain:1034->localhost.localdomain:39158 (ESTABLISHED)
    opmn 31989 root 113u IPv4 94008 TCP localhost.localdomain:1034->localhost.localdomain:38446 (ESTABLISHED)
    opmn 31989 root 115u IPv4 102827 TCP localhost.localdomain:1034->localhost.localdomain:40607 (ESTABLISHED)
    opmn 31989 root 116u IPv4 124613 TCP localhost.localdomain:1034->localhost.localdomain:46090 (ESTABLISHED)
    opmn 31989 root 117u IPv4 119614 TCP localhost.localdomain:1034->localhost.localdomain:44885 (ESTABLISHED)
    opmn 31989 root 118u IPv4 122729 TCP localhost.localdomain:1034->localhost.localdomain:45603 (ESTABLISHED)
    opmn 31989 root 119u IPv4 113249 TCP localhost.localdomain:1034->localhost.localdomain:43226 (ESTABLISHED)
    opmn 31989 root 121u IPv4 128273 TCP localhost.localdomain:1034->localhost.localdomain:47030 (ESTABLISHED)
    opmn 31989 root 122u IPv4 133175 TCP localhost.localdomain:1034->localhost.localdomain:48214 (ESTABLISHED)
    opmn 31989 root 123u IPv4 143670 TCP localhost.localdomain:1034->localhost.localdomain:50853 (ESTABLISHED)
    opmn 31989 root 124u IPv4 156015 TCP localhost.localdomain:1034->localhost.localdomain:53980 (ESTABLISHED)
    opmn 31989 root 125u IPv4 140652 TCP localhost.localdomain:1034->localhost.localdomain:50147 (ESTABLISHED)
    opmn 31989 root 126u IPv4 141439 TCP localhost.localdomain:1034->localhost.localdomain:50367 (ESTABLISHED)
    opmn 31989 root 127u IPv4 149239 TCP localhost.localdomain:1034->localhost.localdomain:52303 (ESTABLISHED)
    opmn 31989 root 128u IPv4 152324 TCP localhost.localdomain:1034->localhost.localdomain:53020 (ESTABLISHED)
    opmn 31989 root 129u IPv4 154139 TCP localhost.localdomain:1034->localhost.localdomain:53494 (ESTABLISHED)
    opmn 31989 root 130u IPv4 164753 TCP localhost.localdomain:1034->localhost.localdomain:56140 (ESTABLISHED)
    opmn 31989 root 131u IPv4 167570 TCP localhost.localdomain:1034->localhost.localdomain:56621 (ESTABLISHED)
    opmn 31989 root 132u IPv4 178978 TCP localhost.localdomain:1034->localhost.localdomain:59481 (ESTABLISHED)
    opmn 31989 root 133u IPv4 176241 TCP localhost.localdomain:1034->localhost.localdomain:58775 (ESTABLISHED)
    opmn 31989 root 136u IPv4 182973 TCP localhost.localdomain:1034->localhost.localdomain:60459 (ESTABLISHED)
    opmn 31989 root 137u IPv4 194572 TCP localhost.localdomain:1034->localhost.localdomain:63380 (ESTABLISHED)
    opmn 31989 root 138u IPv4 120681 TCP localhost.localdomain:1034->localhost.localdomain:45145 (ESTABLISHED)
    opmn 31989 root 139u IPv4 193676 TCP localhost.localdomain:1034->localhost.localdomain:63144 (ESTABLISHED)
    opmn 31989 root 140u IPv4 187641 TCP localhost.localdomain:1034->localhost.localdomain:61664 (ESTABLISHED)
    opmn 31989 root 141u IPv4 196538 TCP localhost.localdomain:1034->localhost.localdomain:63871 (ESTABLISHED)
    opmn 31989 root 142u IPv4 205260 TCP localhost.localdomain:1034->localhost.localdomain:33836 (ESTABLISHED)
    opmn 31989 root 143u IPv4 207213 TCP localhost.localdomain:1034->localhost.localdomain:34329 (ESTABLISHED)
    opmn 31989 root 144u IPv4 214075 TCP localhost.localdomain:1034->localhost.localdomain:36038 (ESTABLISHED)
    opmn 31989 root 145u IPv4 216000 TCP localhost.localdomain:1034->localhost.localdomain:36522 (ESTABLISHED)
    opmn 31989 root 146u IPv4 148367 TCP localhost.localdomain:1034->localhost.localdomain:52077 (ESTABLISHED)
    opmn 31989 root 147u IPv4 227499 TCP localhost.localdomain:1034->localhost.localdomain:39455 (ESTABLISHED)
    opmn 31989 root 148u IPv4 218787 TCP localhost.localdomain:1034->localhost.localdomain:37237 (ESTABLISHED)
    opmn 31989 root 149u IPv4 234457 TCP localhost.localdomain:1034->localhost.localdomain:41160 (ESTABLISHED)
    opmn 31989 root 150u IPv4 220584 TCP localhost.localdomain:1034->localhost.localdomain:37742 (ESTABLISHED)
    opmn 31989 root 151u IPv4 157046 TCP localhost.localdomain:1034->localhost.localdomain:54244 (ESTABLISHED)
    opmn 31989 root 152u IPv4 229425 TCP localhost.localdomain:1034->localhost.localdomain:39943 (ESTABLISHED)
    opmn 31989 root 161u IPv4 181831 TCP localhost.localdomain:1034->localhost.localdomain:60230 (ESTABLISHED)
    opmn 31989 root 163u IPv4 190567 TCP localhost.localdomain:1034->localhost.localdomain:62428 (ESTABLISHED)
    opmn 31989 root 167u IPv4 208172 TCP localhost.localdomain:1034->localhost.localdomain:34589 (ESTABLISHED)
    opmn 31989 root 169u IPv4 215113 TCP localhost.localdomain:1034->localhost.localdomain:36297 (ESTABLISHED)
    opmn 31989 root 171u IPv4 210890 TCP localhost.localdomain:1034->localhost.localdomain:35312 (ESTABLISHED)
    opmn 31989 root 175u IPv4 221683 TCP localhost.localdomain:1034->localhost.localdomain:38020 (ESTABLISHED)
    java 32063 root 30u IPv4 88263 TCP localhost.localdomain:37436->localhost.localdomain:1034 (ESTABLISHED)
    java 32158 root 10u IPv6 88472 TCP localhost.localdomain:37458->localhost.localdomain:1034 (ESTABLISHED)
    java 32194 root 6u IPv4 88517 TCP localhost.localdomain:37469->localhost.localdomain:1034 (ESTABLISHED)
    httpd 32226 root 21u IPv4 88555 TCP localhost.localdomain:37473->localhost.localdomain:1034 (ESTABLISHED)
    Not sure where its used. Please have a look and do let me know how to proceed.
    Thanks in advance
    Edited by: user10632964 on 15 Oct, 2009 6:43 AM

Maybe you are looking for