Connect Heroku postgres from localclient

1

I'm trying to connet with

psql -h ec2-23-23-227-54.compute-1.amazonaws.com -U igcmskkpsx igcmskkpsx

but it answer:

psql: no se pudo conectar con el servidor: Connection timed out (0x0000274C/10060)
        ¿Está el servidor en ejecución en el servidor «ec2-23-23-227-54.compute-1.amazonaws.com» y aceptando
        conexiones TCP/IP en el puerto 5432?

Please any suggestion?

postgresql
heroku
asked on Stack Overflow May 18, 2012 by Javier Gutierrez • edited May 18, 2012 by a_horse_with_no_name

2 Answers

2

Heroku dosen't allow access from an external client while the account is free; I had to use the cleanMysql plugin to access from my local navicat

answered on Stack Overflow Jun 4, 2012 by Javier Gutierrez
0

You may need to specify the port with -P porthere when connecting if its not runnin gon the default port.

answered on Stack Overflow May 19, 2012 by CraigKerstiens

User contributions licensed under CC BY-SA 3.0