Skip to Content

Welcome!

This community is for professionals and enthusiasts of our products and services. Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.

This question has been flagged
1 Reply
40 Views
Author Best Answer

Generate a new password and copy into command below : http://passwordsgenerator.net/

NOTE: for odoo7 just set the password, the hash is not needed

python -c "from passlib.context import CryptContext; print CryptContext(['pbkdf2_sha512']).encrypt('PASS')"

.

sudo -u postgres psql postgres
\list

\c <datbase_name>

replace HASH with new generated HASH

SELECT password, password_crypt from res_users where id=1;

UPDATE res_users SET password='', password_crypt='HASH' WHERE id=1;

UPDATE res_users SET password='' WHERE id=1;





Avatar
Discard