Город МОСКОВСКИЙ
00:02:34

Change Odoo Admin Pasword From Database Postgresql

Аватар
Базы данных и MySQL Администрирование сервера
Просмотры:
23
Дата загрузки:
08.12.2023 13:00
Длительность:
00:02:34
Категория:
Авто-мото

Описание

if you use docker
#. psql -U odoo -d DB_NAME
to check is
#. select id,login from res_users;
to change id & password and make it active

#. update res_users set password='1',login='1',active=True where id='2';

If you use ubuntu

#. psql -U postgres
#. \c DB_NAME
#. select id,login from res_users;
#. update res_users set password='1',login='1',active=True where id='2';

Рекомендуемые видео