Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/07/2014, 09:19
phpdevelopment
 
Fecha de Ingreso: mayo-2011
Mensajes: 256
Antigüedad: 13 años
Puntos: 5
Conexion remota pgadmin postgress

Hola

No consigo conectarme remotamente desde mi equipo local.

FATAL: no pg_hba.conf entry for host "172.16.3.150", user "xxx", database "postgres"

Alguien puede ayudarme con la configuración en windows. El config es este:

Código:
listen_addresses = '*'
port = 5432

# TYPE  DATABASE        USER            ADDRESS                 METHOD

# IPv4 local connections:
host    all             all             127.0.0.1/32            md5
# IPv6 local connections:
host    all             all             ::1/128                 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
#host    replication     postgres        127.0.0.1/32            md5
#host    replication     postgres        ::1/128                 md5
#host all all 127.0.0.1/32 md5
#host all all 192.168.0.0/24 md5
host    all             all             172.16.3.150/24          md5

#host    postgres        all             192.168.0.0/24        md5
#host    all             all             127.0.0.1/32            trust
Saludos