“无法识别的 Windows 套接字错误:0:JVM_Bind”尝试在 Flash Builder 4.5 for PHP 中调试时
我正在尝试使用新版本的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查端口
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
关闭其他可以打开端口的程序或服务。
检查 Win7 的 mm.cfg 文件内容 c:\Users{用户名}\mm.cfg。探查器可能有奇怪的设置。其实你可以删除这个文件来重置调试设置(带备份!)。
我担心 zend 调试器可以绑定到同一个端口。
Close other programs or services that could open ports.
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.