【Internal Server Error】pycharm解决关闭flask端口依然占用问题

 

Internal Server Error

The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.

起因:

我们在运行flask后,断开服务依然保持运行,这是因为这是一种伪断开,只是在pycharm这里中止了,但是python解释器依旧在运行这个服务。

解决方法:

我们只要关闭运行flask的python解释器就行了

利用cmd关闭监听这个解释器就行

netstat -ano | findstr 5000

 这里的5000可以根据自己的需要更改

taskkill /pid 7076 /f

7076可以修改为自己输入的内容,可以参考下面的图片。

【Internal Server Error】pycharm解决关闭flask端口依然占用问题_第1张图片

 

你可能感兴趣的:(pycharm,flask,ide)