While opening query tool via pgadmin, i am getting this error on popup.
Does any one know why this is happening.
While opening query tool via pgadmin, i am getting this error on popup.
Does any one know why this is happening.
try changing your host connection to "127.0.0.1" instead of "localhost" it worked for me
You might consider that another app is using the socket. Or the postgres pg_hba.conf needs to be modified to allow non-local access.
After that, please post again if you have questions.
– Mophilly Feb 06 '20 at 17:04
localhostnot resolve to127.0.0.1, you have a big problem on your hand as almost everything running out there is excepting this name resolution. – Patrick Mevzek Feb 20 '20 at 18:45localhostalso resolves to the IPv6 loopback address::1, while postgres might be configured to listen on127.0.0.1only. – Piotr P. Karwasz Feb 20 '20 at 20:42