4

我刚刚遇到了一个关于windows上瓶子的奇怪问题。当我测试我的瓶子代码时,我发现它可以使用相同的地址和端口在 WINDOWS 上运行多个相同的程序。但是当你尝试在 Linux 或 Mac 上使用相同的地址和端口启动多个相同的程序时,它会报告以下错误:

socket.error: [Errno 48] Address already in use 

我的瓶子代码是:

from bottle import route, run, template

@route('/hello/:name')
def index(name='World'):
    return template('<b>Hello {{name}} </b>', name=name)

run(host='localhost', port=9999)

然后我跟踪代码,从bottle到wsgiref,最后发现问题可能出在Python27\Lib\BaseHTTPServer.py。我的意思是当我使用以下简单代码时:

import BaseHTTPServer

def run(server_class=BaseHTTPServer.HTTPServer,
        handler_class=BaseHTTPServer.BaseHTTPRequestHandler):
    server_address = ('localhost', 9999)
    print "start server on localhost 9999"
    httpd = server_class(server_address, handler_class)
    httpd.serve_forever()

run()

同样的问题也会发生在 Windows 上。

但是如果我直接使用socketserver,就像下面的代码:

import SocketServer

class MyTCPHandler(SocketServer.BaseRequestHandler):

    def handle(self):
        # self.request is the TCP socket connected to the client
        self.data = self.request.recv(1024).strip()
        print "{} wrote:".format(self.client_address[0])
        print self.data
        # just send back the same data, but upper-cased
        self.request.sendall(self.data.upper())

if __name__ == "__main__":
    HOST, PORT = "localhost", 9999
    print "Start a server on localhost:9999"
    # Create the server, binding to localhost on port 9999
    server = SocketServer.TCPServer((HOST, PORT), MyTCPHandler)

    # Activate the server; this will keep running until you
    # interrupt the program with Ctrl-C
    server.serve_forever()

不会发生同样的问题,我的意思是即使在窗口上,当您尝试启动另一个程序时,上面的 socketserver 代码也会报告错误。

socket.error: [Errno 48] Address already in use

我所有的测试都使用了 Python 2.7、Windows 7 和 Centos 5。

所以我的问题是为什么 HTTPServer 在 Windows 上会有这个问题?我怎样才能让我的瓶子程序在 Windows 上报告相同的错误,就像在 Windows 上一样?

4

1 回答 1

2

很抱歉打扰大家。

我找到了解决方案,就这么简单。只需将 BaseHTTPServer.HTTPServer 的属性 allow_reuse_address 更改为 0。

代码应该是:

from bottle import route, run, template
import BaseHTTPServer

@route('/hello/:name')
def index(name='World'):
    return template('<b>Hello {{name}} </b>', name=name)

setattr(BaseHTTPServer.HTTPServer,'allow_reuse_address',0)
run(host='localhost', port=9999)
于 2013-06-11T14:45:48.353 回答