CentOS 6.4/64 ビットで Python プロトコルを実行しています。TCPサーバーポート7007を使用している場合。新しいバージョンの更新やメンテナンス、またはオンザフライで再起動してバッファを更新する場合は、次のようにアプリケーションを再起動する必要があります。
サーバー.py:
class AServer(threading.Thread):
def __init__(self, port):
threading.Thread.__init__(self)
self.port = port
def run(self):
host = ''
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind((host, self.port))
print bgcolors.BOOT
s.listen(1)
conn, addr = s.accept()
print bgcolors.OK + 'contact', addr, 'on', self.now()
while 1:
try:
data = conn.recv(1024)
except socket.error:
print bgcolors.OK + 'lost', addr, 'waiting..'
s.listen(1)
conn, addr = s.accept()
print bgcolors.OK + 'contact', addr, 'on', self.now()
continue
if not data:
.....
...
t = AServer(7007)
t.start()
その場で緊急に再起動します (1 秒以内に実行されることを期待しています) が失敗します:
$ ps aux | awk '/server.py/ {print $2}' | head -1 | xargs kill -9;
$ nohup python /var/tmp/py-protocol/server.py &
[root@IPSecVPN protocol]# python server.py
Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib64/python2.6/threading.py", line 532, in __bootstrap_inner
self.run()
File "server.py", line 236, in run
s.bind((host, self.port))
File "<string>", line 1, in bind
error: [Errno 98] Address already in use