PostgresSQL中的template0,template1数据库有什么用?

PostgresSQL中的template0,template1数据库有什么用?

为什么psql template0连接不上,但是template1却可以呢?

信息如下:
psql: FATAL:  Database "template0" is not currently accepting connections      
是数据库的模版,你新创建的数据库就是按它们的样子创建的,一般不要去修改它们。template0是一个只读数据库。template1是可修改的如果修改了它,
你后面创建的数据库都会按修改后的样子创建。      
template0 只读,但是用postgres用户身份怎么不能访问呢
psql template0不被接受呢?      
呵呵,模板文件不许动,这也是为了你的安全嘛。
不过template1里有你更为感兴趣的东西,你可以SELECT * FROM pg_user; 看看,用户在里面。