postgres数据迁移

1.在原数据库:pg_dump -h 【ip】-p 端口 -U 用户 -d 数据库名称> 文件名

pg_dump -h localhost -p 5432 -U postgres -d confluence> confluence.bak

2.目标数据库一定要保证是新建的数据库。将文件拷贝到目标数据库所在的服务器:psql -U 用户名 -d 数据库名称 -f 文件名

psql -U postgres -d postgres -f confluence.bak

成功
postgres数据迁移_第1张图片

你可能感兴趣的:(postgresql)