(顺便使用mac)
我正在关注构建扭曲的python套接字服务器的this教程,一切都很顺利。
我面临的一个问题是我不知道如何关闭服务器。基本上我在我的python脚本中更改了一些代码,我想重新启动服务器,但我不知道如何。我尝试从我的活动监视器中杀死所有python进程,但是当我尝试再次运行服务器时,我收到一个错误,服务器无法在端口80上侦听。
这里是剧本:
from twisted.internet.protocol import Factory, Protocol
from twisted.internet import reactor
class IphoneChat(Protocol):
def connectionMade(self):
self.factory.clients.append(self)
print "clients are ", self.factory.clients
def connectionLost(self, reason):
self.factory.clients.remove(self)
def dataReceived(self, data):
a = data.split(':')
print a
if len(a) > 1:
command = a[0]
content = a[1]
msg = ""
if command == "iam":
self.name = content
msg = self.name + " has joined"
elif command == "msg":
msg = self.name + ": " + content
print msg
for c in self.factory.clients:
c.message(msg)
def message(self, message):
self.transport.write(message + '\n')
factory = Factory()
factory.protocol = IphoneChat
factory.clients = []
reactor.listenTCP(80, factory)
print "Iphone Chat server started"
reactor.run()
追踪(最近一次通话): File" pythonSocketServer.py",第39行,in reactor.listenTCP(80,工厂) 文件" /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/posixbase.py" ;,第495行,在listenTCP中 p.startListening() 文件" /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/tcp.py" ;,第980行,在startListening中 raise CannotListenError(self.interface,self.port,le) twisted.internet.error.CannotListenError:无法收听任何:80:[Errno 48]地址已被使用。
答案 0 :(得分:1)
使用netstat -nlp | grep 80
使用端口80查找进程。
如果可能,请使用kill -9 pid
终止该过程。
或者您可以使用其他端口,例如12345。
factory = Factory()
factory.protocol = IphoneChat
factory.clients = []
reactor.listenTCP(12345, factory)