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
成功
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
成功