Wednesday, October 20, 2010

How to start EM Console service explicitly?

Enterprise Manager console is the basic console to perform the health checkups, check ports and so on for Oracle Application Server. One of the easiest way to access the EM console (if you dont know the exact URL or port number) is by accessing the HTTP Server home page and clicking the Login to IAS Admin Console link. If the EM console is not started then you will see Page cannot be displayed error.

Now, you can check the status of the EM console using the command ./emctl status iasconsole (Execute this command in the location $ORACLE_HOME/bin) - This is for LINUX system
If it is not started, use this command to do so ./emctl start iasconsole and the output will be shown as below.

[oracle@hostname bin]$ ./emctl start iasconsole
TZ set to Asia/Calcutta
Oracle Enterprise Manager 10g Application Server Control Release 10.1.4.3.0
Copyright (c) 1996, 2006 Oracle Corporation.  All rights reserved.
http:// hostname:7018/emd/console/aboutApplication
Starting Oracle Enterprise Manager 10g Application Server Control ...... started successfully.
[oracle@hostname bin]$

4 comments:

  1. Can we stop this em console service? If so how we do it? Hope this wont impact on the OID services & components and LDAP funtionalities. Please suggest

    ReplyDelete
  2. Kiron,

    yes - you can stop em console service and it wont harm other components.

    -Mahendra.

    ReplyDelete
  3. Thanks for the response Mahendra...Can you please suggest how to stop this service?

    ReplyDelete
  4. Kiron,

    You can run this command ./emctl stop iasconsole

    ReplyDelete