Reputation: 393
guys while installing posqresql I got those 2 error message
and when I clicked ok then the second error message displayed on my screen
and now when I try to connect with my DB using my terminal or git bash I got another error message which is
So, what could I do to solve this problem?
please note that I have tried to re-install postgres
Upvotes: 1
Views: 325
Reputation: 470
Try these and let us know the results;
netstat -an | find /I "5432"
pg_isready
psql -U postgres
Upvotes: 1