[python] 解决OSError: Address already in use
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[python] 解决OSError: Address already in use相关的知识,希望对你有一定的参考价值。
用python http.sever实现web服务时,绑定端口由于强制退出导致再次启动服务报错:
self.socket.bind(self.server_address)
OSError: [Errno 48] Address already in use
临时解决办法:
查找端口被占用的进程,然后强制结束
lsof -i:9090
然后kill对应的进程
#--coding:utf-8--
from http.server import BaseHTTPRequestHandler, HTTPServer
import time
import socket
class CarServer(BaseHTTPRequestHandler):
def get_host_ip(self):
def do_GET(self):
self.send_response(200)
self.send_header("Content-type", "text/html")
self.end_headers()
self.wfile.write("Hello World !".encode())
if name == "main":
socket.set
myServer = HTTPServer(("192.168.1.101", 9090), CarServer)
print(time.asctime(), "Server Starts - %s:%s" % ("a","b"))
try:
myServer.serve_forever()
except KeyboardInterrupt:
pass
以上是关于[python] 解决OSError: Address already in use的主要内容,如果未能解决你的问题,请参考以下文章
Python OSError: [Errno 22] Invalid argument:的出现和解决
Python创建文件报错OSError:[Errno 22] Invalid argument处理
解决安装虚拟环境出现的问题(OSError: Command /home/python/.virtua...ngo3_web/bin/python3 - setuptools pkg_resource
[解决问题] pandas读取csv文件报错OSError解决方案
解决错误:pandas.read_csv() 报错 OSError: Initializing from file failed