“无法识别的 Windows 套接字错误:0:JVM_Bind”尝试在 Flash Builder 4.5 for PHP 中调试时

发布于 2024-12-06 19:10:01 字数 159 浏览 1 评论 0原文

我正在尝试使用新版本的 FB(其中包含 Zend)调试一个与服务器无关的应用程序。

问题是,每次我尝试调试时,消息错误都是相同的:

“无法识别的 Windows 套接字错误:0:JVM_Bind”

你们中有人对此有任何想法吗?

提前致谢。

Im trying to debug an app, not server related yet, with the new version of the FB, the one that comes with Zend in it.

Thing is, everytime I try to debug, the message error is the same:

"Unrecognized Windows Sockets error: 0: JVM_Bind"

Do any of you have an idea about this?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

梦里°也失望 2024-12-13 19:10:01

检查端口

JVM_Bind 意味着服务器套接字无法连接到该端口,因为它已被另一个服务器套接字使用

netstat (使用 -b param )应该告诉您正在使用的端口以及开始侦听该端口的 exe,

确保它没有被使用被使用

Check your ports

JVM_Bind means the server socket could not connect to that port as its already being used by another server socket

netstat (with -b param ) should tell you the ports being used and the exe that started listening on it

make sure it is not being used

2024-12-13 19:10:01
  1. 关闭其他可以打开端口的程序或服务。

  2. 检查 Win7 的 mm.cfg 文件内容 c:\Users{用户名}\mm.cfg。探查器可能有奇怪的设置。其实你可以删除这个文件来重置调试设置(带备份!)。

我担心 zend 调试器可以绑定到同一个端口。

  1. Close other programs or services that could open ports.

  2. Check mm.cfg file content c:\Users{Username}\mm.cfg for Win7. There could be strange settings for profiler. Actually you can remove this file to reset debug setting (with backup!).

I afraid that zend debugger could bind to the same port.

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