Ive installed PostgreSQL on my windows 7 (professional - service pack 1) machine (using the postgresql-9.1.8-2-windows-x64.exe)
Im now trying to run my rails project (via Webrick port 3000) but unfortunately i get the following error:
Any ideas?
Ive installed PostgreSQL on my windows 7 (professional - service pack 1) machine (using the postgresql-9.1.8-2-windows-x64.exe)
Im now trying to run my rails project (via Webrick port 3000) but unfortunately i get the following error:
Any ideas?
Connection refused means you got back an ICMP error when you tried to connect. Windows does not support UNIX Domain Sockets so your connection is over TCP/IP.
To troubleshoot this issue try the following steps:
psql on the server in question. If it fails, make sure PostgreSQL is running etc.
pgAdmin from the server running webrick. If it fails, make sure PostgreSQL is running, and that firewalls are disabled.
Disable firewalls, check firewall logs, event viewer, service status, etc. Try turning off firewalls (including Windows Firewall). Test.