postgresql数据库备份与还原
备份数据库
$ su - postgres
$ pg_dump testdb > testdb.sql
恢复数据库
$ createdb testdb
$ psql testdb < testdb.sql