Find ENTERPRISE MANAGER DATABASE 12c used port

How to find port used by Enterprise Manager, eg. https://localhost:5500/em

SQL> select dbms_xdb_config.gethttpport() from dual;

DBMS_XDB_CONFIG.GETHTTPPORT()
-----------------------------
0

Elapsed: 00:00:07.25
SQL> select dbms_xdb_config.gethttpsport() from dual;

DBMS_XDB_CONFIG.GETHTTPSPORT()
------------------------------
5500

Leave a Reply