Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
6082 Vistas

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

Avatar
Descartar
Mejor respuesta

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
Descartar

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.

Publicaciones relacionadas Respuestas Vistas Actividad
1
ene 24
4804
1
mar 15
4987
2
jul 25
881
1
jul 24
3042
1
feb 24
1949