- Code: Select all
error: [Errno 98] Address already in use
To find out what process is listening on a specific port, I did this:
- Code: Select all
netstat -tulpn
I got this:
- Code: Select all
tcp 34 0 0.0.0.0:5050 0.0.0.0:* LISTEN 20362/python
What does it mean? No other application that uses python other than Couchpotato itself is listening to port 5050. But Couchpotato isn't running while typing this...
//edit
I killed this process python (forced) and CP would run fine again, by starting it via package manager...
- Code: Select all
kill -9 20362
But still, can anyone explain why this happened? Are there multiple processes of python running for CP and did one of them fail or what?







