Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
1 Responder
6071 Visualizações

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

Avatar
Cancelar
Melhor resposta

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
Cancelar

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.

Publicações relacionadas Respostas Visualizações Atividade
1
jan. 24
4797
1
mar. 15
4985
2
jul. 25
875
1
jul. 24
3032
1
fev. 24
1947