Khandakhulu
Khandakhulu

Reputation: 371

pgAdmin tools for postgreSQL cannot connect to PostgreSQL on a Windows 10 local machine

I have just installed PostgreSQL 10 on a Windows 10 machine. When I start pgAdmin version 4 i get an error namely "The application server could not be contacted". I have also noted that the "postgresql-x64-10 - PostgreSQL Server 10" service fails to start when I try and start it under services.

Upvotes: 0

Views: 139

Answers (1)

Nikhil Mane
Nikhil Mane

Reputation: 41

By typing

netstat -aon

in cmd prompt you get the PIDs of processes working and also on which port they are

simply search for the process allocated to port 5432. since, postgresql installation is commonly installed on that port.

end the task from the details tab of task manager by clicking on PID to arrange them ascending or descending.

then try running pgadmin. it surely works then

Upvotes: 0

Related Questions