Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to build 12oracle em express

2025-04-11 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article introduces the relevant knowledge of "how to build 12oracle em express". In the operation of actual cases, many people will encounter such a dilemma. Then let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

12C when building em express, the steps are very simple, getting rid of the bloated situation of 11g. It only takes one step. For example:

(1) Use the PL/SQL procedure DBMS_XDB_CONFIG.SETHTTPSPORT to set the HTTPS port for EM Express. This will update the HTTPS port in the Oracle XML DB Repository. You must connect as SYS / AS SYSDBA to run the procedure.

SQL > connect sys/@ as sysdba

SQL > exec DBMS_XDB_CONFIG.SETHTTPSPORT (5500)

Access em address: https://hostname:5500/em

(2) Use the PL/SQL procedure DBMS_XDB_CONFIG.SETHTTPPORT to set the HTTP port for EM Express. This will update the HTTP port in the Oracle XML DB Repository.

SQL > connect sys/@ as sysdba

SQL > exec DBMS_XDB_CONFIG.SETHTTPPORT (5500)

Access em address: http://hostname:5500/em

To cancel the EM configuration, execute:

SQL > connect sys/@ as sysdba

SQL > exec DBMS_XDB_CONFIG.SETHTTPSPORT (0)

Or

SQL > connect sys/@ as sysdba

SQL > exec DBMS_XDB_CONFIG.SETHTTPPORT (0)

This is the end of "how to build 12oracle em express". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 222

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report