Oracle 12C: Where is my Oracle 12C OEM ??

Where is my Oracle 12C OEM ??


[oracle@oracle12c ~]$ find . -name emca
[oracle@oracle12c ~]$ locate emca
/u01/app/oracle/product/12.1.0/dbhome_1/inventory/Scripts/ext/jlib/emca.jar
/u01/app/oracle/product/12.1.0/dbhome_1/inventory/backup/2013-07-11_10-33-06AM/Scripts/ext/jlib/emca.jar
/u01/app/oracle/product/12.1.0/dbhome_1/jlib/emca.jar
/u01/downloads/database/stage/ext/jlib/emca.jar
[oracle@oracle12c ~]$ find . -name emctl
[oracle@oracle12c ~]$ pwd
/home/oracle
[oracle@oracle12c ~]$ find . -name emctl
[oracle@oracle12c ~]$



Configuring the OEM Express


SQL> exec dbms_xdb_config.setHTTPsPort (5500);

PL/SQL procedure successfully completed.

SQL> exec dbms_xdb_config.setHTTPPort(5511);

PL/SQL procedure successfully completed.


SQL> select dbms_xdb_config.gethttpport from dual;

GETHTTPPORT
-----------
       5511

SQL> select dbms_xdb_config.gethttpsport from dual;

GETHTTPSPORT
------------
        5500


Make sure Oracle listener is started. "lsnrctl status".


https://<ipaddress>:5500/em
http://<ipaddress>:5511/em




Conclusion

Starting from Oracle 12C, Oracle has a new OEM Express which enable DBA to monitor, configure and administer their Oracle database. So, far it seems pretty lightweight. I have not played a lot with its features but doesn't seem like as much as the 11G OEM or Grid Control. However, setting it up was a breeze. So, no complain there. I do not have to reconfigure the repository and etc. The setup does not interrupted the Multithread enablement either. Oracle OEM Express let the browser to do the rendering and leaving the database to work on SQL parsings and this letting an overall more pleasant experience using the OEM.

Recently, I did an Oracle 12C (12.1.0.2) install and EM was installed/configured automagically. 

1 comment: