Archivo de configuración postgresql.conf
Cambiara la línea
#listen_addresses = 'localhost'
Por
listen_addresses = '*'
Archivo de configuración pg_hba.cong
# Database administrative login by UNIX sockets
local all postgres ident
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all ident
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5
Por:
# Database administrative login by UNIX sockets
local all postgres md5
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all md5
# IPv4 local connections:
host all all 0.0.0.0/0 md5
# IPv6 local connections:
host all all ::1/128 md5
host all all 0.0.0.0 0.0.0.0 md5
Por último basta con reiniciar los servicios de postgres con el comando
#/etc/init.d/postgresql restart
Ahora podremos conectarnos remotamente con nuestro gestor de bases de datos.
No hay comentarios:
Publicar un comentario