简体   繁体   中英

Flask and Pycharm socket.error

I am running Flask in Pycharm. Suddenly I can no longer run the framework properly! I get a bunch of error messages that ends with:

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

It seems like the socket Flask is using:

"http://127.0.0.1:5000/" 

And it is somehow not available anymore because the last runtime was not shut down properly. I can probably restart my computer and it will probably be a solution, but I don't want to do that if it happens regularly. How do I shut it down?

If you're running Linux, do a ps aux | grep python ps aux | grep python and kill the process that is running flask. If you're running windows, open task manager and kill the python process running flask, but you might have to kill PyCharm.

You can also click the red square button to stop the run (or command-F2 on a mac). If it fails to stop, you'll get a skull icon to kill the process.

This happened to me a few times. I eventually found it to be as simple as to just Run > Stop 'server' in PyCharm.

You want to actively stop the process running your Flask application. Pycharm documentation describes this. Essentially, Pycharm will run applications internally and keep them running for you, so you can do testing or other tasks. Notably, each debugging run will start it's own process - so shutting these down will release resources.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM