Skip to main content

How Do I Start Enterprise Manager?

by
Last updated on 10 min read

Contents

  1. Oracle Enterprise Manager Console runs when the dbconsole process or Windows service is started and the HTTPS port 5500 is accessible. What's Happening
  2. Run SQL*Plus as SYSDBA and query dba_registry to confirm Enterprise Manager installation; if missing, install it first. How do I get this running?
  3. If EM still won’t load, verify Oracle services are running, rebuild the EM repository with emca -config dbcontrol db -repos recreate, and confirm port 5500 is open. Nope, still not working?
  4. Set OracleDBConsoleSID to Automatic in Services, perform quarterly EM repository maintenance, apply Critical Patch Updates each quarter, and back up emoms.properties and the EM repository before major changes. How can I keep EM running smoothly?
  5. Enterprise Manager Console is a web dashboard that requires the dbconsole process to be running on the database server. Enterprise Manager Console is a web dashboard that requires the dbconsole process to be running on the database server.
  6. Run SELECT COMP_NAME, STATUS FROM dba_registry WHERE COMP_NAME LIKE '%Enterprise Manager%'; in SQL*Plus as SYSDBA to confirm EM is installed. How do I confirm Enterprise Manager is installed?
  7. If EM still won’t start, verify Windows services OracleServiceSID, OracleJobSchedulerSID, and OracleORACLE_HOME_NAMETNSListener are running and set to Automatic. What if Enterprise Manager still won't start?
  8. Set OracleDBConsoleSID to Automatic in Services, perform quarterly EM repository maintenance, apply Critical Patch Updates every quarter, and back up emoms.properties and the repository before major changes. How can I keep Enterprise Manager running reliably?
  9. The dbconsole process needs to be running on the server to access the Oracle Enterprise Manager Console from a client browser. How do I open Enterprise Manager?
  10. Start Oracle Process Manager and Notification Server (OPMN), Oracle HTTP Server (OHS), Node Manager, Admin Server, and Managed Server in sequence. How do I start an OMS?
  11. Enterprise Manager is a set of software features designed to help manage hardware and software on a particular platform, most commonly associated with Oracle’s offering. What does Enterprise Manager do?
  12. Open Services via Start → Control Panel → Administrative Tools → Services, then verify Oracle services have Manual or Automatic startup type. How do I open EM console?
  13. Check dba_registry for the “Oracle Enterprise Manager” component; if present, EM is installed. How do I know if I have Oracle Enterprise Manager installed?
  14. The Oracle Enterprise Manager Console is a graphical user interface providing menus, toolbars, and access to Oracle tools and third-party utilities. What is Enterprise Manager console?
  15. Log in to the EM server and use the -details flag with the status command to check OMS status and port/URL information. How do I know if OMS is running?
  16. Oracle Home is the directory where the OMS, Management Agent, and Oracle Management Plug-ins are installed. What is OMS home in Oracle?
  17. OMS logs are located in the “sysman/log” directory within the EM Instance Home (for example: /u01/oracle/gc_inst/em/EMGC_OMS1/sysman/log). How do I find an OMS log?
  18. Enterprise can be a solid place to build experience in sales, customer service, recruiting, and management, though expect long hours and lower starting pay. Is enterprise a good career?
  19. Average annual salary for an enterprise manager is $104,474 (as of latest data). How much does an enterprise manager make?
  20. Install Enterprise Manager by launching the Cloud Control Installation Wizard, entering My Oracle Support details, and following the installer steps. How do I install Enterprise Manager?
  21. The Oracle Enterprise Manager Console is a graphical user interface providing menus, toolbars, and access to Oracle tools and third-party utilities. What is EM console?
  22. The default port for Oracle Enterprise Manager Management Agent is 3872. What port is Oracle Enterprise Manager on?
  23. Verify the HTTPS port is set for the XML DB, then access EM Database Express via a browser URL and log in with database credentials. How do you check em Express is running?

Yes — run emctl start dbconsole from $ORACLE_HOME/bin (Linux/Unix) or start the OracleDBConsoleSID service (Windows), then open https://localhost:5500/em in your browser.

Quick Fix Summary

Head to $ORACLE_HOME/bin, then run ./emctl start dbconsole. On Windows, open Services (services.msc), find OracleDBConsoleSID, and hit Start. Then point your browser to https://localhost:5500/em.

Oracle Enterprise Manager Console runs when the dbconsole process or Windows service is started and the HTTPS port 5500 is accessible.

What's Happening

Oracle Enterprise Manager (EM) Console is a web dashboard for managing Oracle databases and related services. dbconsole must run on the database server to enable this interface. On Windows, it appears as a service called OracleDBConsoleSID (your database instance name replaces SID). On Linux/Unix, it’s managed by the emctl utility.

Run SQL*Plus as SYSDBA and query dba_registry to confirm Enterprise Manager installation; if missing, install it first.

How do I get this running?

  1. Make sure EM is actually installed
    Fire up SQL*Plus as SYSDBA and run:

    SELECT COMP_NAME, STATUS FROM dba_registry WHERE COMP_NAME LIKE '%Enterprise Manager%';

    If EM’s installed, you’ll see a row showing “Oracle Enterprise Manager” with a status of “VALID.”

  2. Check if dbconsole is already running
    On Linux/Unix:

    cd $ORACLE_HOME/bin
    ./emctl status dbconsole

    On Windows:

    Open Command Prompt as Administrator and run:

    emctl status dbconsole

    If it’s not running, proceed to the next step.

  3. Start dbconsole
    On Linux/Unix:

    cd $ORACLE_HOME/bin
    ./emctl start dbconsole

    On Windows:

    • Hit Win + R, type services.msc, and press Enter.
    • Find OracleDBConsoleSID (for example, OracleDBConsoleORCL).
    • Right-click → Start. If the startup type is Disabled, change it to Automatic.
  4. Open the EM Console in your browser
    Drop this into your address bar:

    https://localhost:5500/em

    Replace localhost with your server’s IP or hostname if you’re connecting remotely. Log in with your database credentials.

If EM still won’t load, verify Oracle services are running, rebuild the EM repository with emca -config dbcontrol db -repos recreate, and confirm port 5500 is open.

Nope, still not working?

  • Check Windows services first
    Open services.msc and confirm these Oracle services are running and set to Automatic:

    • OracleServiceSID (for example, OracleServiceORCL)
    • OracleJobSchedulerSID
    • OracleORACLE_HOME_NAMETNSListener

    If any service is stopped, restart all Oracle services.

  • Reconfigure EM on Linux/Unix
    If emctl start dbconsole throws an error, rebuild EM:

    cd $ORACLE_HOME/bin
    ./emca -config dbcontrol db -repos recreate

    This recreates the EM repository and restarts dbconsole. Oracle Support notes this step is often required after major OS updates or database patches Oracle Support.

  • Port 5500 might be blocked
    EM defaults to port 5500. Check if it’s listening:

    netstat -an | grep 5500

    On Windows, use netstat -ano | findstr 5500. If the port is blocked, adjust firewall rules or disable the firewall temporarily for testing.

Set OracleDBConsoleSID to Automatic in Services, perform quarterly EM repository maintenance, apply Critical Patch Updates each quarter, and back up emoms.properties and the EM repository before major changes.

How can I keep EM running smoothly?

  • Set EM to auto-start on Windows
    In Services, change OracleDBConsoleSID to start automatically so EM comes back up after every reboot.

  • Watch the EM repository size
    The EM repository grows over time. Oracle recommends running quarterly maintenance to clean up old data and rebuild indexes.

  • Keep EM patched
    Critical Patch Updates (CPUs) fix security holes and stability bugs. Grab them every quarter from My Oracle Support.

  • Back up EM before making big changes
    Before OS updates or major changes, back up $ORACLE_HOME/sysman/config/emoms.properties and the EM repository. Use this command:

    expdp system/<password> DUMPFILE=em_backup_%U.dmp DIRECTORY=DATA_PUMP_DIR

    This lets you roll back quickly if EM stops working.

Enterprise Manager Console is a web dashboard that requires the dbconsole process to be running on the database server.

Enterprise Manager Console is a web dashboard that requires the dbconsole process to be running on the database server.

Oracle Enterprise Manager (EM) Console is a web-based interface for managing Oracle databases and related services. The dbconsole process must be active on the database server. On Windows, it appears as a service named OracleDBConsoleSID (where SID is your database instance name). On Linux/Unix, it's managed by the emctl utility instead. (Honestly, this is the most reliable way to get EM up and running.)

Run SELECT COMP_NAME, STATUS FROM dba_registry WHERE COMP_NAME LIKE '%Enterprise Manager%'; in SQL*Plus as SYSDBA to confirm EM is installed.

How do I confirm Enterprise Manager is installed?

  1. Confirm EM is installed
    Open SQL*Plus as SYSDBA and run:

    SELECT COMP_NAME, STATUS FROM dba_registry WHERE COMP_NAME LIKE '%Enterprise Manager%';

    If EM is installed, you'll see a row showing "Oracle Enterprise Manager" with a status like "VALID".

  2. Check if dbconsole is already running
    On Linux/Unix:

    cd $ORACLE_HOME/bin
    ./emctl status dbconsole

    On Windows:

    Open Command Prompt as Administrator and run:

    emctl status dbconsole

    If it's not running, time to start it up.

  3. Start dbconsole
    On Linux/Unix:

    cd $ORACLE_HOME/bin
    ./emctl start dbconsole

    On Windows:

    • Press Win + R, type services.msc, and hit Enter.
    • Find OracleDBConsoleSID (for example, OracleDBConsoleORCL).
    • Right-click → Start. If the service is set to Disabled, change the startup type to Automatic.
  4. Open the EM Console in your browser
    Type this into your browser's address bar:

    https://localhost:5500/em

    Swap localhost for your server’s IP or hostname if you're connecting remotely. Log in with your database credentials.

If EM still won’t start, verify Windows services OracleServiceSID, OracleJobSchedulerSID, and OracleORACLE_HOME_NAMETNSListener are running and set to Automatic.

What if Enterprise Manager still won't start?

  • Check Windows services first
    Open services.msc and confirm these Oracle services are running and set to Automatic:

    • OracleServiceSID (for example, OracleServiceORCL)
    • OracleJobSchedulerSID
    • OracleORACLE_HOME_NAMETNSListener

    If any service is stopped, restart all Oracle services.

  • Reconfigure EM on Linux/Unix
    If emctl start dbconsole throws an error, rebuild EM:

    cd $ORACLE_HOME/bin
    ./emca -config dbcontrol db -repos recreate

    This recreates the EM repository and restarts dbconsole. Oracle Support says this often fixes issues after major OS updates or database patches.

  • Ensure port 5500 is not blocked
    EM uses port 5500 by default. Check if it's listening:

    netstat -an | grep 5500

    On Windows, use:

    netstat -ano | findstr 5500

    If the port is blocked, tweak your firewall rules or temporarily disable the firewall for testing.

Set OracleDBConsoleSID to Automatic in Services, perform quarterly EM repository maintenance, apply Critical Patch Updates every quarter, and back up emoms.properties and the repository before major changes.

How can I keep Enterprise Manager running reliably?

  • Enable auto-start on Windows
    In Services, change the startup type of OracleDBConsoleSID to Automatic so EM restarts after each reboot.

  • Maintain the EM repository size
    The EM repository grows over time. Oracle recommends performing quarterly maintenance to purge old data and rebuild indexes.

  • Apply EM patches quarterly
    Critical Patch Updates (CPUs) address security vulnerabilities and stability issues. Download and apply them every quarter via My Oracle Support.

  • Back up EM before major changes
    Before OS updates or significant changes, back up $ORACLE_HOME/sysman/config/emoms.properties and the EM repository. Use:

    expdp system/password DUMPFILE=em_backup_%U.dmp DIRECTORY=DATA_PUMP_DIR

    This gives you a quick rollback option if EM stops working.

Oracle Enterprise Manager Documentation

Oracle Support

Oracle Database Documentation

The dbconsole process needs to be running on the server to access the Oracle Enterprise Manager Console from a client browser.

How do I open Enterprise Manager?

To access the Oracle Enterprise Manager Console from a client browser, the dbconsole process needs to be running on the server. The dbconsole process starts automatically after installation. But if the system restarts, you’ll need to start it manually from the command line or as a Windows service.

Start Oracle Process Manager and Notification Server (OPMN), Oracle HTTP Server (OHS), Node Manager, Admin Server, and Managed Server in sequence.

How do I start an OMS?

  1. Start Oracle Process Manager and Notification Server (OPMN)
  2. Start Oracle HTTP Server (OHS)
  3. Start Node Manager.
  4. Start Admin Server.
  5. Start Managed Server.

Enterprise Manager is a set of software features designed to help manage hardware and software on a particular platform, most commonly associated with Oracle’s offering.

What does Enterprise Manager do?

An enterprise manager is a set of software features designed to help manage hardware and software on a particular platform. The term is most commonly associated with Oracle’s offering, which handles both proprietary and non-Oracle components of systems.

Open Services via Start → Control Panel → Administrative Tools → Services, then verify Oracle services have Manual or Automatic startup type.

How do I open EM console?

  1. Click Start → Control Panel → Administrative Tools → Services. The Services window appears.
  2. Look for Oracle services — they all start with "Oracle."
  3. In the properties window, make sure the Startup Type is either Manual or Automatic (not Disabled).

Check dba_registry for the “Oracle Enterprise Manager” component; if present, EM is installed.

How do I know if I have Oracle Enterprise Manager installed?

Check for the “Oracle Enterprise Manager” component in dba_registry. Run this SQL query:

SELECT COMP_NAME, STATUS FROM dba_registry WHERE COMP_NAME LIKE '%Enterprise Manager%';

If DBConsole is configured, the query should return one row for “Oracle Enterprise Manager.”

The Oracle Enterprise Manager Console is a graphical user interface providing menus, toolbars, and access to Oracle tools and third-party utilities.

What is Enterprise Manager console?

The Oracle Enterprise Manager Console is a graphical user interface that provides menus, toolbars, launch palettes, and the framework to access Oracle tools and third-party utilities.

Log in to the EM server and use the -details flag with the status command to check OMS status and port/URL information.

How do I know if OMS is running?

To check the status of OMS, log in to the EM server. For more details about the port and URL, use the -details flag with the status command.

Oracle Home is the directory where the OMS, Management Agent, and Oracle Management Plug-ins are installed.

What is OMS home in Oracle?

Oracle Home is the directory where the OMS, Management Agent, and Oracle Management Plug-ins are installed.

OMS logs are located in the “sysman/log” directory within the EM Instance Home (for example: /u01/oracle/gc_inst/em/EMGC_OMS1/sysman/log).

How do I find an OMS log?

The Trace and Log Files of OMS are located in the “sysman/log” directory in the EM Instance Home (for example: /u01/oracle/gc_inst/em/EMGC_OMS1/sysman/log). These logs are invaluable for diagnosing OMS-related problems.

Enterprise can be a solid place to build experience in sales, customer service, recruiting, and management, though expect long hours and lower starting pay.

Is enterprise a good career?

Enterprise can be a solid place to build experience in sales, customer service, recruiting, and management. That said, expect long hours (50-60+ per week) and lower pay when you're starting out. Some describe the company structure as pyramid-shaped.

Average annual salary for an enterprise manager is $104,474 (as of latest data).

How much does an enterprise manager make?

Annual Salary Monthly Pay Top Earners $178,500 $14,875 75th Percentile $120,000 $10,000 Average $104,474 $8,706 25th Percentile $79,500 $6,625

Install Enterprise Manager by launching the Cloud Control Installation Wizard, entering My Oracle Support details, and following the installer steps.

How do I install Enterprise Manager?

  1. Launch the Enterprise Manager Cloud Control Installation Wizard.
  2. Enter your My Oracle Support details.
  3. Click Next.
  4. Install any available software updates.
  5. Click Next again.
  6. Provide your Oracle Inventory details.
  7. Click Next.
  8. Let the installer check prerequisites.

The Oracle Enterprise Manager Console is a graphical user interface providing menus, toolbars, and access to Oracle tools and third-party utilities.

What is EM console?

Console. The Oracle Enterprise Manager Console is a graphical user interface that provides menus, toolbars, launch palettes, and the framework to access Oracle tools and third-party utilities.

The default port for Oracle Enterprise Manager Management Agent is 3872.

What port is Oracle Enterprise Manager on?

By default, the Enterprise Manager installation assigns port 3872 to the Management Agent.

Verify the HTTPS port is set for the XML DB, then access EM Database Express via a browser URL and log in with database credentials.

How do you check em Express is running?

To get it running, just verify the HTTPS port is set for the XML DB. Once that's confirmed, EM Database Express is accessible via a URL like this. Enter your database login details and click “Login.” You’ll land on the database home page.

Edited and fact-checked by the TechFactsHub editorial team.
David Okonkwo
Written by

David Okonkwo holds a PhD in Computer Science and has been reviewing tech products and research tools for over 8 years. He's the person his entire department calls when their software breaks, and he's surprisingly okay with that.

What Does Down Date Mean?Which Of The Following Is Not Forecasting Method?