我继承了一个 postgres 数据库(我对此几乎没有经验)并试图找到一种转储/备份它的方法。我一直在阅读有关它的文档,并且可以将数据库转储到单独的文件中,但想知道为什么我不能转储template0
.据我了解,这是一种“默认”模板,如果修改,保留它似乎很重要。为什么这不起作用?
test# export PGPASSWORD="xxxxxxx"; for database in `psql --username=postgres --command='\list' -h localhost | grep '^ [a-zA-Z0-9]' | awk '{print $1};'`; do pg_dump -U postgres ${database} > ${database}.sql; done
pg_dump: [archiver (db)] connection to database "template0" failed: FATAL: database "template0" is not currently accepting connections
答案1
template0
在安装 PostgreSQL 时创建,不应包含任何本地修改;应该没有必要对其进行备份。改为进行本地修改template1
。 (看https://www.postgresql.org/docs/current/static/manage-ag-templatedbs.html)。
它失败是因为template0
不允许连接(这是默认设置,以防止意外获得本地修改):
postgres=# select datname, datallowconn from pg_database where datname = 'template0';
datname | datallowconn
-----------+--------------
template0 | f
(1 row)
PS:PostgreSQL 可以设置为使用非密码身份验证,这将使您不必在脚本中输入密码。至少在针对本地实例运行时是这样。
PPS:另外,您可以通过从 pg_database 中进行选择来避免 grep/awk 的混乱:
$ psql postgres -Atc 'select datname from pg_database'
postgres
template0
⋮
template1
test