Skip to Content
Menu
This question has been flagged
2 Replies
2262 Views

im using odoo15 that ive installed from github code souce

i cant log in in (localhost:8069) it says Wrong login/password  even tho my user and password are correct 

i have two question:

1-what user and password should i log in with ?

2- anyone has a solution or please!!

Avatar
Discard
Author Best Answer

can u answer me on email pls

Avatar
Discard
Best Answer

Please note that, the login email and password are case sensitive. 

If you forgot the login email or password  and you have access to DB, You can run select query in res_users table as below:

Select * from res_users

You will find all users in the system then you can update the password for the user you want by getting his id from above query results as below:




update res_users set password="NEW_PASSWORD"
Where id = [ID_OF_THE_USER]

You can get  ID_OF_THE_USER from the id field of the first select query.

Avatar
Discard