Hi. Can somebody help me? it turns out that deactivating users deactivates the managed user and now I can not enter with this user and is the only one with all the privileges. I have access to root (super user). How do I activate the Admin?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
Please be aware that deactivating users does not deactivate the admin account. Only deactivating the admin account does deactivate the admin account.
You can try to reactivate the admin user (user with ID 1) directly in the database:
~$ sudo su postgres
~$ psql
postgres=# \connect Your_Database_Name
You are now connected to database "Your_database_Name" as user "postgres"
YOurDatabase_Name=# UPDATE res_users SET active=True WHERE id=1;
This should do the trick.
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