PostgreSQL数据库安装部署(4)

postgres=#
postgres=# \l    #查看数据库列表
                                  List of databases
  Name    |  Owner  | Encoding |  Collate  |    Ctype    |  Access privileges 
-----------+----------+----------+-------------+-------------+-----------------------
 name      | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 |
 postgres  | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 |
 template0 | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
          |          |          |            |            | postgres=CTc/postgres
 template1 | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
          |          |          |            |            | postgres=CTc/postgres
(4 rows)

postgres=#
postgres=# create user test superuser password '123456';    #创建用户及密码
CREATE ROLE
postgres=#

到此就大致部署完了。

Linux公社的RSS地址https://www.linuxidc.com/rssFeed.aspx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/15dd67eb13e2cd9f8fd027e133d9cf53.html