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

A user inactivated the administrator. How can I activate it again?

Avatar
Discard
Best Answer

Hi..

In Settings > Users > There is a Filters tab. in that there are 'Internal users' and 'Inactive users'. Mark Inactive users True and you can see administrator there. Make it active using the button at top right.

Avatar
Discard
Best Answer

If you have another user with full access right , you can use it to activate the administrator user, by use advance search in user view by field active =False, if you not have this user with this access right you can use Postgres database and open res_users table , and in administrator record set active = True, or just you can run this query in postgres:

update res_users set active = True where login ='admin' 

Avatar
Discard