您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Oracle12c環(huán)境下的EM如何配置使用”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Oracle12c環(huán)境下的EM如何配置使用”這篇文章吧。
Oracle12c環(huán)境中,EM不需要單獨安裝配置了,創(chuàng)建數(shù)據(jù)庫的時候勾選EM express即可。因為很多功能都轉(zhuǎn)移到了SQL developer里,所以12c的EM叫EM express。
如果在安裝數(shù)據(jù)庫的時候未勾選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);
數(shù)據(jù)庫安裝后如何訪問EM express:
執(zhí)行:lsnrctl status
找到下面類似內(nèi)容:
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=hostname)(PORT=5500))(Security=.....這部分有對應(yīng)的sid信息)
則該數(shù)據(jù)庫的EM express的URL為:https://hostname:5500/em
如果PROTOCOL=tcps是tcp,就要把https換成http,URL最后不要忘了加上/em,否則會彈出一個“需要驗證”的窗口,也會提示輸入用戶名和密碼。
通過數(shù)據(jù)庫查看em端口:
select dbms_xdb_config.gethttpsport() from dual;
select dbms_xdb_config.gethttpport() from dual;
設(shè)置em端口:
可以通過以下命令將em端口從5500更改為5502
exec dbms_xdb_config.setHTTPSport();
exec DBMS_XDB_CONFIG.setHTTPPort(5502);
以上是“Oracle12c環(huán)境下的EM如何配置使用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。