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
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;
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up