By neildaemond, an 'any-stack' hacking grasshopper.
Taking notes while tinkering with:
Quick and dirty fix of 'listen tcp 0.0.0.0:5433: bind: address already in use'
Fri, Aug 23, 2019 in /quick-tips/
The ‘Quick And Dirty’ way is:
sudo lsof -i -P -n | grep 5433
then
kill -9 <the_found_pid>
I’m sure there is a more elegent way to do this. I’ll update when I find it.
#Bind #Kill #Lsof