溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

oracle10g RAC ora-12545因目標(biāo)主機(jī)或?qū)ο蟛淮嬖诘腻e(cuò)誤解決

發(fā)布時(shí)間:2020-08-11 20:27:33 來源:ITPUB博客 閱讀:382 作者:colin_cwc 欄目:關(guān)系型數(shù)據(jù)庫
由于歷史原因,應(yīng)用升級需要成本,最近新上了一套o(hù)racle 10g RAC (10.2.0.5),測試時(shí),從其他應(yīng)用服務(wù)器,鏈接這套數(shù)據(jù)庫,使用的是vip鏈接,發(fā)現(xiàn)大量報(bào)錯(cuò),報(bào)錯(cuò)為ora-12545因目標(biāo)主機(jī)或?qū)ο蟛淮嬖凇?br /> ORA-12545: Connect failed because target host or object does not exist


查詢網(wǎng)上資料和mos文檔,

導(dǎo)致這個(gè)問題的原因
Whe LOCAL_LISTENER is not set at all or is not set correctly, PMON can register both the VIP hostname and the physical hostname with the REMOTE_LISTENER.  This is incorrect in RAC but if it does occur, the client can intermittently be routed to a listener endpoint on either of these addresses.  If the client is unable to resolve the physical hostname or even the vip hostname, the connection will fail with ORA-12545.

由于LOCAL_LISTENER未配置或者配置不爭取,PMON進(jìn)程使用的是REMOTE_LISTENER注冊vip hostname和物理地址,在rac里面,這是不對的配置,客戶端無法使用這些地址正確路由到監(jiān)聽服務(wù)器。如果客戶端無法正確解析物理地址或者vip的hostname,鏈接就會報(bào) ORA-12545錯(cuò)誤。


Additionall, if the VIP hostname cannot be resolved, but the VIP numerical address is reachable; then this VIP numerical address should be used as the HOST value for LOCAL_LISTENER instead.


And important first set is to check the output for :  lsnrctl services


You should not see the physical hostname in the handler information for your RAC instances.   Here's an example of an incorrect lsnrctl services output for a 2-node RAC cluster:


lsnrctl services oracle_rac_listener 
Service "oracle.oracle.com" has 2 instance(s). 
Instance "orcl1", status READY, has 2 handler(s) for this service... 
Handler(s): 
"DEDICATED" established:0 refused:0 state:ready 
REMOTE SERVER 
(ADDRESS=(PROTOCOL=TCP)(HOST=myphysicalhost1)(PORT=1521)) 
"DEDICATED" established:326 refused:0 state:ready 
LOCAL SERVER 


Instance "orcl2", status READY, has 1 handler(s) for this service... 
Handler(s): 
"DEDICATED" established:394371 refused:0 state:ready 
REMOTE SERVER 
(ADDRESS=(PROTOCOL=TCP)(HOST=myphysicalhost2)(PORT=1521))
 


Here's an example of what it ought to look like when LOCAL_LISTENER is configured correctly:


lsnrctl services oracle_rac_listener 
Service "oracle.oracle.com" has 2 instance(s). 
Instance "orcl1", status READY, has 2 handler(s) for this service... 
Handler(s): 
"DEDICATED" established:0 refused:0 state:ready 
REMOTE SERVER 
(ADDRESS=(PROTOCOL=TCP)(HOST=myVIP_host1)(PORT=1521)) 
"DEDICATED" established:326 refused:0 state:ready 
LOCAL SERVER 


Instance "orcl2", status READY, has 1 handler(s) for this service... 
Handler(s): 
"DEDICATED" established:394371 refused:0 state:ready 
REMOTE SERVER 
(ADDRESS=(PROTOCOL=TCP)(HOST=myVIP_host2)(PORT=1521))


解決方案:

分別修改兩邊的RAC實(shí)例的LOCAL_LISTENER配置。
alter system set LOCAL_LISTENER="(address=(protocol=tcp)(port=1521)(host=))" scope=both sid='INSTANCE_NAME1';
alter system set LOCAL_LISTENER="(address=(protocol=tcp)(port=1521)(host=))" scope=both sid='INSTANCE_NAME2'; 


另外,相關(guān)配置REMOTE_LISTENER.
alter system set REMOTE_LISTENER='' scope=both sid='*';

另外parallel_instance_group參數(shù)也可以配置不一樣的值

alter system set parallel_instance_group="A" scope=both sid='INSTANCE_NAME1';
alter system set parallel_instance_group="B" scope=both sid='INSTANCE_NAME2'; 

最后,注意的是,修改完后,重啟監(jiān)聽,如果重啟監(jiān)聽都不行,重啟一下數(shù)據(jù)庫或者兩個(gè)實(shí)例重啟一下。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI