Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
6080 Vizualizări

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

Imagine profil
Abandonează
Cel mai bun răspuns

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.

Imagine profil
Abandonează

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.

Related Posts Răspunsuri Vizualizări Activitate
1
ian. 24
4803
1
mar. 15
4986
2
iul. 25
881
1
iul. 24
3042
1
feb. 24
1948