ORA-12545 TNS: Host or Object Does not Exist

dcswinner發表於2011-11-28

       上週五下午在客戶那正開著會,忽然接到一個電話,是樓下的那個專案經理打來的,說他的客戶端連不了oracle資料庫了。我問其報什麼錯誤沒有,那個專案經理說報 ORA-12545主機或目標不存在的錯誤。 聽到這個錯誤後,一般是由於連結rac資料庫時,客戶端沒有在其windows的hosts檔案裡寫上資料庫伺服器的主機名,或者是寫了,但是被360防毒軟體註釋了,這個問題這兩年經常有開發人員問我,然後通過此法解決,因此我也讓其將資料庫主機名寫到hosts檔案裡。掛了電話繼續接著開會,不一會,那個專案經理又打電話過來說,他在hosts檔案裡添了伺服器主機名後,還是報相同的錯誤,然後我問其應用伺服器連資料庫有沒有問題,他說沒有,這樣系統還是可以使用,只是他自己連不了,因此我說等會開完會過去幫其看看。

      傍晚來到他的專案組,分析了一下原因,發現確實還存在這個問題,因此就上metalink上查了一下:

Client Connection to RAC Intermittently Fails-ORA-12545 TNS: Host or Object Does not Exist [ID 364855.1]

Applies to:

Oracle Net Services - Version: 9.2.0.8.0 to 11.2.0.3 - Release: 9.2 to 11.2
Information in this document applies to any platform.
Checked for relevance on 30-SEP-2011.

Symptoms

When attempting to connect to a RAC service name, the connection intermittently fails with an ORA-12545 error:  TNS: Host or object doesn't exist.   The expected behavior. is that the connection would be redirected to any of the listener in the cluster where the listener is running on the VIP.  This is normal under RAC Cluster node load balancing. 

However, when the server side listener endpoints are not correctly configured OR the client cannot resolve all forms of the VIP hostname, this error can get thrown.

Changes

This is likely a new installation of RAC cluster.

Cause

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.

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))

 

Solution

Log in with privileges to the instance and issue the following commands so that LOCAL_LISTENER is set correctly:

 

alter system set LOCAL_LISTENER="(address=(protocol=tcp)(port=1521)(host=)) scope=both sid='INSTANCE_NAME1';

Do the same for the 2nd instance where host is set to the and the sid is set to the 2nd instance name.

alter system set LOCAL_LISTENER="(address=(protocol=tcp)(port=1521)(host=)) scope=both sid='INSTANCE_NAME2';


Now the correct address using the VIP hostname will be registered against the listeners in the cluster.

The client should be able to resolve all forms of the VIP host via their /etc/hosts file.  i.e. short name and fully qualified.

這貌似是oracle的一個bug,按照此文件設定local_listener引數後,客戶端連結正常,問題解決。

今天下午又有一個大學同學在群裡問及此問題,我讓其按照此辦法設定後,問題也解決了。看來這個問題比較普遍,因此寫此日記記錄之。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12129601/viewspace-712267/,如需轉載,請註明出處,否則將追究法律責任。

相關文章