暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

How to enable EM express for Oracle database

零君聊软件 2017-12-29
450

Follow the steps as below to enable EM express for Oracle database,

1. Use sqlplus to connect to the oracle database. Use the following SQL to make sure you are in the root container DB, which should be CDB$ROOT;

SQL>show con_name

2. Check whether EM had already been enabled for HTTPS;

SQL>select dbms_xdb_config.gethttpsport from dual;

If it shows 5500 or whatever other non-zero value, then it means that HTTPs port had already been enabled for EM. 

3. Configure HTTPS port for EM if HTTPS is not set yet;

SQL>exec dbms_xdb_config.sethttpsport(5500);

4. Configure HTTP port for EM, just follow the same steps as HTTPs;

SQL>select dbms_xdb_config.gethttpport from dual;

If it shows 8080 or whatever  other non-zero value, then it means that HTTP port had already been enabled for EM.Otherwise configure the HTTP port as below,

SQL>exec dbms_xdb_config.sethttpport(8080);

5. Login into EM with the following URLs,

https://your_host_name:5500/em

http://your_host_name:8080/em


文章转载自零君聊软件,如果涉嫌侵权,请发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论