Paul Schale
10/28/2021, 11:43 PMError response from daemon: Ports are not available: listen tcp 127.0.0.1:5432: bind: address already in use
. I’ve tried restarting the computer, reinstalling docker desktop, and making a fresh conda environment with a fresh installation of prefect, but the error persists. When I run lsof -i:5432
, I get no output. Any ideas for next troubleshooting steps?Jake Kaplan
10/29/2021, 12:06 AM~ brew services
Name Status User Plist
postgresql started jakekaplan /Users/jakekaplan/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
And I get your same error if I do not stop postgres since it defaults to 5432
Paul Schale
10/29/2021, 4:00 PM$ brew services list
Name Status User Plist
emacs stopped
postgresql stopped
prefect server start --postgres-port 5433
worksJake Kaplan
10/29/2021, 7:21 PM