数据库登录
psql -h '你的ip' -p 5432 -U '用户组' '数据库' 举例: psql -h localhost -p 5432 -U test 2021_12_6
数据库备份恢复命令
psql -h '你的ip' -p 5432 -U '用户组' '要恢复的数据库' -f 'sql文件地址' 举例: psql -h localhost -p 5432 -U test 2021_12_6 -f /home/dump.sql