Floodlight控制器套接字错误

时间:2014-12-15 17:24:17

标签: python jython

我正在尝试运行泛光灯,但由于某种原因它没有启动并给我套接字错误。因为我是新手,请帮我解决这个问题。

09:14:16.212 INFO [n.f.j.JythonServer:debugserver-main] Starting DebugServer on :6655
Exception in thread "debugserver-main" Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "__pyclasspath__/debugserver.py", line 69, in run_server
  File "/home/tashfeen/floodlight/target/floodlight.jar/Lib/SocketServer.py", line 331, in __init__
  File "/home/tashfeen/floodlight/target/floodlight.jar/Lib/SocketServer.py", line 350, in server_activate
  File "<string>", line 1, in listen
  File "/home/tashfeen/floodlight/target/floodlight.jar/Lib/socket.py", line 934, in listen
socket.error: (98, 'Address already in use')

1 个答案:

答案 0 :(得分:1)

socket.error: (98, 'Address already in use')表示您尝试绑定套接字的端口已在使用中。

您可以使用netstat工具查找哪个进程正在使用哪个端口而不是尝试将其终止,或者您应该使用不同的端口号。