Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
4799 มุมมอง

if i forgot my login password means how do i know my password?

did any module is for that?

อวตาร
ละทิ้ง
ผู้เขียน

If password is encrypted how can i get or reset my password through odoo login screen itself? as like forgot password option

คำตอบที่ดีที่สุด

Several Options:

  • There is a 'Send reset password link'-button in Settings / Users / Users.
    Your admin can trigger that button for you. (I would recommend this)
  • Your admin can manually change your password to a temporary one, using the 'More'-dropdown menu in Settings / Users / Users.
  • You could enter the database and check your password. It's not encrpyted there.

 

Regards.

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

If you have access to the database, you can read it with the following SQL query:

select password from res_users where login='admin';

Reference: https://www.odoo.com/forum/Help-1/question/How-i-can-get-back-my-lost-password--147

อวตาร
ละทิ้ง

What if the password is encrypted?