Oracle连接关闭分析 Diagnosing the ORA-12537: TNS: connection closed error

前端之家收集整理的这篇文章主要介绍了Oracle连接关闭分析 Diagnosing the ORA-12537: TNS: connection closed error前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
原文出自:

Question: I'm trying to connect to Oracle and I get the ORA-12537: TNS: connection closed error. How do I fix an ORA-12537?

Answer:The ORA-12537 is an informational error,and the "real" error is the secondary error message.

ORA-12537 TNS:connection closed
Cause: Normal "end of file" condition has been reached; partner has disconnected.
Action: None needed; this is an information message.

The ORA-12537 error sometimes relates configuration issues in the sqlnet.ora,protocol.ora and listener.ora files. Verify that you service names match between your listener and remote client connect strings.

This ORA-12537 can also happen if your firewall has disconnected idle connections.


这里专家说了,检查 1. client连接的service name与服务器上是否一致.

2.服务器是否有防火墙过滤.

排除这两种情况后会有以下场景.


Also,the ORA-12537 sometimes happens in these cases:


1. You have a path name that is too long for the Oracle TNS client. See MOSC note:263489.1.

Since the iORA-12537 ssue is caused by a large connection string there are several workarounds for the issue.

1. Install the exe in a shorter named directory.

2. Modify the TNS Names entry so that it is shorter.

3. Replace domain names with IP Addresses if that shortens and vice versa.

4. Remove any parameters from the entry that are not needed.

5. Patch the Database Listener to the most recent version.
References


这里是说连接字符串内容太长,将所有可配置的名称 缩短~缩短


2. Bug:1566794: CONNECTIONS FAIL WITH ORA-12537 WHEN USE_SHARED_SOCKET IS SET IN 8.1.7. Resolution is to set USE_SHARED_SOCKET to FALSE.

设置USE_SHARED_SOCKET

但搜了下,博文里又说要设为true http://blog.csdn.net/bisal/article/details/36424093


3. Tnsping Net Service Name fails with TNS-12537: TNS:connection closed or sqlplus connection errors out with Ora-12537

Cause:

* In the sqlnet.ora file the parameter TCP.VALIDNODE_CHECKING is enabled and TCP.INVITEDNODES is set to some specific IP's of the Client Machine.

* If trying to connect to the Apps database,by default,with Oracle Apps Installation the parameter TCP.VALIDNODE_CHECKING is enabled and TCP.INVITEDNODES is set to Server Machines IP or Hostname.

Solution

* You can disable these parameters in the sqlnet.ora

* Or add the client machines ip address in the TCP.INVITEDNODES list.

客户端ip被限制了,TCP.VALIDNODE_CHECKING 修改为false或在TCP.INVITEDNODES 加入可信ip


4. For ORA-12537 relating from inter-version connections.

You can get the ORA-12537 error if you listed 10g database SID with 9i listener.

这个太奇怪,为什么listener会不是Oracle最新的版本的呢?...


5. In Oracle Apps 11i,you can get the ORA-12537because of an eBusiness Suite security feature (See MOSC note 291897.1). The fix is to edit your sqlnet.ora file to include the client IP address in the tcp.invited_nodes = (x.x.x.x,hostname,...).


还是加可信IP

原文链接:https://www.f2er.com/oracle/210756.html

猜你在找的Oracle相关文章