73495/django-server-error-port-is-already-in-use
Restarting the Django server displays the following error:
this port is already running....
This problem occurs specifically on Ubuntu and not other operating systems.
How can I free up the port to restart the server?
Hello @kartik,
Just type:
sudo fuser -k 8000/tcp.
This should kill all the processes associated with port 8000.
For osx users you can use sudo lsof -t -i tcp:8000 | xargs kill -9
Hope it helps!!
Thank You!!
Hey, all the tools that you have ...READ MORE
Polymorphism is the ability to present the ...READ MORE
raw_input fuction is no longer available in ...READ MORE
raw_input is not supported anymore in python3. ...READ MORE
Hello @kartik, You can resolved this by the ...READ MORE
Hello @kartik, The related_name attribute specifies the name of the ...READ MORE
Hiii @kartik, You can use self.data in the clean_email method to access ...READ MORE
Hi, there is only that way and ...READ MORE
Hii @kartik, Just type sudo fuser -k 8000/tcp. This ...READ MORE
Hello @kartik, You can use the following code: if ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.