[Django]-Error on django runserver – OverflowError: getsockaddrarg: port must be 0-65535

12👍

It looks like you’re trying to run your application on port 80 thousand (80000) where as we only have up to 65 thousand
(65535) ports. Remove one zero and you should be good to go!

Leave a comment