postgres命令行下备份 恢复数据库

Backup to Script:

首先切换到postgres用户:
:~$ su postgres
口令: 输入密码
postgres@用户名:/home/用户名$

然后输入backup命令:
pg_dump -U[username] -d -f[way of script file] [database name]
例如:pg_dump -Upostgres -d -f/home/用户名/test.sql testdb

这样数据库testdb将以sql脚本形式backup到/home/用户名/test.sql中。


Restore from Script:

还是首先要切换到postgres用户下,输入命令:
psql -U[username] -d[database name] -f[way to an existing script file]
例如:
psql -Upostgres -dtestdb -f/home/用户名/test.sql

你可能感兴趣的:(postgres)