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>
The ‘Quick And Dirty’ way is:
sudo lsof -i -P -n | grep 5433
then
kill -9 <the_found_pid>