1Z0-497 · Question #152
Which is the default port number for Database Express?
The correct answer is B. 5500. https://docs.oracle.com/database/121/ADMQS/em_manage.htm#ADMQS12483 If you installed the database on a host computer named mydbhost.example.com, and port number 5500 is configured as the HTTPS port number for EM Express for the database, then enter the following URL…
Question
Which is the default port number for Database Express?
Options
- A7801
- B5500
- C2243
- D1521
- E22
How the community answered
(35 responses)- A3% (1)
- B80% (28)
- C11% (4)
- D6% (2)
Explanation
https://docs.oracle.com/database/121/ADMQS/em_manage.htm#ADMQS12483 If you installed the database on a host computer named mydbhost.example.com, and port number 5500 is configured as the HTTPS port number for EM Express for the database, then enter the following URL: https://mydbhost.example.com:5500/em The port that EM database Express 12c is running on can be identified from the listener status (lsnrctl status) command. By default Oracle will pick a port between 5500 and 5599 to bring EM How can I find the port on which EM Express is configured? There are two ways to find the HTTP/HTTPS port for EM Express: lsnrctl status | grep HTTP (DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=xxx.us.oracle.com)(PORT=5500 ))(Security=(my_wallet_directory=/u01/oracle/app/oracle/admin/orcl/xdb_ wallet))(Presentation=HTTP)(Session=RAW)) --> this is For HTTPS (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xxx.us.oracle.com)(PORT=8080) )(Presentation=HTTP)(Session=RAW)) --> this is For HTTP or from SQL*Plus: SQL> select dbms_xdb_config.gethttpsport() from dual; SQL> select dbms_xdb_config.gethttpport() from dual;
Topics
Community Discussion
No community discussion yet for this question.