68527/error-port-is-already-in-use-of-django-server
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?
Hii @kartik,
Just type sudo fuser -k 8000/tcp. This should kill all the processes associated with port 8000.
and
For osx users you can use sudo lsof -t -i tcp:8000 | xargs kill -9
Hope this work!!
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
You can try the following in a ...READ MORE
suppose you have a string with a ...READ MORE
You can also use the random library's ...READ MORE
Syntax : list. count(value) Code: colors = ['red', 'green', ...READ MORE
Enumerate() method adds a counter to an ...READ MORE
Hello @kartik, Just type: sudo fuser -k 8000/tcp. This ...READ MORE
Hello @kartik, None, False and True all are available ...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.