Oracle 连接问题

发布于 2024-07-25 06:14:26 字数 199 浏览 5 评论 0原文

目前,我们在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

已下线请稍等 2024-08-01 06:14:26

如果进程快速打开和关闭侦听器正在使用的网络端口(例如 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.

街角迷惘 2024-08-01 06:14:26

你用的是哪个驱动。 此异常通常意味着连接请求未指定服务。

如果您使用本机驱动程序(类型 2)或 JDBC-ODBC 桥(类型 1),请查看 tnsnames.ora 文件并确保设置了 SERVICE_NAME 属性。

LOCALNAME =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = servername)(PORT = 1521))
    )
    (CONNECT_DATA =
      (SERVICE_NAME = servicename)
    )
  )

如果您使用的是瘦驱动程序(类型 4),请确保连接字符串具有服务名称。

jdbc:oracle:thin:@servername:1521:servicename

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.

LOCALNAME =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = servername)(PORT = 1521))
    )
    (CONNECT_DATA =
      (SERVICE_NAME = servicename)
    )
  )

If you are using the thin driver (type 4) then make sure that the connection string has the service name.

jdbc:oracle:thin:@servername:1521:servicename
风吹雨成花 2024-08-01 06:14:26

这意味着您的 TNSlistener 没有运行。

您可以使用 Tnspi​​ng 检查侦听器是否打开
打开此页面链接文本

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文