Conectarse a Postgres por línea de comandos
Ejecutar el siguiente comando con nupode: C:\Program Files\PostgreSQL\12\bin>psql -U postgres para ingresar a postgresql Para configurar acceso remoto: C:\Program Files\PostgreSQL\12\data\postgresql.conf y modificar la siguiente línea y la dejamos asíL listen_addresses = '*' # what IP address(es) to listen on; También se configura el siguiente archivo: pg_hba.conf y buscamos la línea: # IPv4 local connections: host all all 127.0.0.1/32 md5 Para modificarla por: # IPv4 local connections: host all all all md5