“Olvidé la contraseña de Postgres” Código de respuesta

Cómo restablecer la contraseña de Postgresql olvidada

# sudo -u postgres psql
could not change directory to "/root"
psql (9.1.11)
Type "help" for help.

postgres=# \password
Enter new password:
Enter it again:
postgres=# \q
Smiling Snake

restablecer la contraseña de Postgres Windows

Backup the pg_hba.conf file by copying it.
Edit the pg_dba.conf, change `METHOD` to 'trust'
Restart the PostgreSQL server.
psql -U postgres.
ALTER USER postgres WITH PASSWORD 'new_password';
Restore the pg_dba.conf file.
Restart the PostgreSQL server.
David Diamant

Olvidé la contraseña que ingresé durante la instalación de Postgres

What I did to resolve the same problem was:

Open pg_hba.conf file with gedit editor from the terminal:

sudo gedit /etc/postgresql/9.5/main/pg_hba.conf
It will ask for password. Enter your admin login password. This will open gedit with the file. Paste the following line:

host  all   all  127.0.0.1/32  trust
just below -

# Database administrative login by Unix domain socket
Save and close it. Close the terminal and open it again and run this command:

psql -U postgres
You will now enter the psql console. Now change the password by entering this:

ALTER USER [your prefered user name] with password '[desired password]';
If it says user does not exist then instead of ALTER use CREATE.

Lastly, remove that certain line you pasted in pg_hba and save it.

Old-fashioned Ostrich

restablecer la contraseña de postgre

$ sudo -u postgres psql

Then type

# ALTER USER my_user_name with password 'my_secure_password';
Tanishq Vyas

Cómo restablecer la contraseña de Postgres

sudo sed -ibak 's/^\([^#]*\)md5/\1trust/g' /opt/bitnami/postgresql/conf/pg_hba.conf
sudo -u postgres pg_ctl reload
Itchy Ibis

Olvidé la contraseña de Postgres

psql -U postgres
Davidosky

Respuestas similares a “Olvidé la contraseña de Postgres”

Preguntas similares a “Olvidé la contraseña de Postgres”

Más respuestas relacionadas con “Olvidé la contraseña de Postgres” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código