Oracle 连接问题
目前,我们在 Oracle 侦听器日志中看到以下错误。 那里有成千上万个这样的错误 TNS-12502:TNS:监听器没有从客户端收到 CONNECT_DATA
我们从 Websphere 6.1 上运行的应用程序连接到此 oracle 10g 数据库
有什么想法可能导致此错误或有任何建议来修复它吗?
谢谢 达米恩
We are currently seeing the following error in our Oracle listener log. There are thousands of these errors in there
TNS-12502: TNS:listener received no CONNECT_DATA from client
We connect to this oracle 10g database from an app running on Websphere 6.1
Any ideas what could be causing this error or any suggestions in order to fix it?
Thanks
Damien
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果进程快速打开和关闭侦听器正在使用的网络端口(例如 1521),您就可以获得此信息。 它可能是失控的进程或端口嗅探器。
You can get this if a process is quickly opening and closing the network port the listener is using (e.g. 1521). It could be a runaway process or a port sniffer.
你用的是哪个驱动。 此异常通常意味着连接请求未指定服务。
如果您使用本机驱动程序(类型 2)或 JDBC-ODBC 桥(类型 1),请查看 tnsnames.ora 文件并确保设置了 SERVICE_NAME 属性。
如果您使用的是瘦驱动程序(类型 4),请确保连接字符串具有服务名称。
Which driver are you using. This exception generally means that the connect request did not specify a service.
if you are using the native driver (type2) or JDBC-ODBC Bridge (type 1) then look in your tnsnames.ora file and insure that the SERVICE_NAME property is set.
If you are using the thin driver (type 4) then make sure that the connection string has the service name.
这意味着您的 TNSlistener 没有运行。
您可以使用 Tnsping 检查侦听器是否打开
打开此页面链接文本
that's mean your TNSlistener is not running.
you can check whether the listener is on or not using Tnsping
open this page link text