忘记后台登录密码
# 生成加密的密码
from passlib.context import CryptContext
print CryptContext(['pbkdf2_sha512']).encrypt('MY_PASSWORD')
# 进入数据库(以默认 odoo 为例)
sudo su - postgres
\c odoo
# 更新密码(假设用户 id 为 1,可通过select进行查询)
update res_users set password_crypt='your new password hash' where id=1
我的昵称:维度WeDo
我的主页:https://www.jianshu.com/u/c902b6d388b6
我的简介:号称是个技术工程师但是从没有深入的学习技术,都是停留在知其然上面,对其所以然研究甚少,以后通过这里学习和记录其所以然。
网友评论