I'm having trouble connecting to the database for my Rails app using pgAdmin. I have the server running and I believe that my server properties are correct in pgAdmin. Here's what I have in pgAdmin server properties:
Name: achievenext_dev
Host: localhost
port: 3000
SSL:
Maintenance DB: postgres
username: achievenext
password: ******
Store password: true
Restore env?: true
DB Restriction:
Service:
Connect now: true
And in my database.yml file:
development:
adapter: postgresql
host: localhost
username: achievenext
password: ******
database: achievenext_dev
But when I try to connect pgAdmin returns this error:
An error has occurred:
Error connecting to the server: server closed the connection unexpectedly. This probably means the server terminated abnormally before or while processing the request.
But there are no errors on my server. It appears to be running fine. Can't figure out what I'm doing wrong here.
Specify the “Port” as “5432”. Enter the name of the database in the “Database Maintenance” field. Enter your username as postgres and password (use the same password you used when previously configuring the server to accept remote connections) for the database. Click “Save” to apply the configuration.
Try adding a port to your development.yml
file. Especially if you run a windows OS.
The default port is port:5432
and I'm not sure if specifying the port:3000
in your pgAdminIII would cause problems.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With