DBA Hub

📋Steps in this guide1/1

Enable/disable em express 12c

-- Check whether em is enabled or not.(if output 0 means, emexpress disabled)

oracle configurationintermediate
by OracleDba
13 views
1

Enable/disable em express 12c

-- Check whether em is enabled or not.(if output 0 means, emexpress disabled)

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
select dbms_xdb.getHttpPort() from dual;
select dbms_xdb_config.getHttpsPort() from dual;
-- Enable emexpress with https:
SQL> exec dbms_xdb_config.sethttpsport(5500);
-- Enable emexpress with http:
SQL> exec dbms_xdb_config.sethttpport(8080);
-- Disable em express (set port to 0)
SQL> exec dbms_xdb_config.sethttpsport(0);
SQL> exec dbms_xdb_config.sethttpport(0);

Comments (0)

Please to add comments

No comments yet. Be the first to comment!