解决:OSError: [Errno 98] Address already in use

OSError: [Errno 98] Address already in use 错误是指端口被占用,未释放或者程序没有正常结束

解决办法:
1.更换端口
2.使用终端命令杀死进程(可以在PyCharm的Terminal中输入命令)

lsof -i:5050
1
lsof -i:端口号 :可通过端口号来查找进程ID

kill -9 pid
1
pid是指进程的ID号 ,kill -9 用来强制杀死进程

解决:OSError: [Errno 98] Address already in use解决:OSError: [Errno 98] Address already in use 我是帅气的大叔 发布了43 篇原创文章 · 获赞 0 · 访问量 615 私信 关注
上一篇:Intellij-出现Module ** must not contain source root **. The root already belongs to module **这类错误的解决方法


下一篇:Nginx重启时提示"nginx: [emerg] bind() to 0.0.0.0"解决方法 老蒋 发布于 2019-06-03 分类:运维笔记 评论(0) 2000+站