Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
2801 Переглядів

Hello, how can I back up odoo database from server and restore it to my personal computer using pgadmin? 

Аватар
Відмінити
Найкраща відповідь

Hi,

In the current case, you can directly restore the database from the UI or use terminals


If you restore the dump dile try this code in your terminal


$sudo su postgres

$createdb -O [Owner] [database_name]

$psql [database_name]



dump:

$sudo su postgres

$createdb -O [Owner] [database_name]

$pgrestore -d [database_name] [dumpfile_name].dump


for more reference you can refer to the Blog : 

https://www.cybrosys.com/blog/how-to-restore-a-database-in-odoo-15-erp



automatic datarestore-

https://www.cybrosys.com/blog/how-to-setup-automatic-database-backup-in-odoo-15


Hope it helps

Аватар
Відмінити
Автор

The reason of using pgadmin is because:
1. Im bad at code
2. my odoo server is error and no one know how to resolve it.
So, if i use pgadmin, i just need to right-click the database, create backup using .tar file, right?

Related Posts Відповіді Переглядів Дія
2
трав. 21
2449
3
бер. 15
8394
0
бер. 24
1335
1
бер. 24
7967
4
груд. 17
5241