您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Oracle12c環境下的EM如何配置使用”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Oracle12c環境下的EM如何配置使用”這篇文章吧。
Oracle12c環境中,EM不需要單獨安裝配置了,創建數據庫的時候勾選EM express即可。因為很多功能都轉移到了SQL developer里,所以12c的EM叫EM express。
如果在安裝數據庫的時候未勾選EM express,則可以通過以下步驟手工配置(參考官方文檔):
Step1.Configure and start the Oracle Net Listener (the listener).
Step2.init.ora(when the listener is running on a non standard port )
init.ora local_listener=inst1
where inst1 is a TNSNAMES entry defined in tnsnames.ora that points to the listener.
For example :tnsnames.ora
inst1= (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=host_name)(PORT=1234))(CONNECT_DATA=(SERVICE_NAME=service_name)(SERVER=DEDICATED)))
Step3. Enable the TCP dispatcher by adding the following entry to the init.ora file for the database you want to manage using EM Express:
dispatchers="(PROTOCOL=TCP)(SERVICE=XDB)"
例如:dispatchers="(PROTOCOL=TCP)(SERVICE=ORCLXDB)"For example:
Step4. Restart the database so that the changes made in the init.ora file take effect.
Configure 5500 for EM Express
netstat -aon|findstr "5500" --檢查確定該端口沒有被占用
SQL> show parameter dispatchers;
SQL> exec DBMS_XDB_CONFIG.SETHTTPSPORT(5500);
數據庫安裝后如何訪問EM express:
執行:lsnrctl status
找到下面類似內容:
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=hostname)(PORT=5500))(Security=.....這部分有對應的sid信息)
則該數據庫的EM express的URL為:https://hostname:5500/em
如果PROTOCOL=tcps是tcp,就要把https換成http,URL最后不要忘了加上/em,否則會彈出一個“需要驗證”的窗口,也會提示輸入用戶名和密碼。
通過數據庫查看em端口:
select dbms_xdb_config.gethttpsport() from dual;
select dbms_xdb_config.gethttpport() from dual;
設置em端口:
可以通過以下命令將em端口從5500更改為5502
exec dbms_xdb_config.setHTTPSport();
exec DBMS_XDB_CONFIG.setHTTPPort(5502);
以上是“Oracle12c環境下的EM如何配置使用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。