İçereği Atla
Menü
Bu soru işaretlendi
1 Cevapla
6099 Görünümler

Possible to move database from windows version to Ubunto installation? How to do?

Avatar
Vazgeç
En İyi Yanıt

I haven't personally done this, but I would imagine you run pg_dump on the current database and save it to a file, then move that database into your target Ubuntu server and import it. You may need to ensure the postgres versions match when importing, but I'm not sure about that. Nobody can be accessing the database when you do this, so OpenERP needs to be shut down and any tools like pgAdmin can't be running.

export on windows cmd line, navigate to the folder pg_dump.exe is sitting in:

pg_dump -C my_database_name -f my_db.sql

import on ubuntu:

psql -U openerp -d postgres -f my_db.sql

openerp is just the name of the database user in postgres on Ubuntu, that depends on your setup but it's a common one to use. The use of -C prepares the dump to create a new database when executing the file in psql.

Avatar
Vazgeç

a '-f' is missing in the export command. In addition, good to mention the username (openpg in my standard windows 8 installation). Thus command is: pg_dump -C -f my_database_name -U username -f my_db.sql

In addition, I tried an export from a French odoo installation to a Debian one () In addition, I add to remove : the LC_COLLATE and the LC_CTYPE of the CREATE database instruction before importing to debian.

İlgili Gönderiler Cevaplar Görünümler Aktivite
1
Oca 24
4851
1
Mar 15
5005
2
Tem 25
906
1
Tem 24
3077
1
Şub 24
1985