使用tornado运行web程序错误解决方法:IOError: [Errno 5] Input/output error

原因: 
server.serve_forever()启动后,任何一个访问,都会输出访问历史记录: 
localhost - - [07/Sep/2011 15:21:24] "GET / HTTP/1.1" 200 - 
这个log的输出,需要输出的载体,这里是依赖shell。如果此时退出了shell,log输出找不到地方,就会报出以上错误。 
而且很诡异的是,这个log我怀疑是以error为输出管道,而不是标准的input输出管道,因为我尝试过python http_server.py > /dev/null &一样会报错。 

解决: 
既然缺少了log输出载体,我们就指定一个,这里使用/dev/null,传说中的垃圾回收站。 

执行脚本使用: 

(./main.py &) > /dev/null 2>&1

你可能感兴趣的:(使用tornado运行web程序错误解决方法:IOError: [Errno 5] Input/output error)