PostgreSQL的用户到底是这么回事?新建用户怎样才能用密码登陆?

Tags: postgre  database 

目录

说明

PostgreSQL数据库的用法和MySQL很不一样,新创建的用户的创建要和pg_hba.conf中的配置对应才能成功登陆。很多人在这个地方卡壳,用Google或者Baidu搜索到一些资料,说得也不清楚。这里特别阐述一下。

PostgresSQL数据库的基本使用——新手入门

PostgreSQL的用户到底是这么回事?新建用户怎样才能用密码登陆?

User与Role

创建用户使用的是PostgreSQL的CREATE USER命令。在CREATE USER的命令手册中有这样一个说明:

CREATE USER is now an alias for CREATE ROLE. 
The only difference is that when the command is spelled CREATE USER, LOGIN is assumed by default,
whereas NOLOGIN is assumed when the command is spelled CREATE ROLE.

首先记住一点:创建User就是在创建Role

那么PostgreSQL的Role是什么?

PostgreSQL Documentation: Database Roles中有五节关于role的内容。简单说在PostgreSQL中权限控制的目标是Role,这个Role相当于MySQL中的用户。

可以为Role设置多种属性,控制Role能够执行的操作,这些属性可以在创建的时候指定,PostgreSQL SQL Commands: CREATE ROLE:

CREATE ROLE name [ [ WITH ] option [ ... ] ]

where option can be:

      SUPERUSER | NOSUPERUSER
    | CREATEDB | NOCREATEDB
    | CREATEROLE | NOCREATEROLE
    | CREATEUSER | NOCREATEUSER
    | INHERIT | NOINHERIT
    | LOGIN | NOLOGIN
    | REPLICATION | NOREPLICATION
    | CONNECTION LIMIT connlimit
    | [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password'
    | VALID UNTIL 'timestamp'
    | IN ROLE role_name [, ...]
    | IN GROUP role_name [, ...]
    | ROLE role_name [, ...]
    | ADMIN role_name [, ...]
    | USER role_name [, ...]
    | SYSID uid

也可以创建后,用alter修改,PostgreSQL SQL Commands: ALTER ROLE

ALTER ROLE name [ [ WITH ] option [ ... ] ]

where option can be:

      SUPERUSER | NOSUPERUSER
    | CREATEDB | NOCREATEDB
    | CREATEROLE | NOCREATEROLE
    | CREATEUSER | NOCREATEUSER
    | INHERIT | NOINHERIT
    | LOGIN | NOLOGIN
    | REPLICATION | NOREPLICATION
    | CONNECTION LIMIT connlimit
    | [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password'
    | VALID UNTIL 'timestamp'

ALTER ROLE name RENAME TO new_name

ALTER ROLE name [ IN DATABASE database_name ] SET configuration_parameter { TO | = } { value | DEFAULT }
ALTER ROLE name [ IN DATABASE database_name ] SET configuration_parameter FROM CURRENT
ALTER ROLE name [ IN DATABASE database_name ] RESET configuration_parameter
ALTER ROLE name [ IN DATABASE database_name ] RESET ALL

这些属性当中有一个名字为LOGIN的属性,只有拥有这个属性的Role才能登陆PostgreSQL。

CREATE USER创建的就是一个带有LOGIN属性的Role

CREATE USER name [ [ WITH ] option [ ... ] ]

where option can be:

      SUPERUSER | NOSUPERUSER
    | CREATEDB | NOCREATEDB
    | CREATEROLE | NOCREATEROLE
    | INHERIT | NOINHERIT
    | LOGIN | NOLOGIN
    | REPLICATION | NOREPLICATION
    | BYPASSRLS | NOBYPASSRLS
    | CONNECTION LIMIT connlimit
    | [ ENCRYPTED ] PASSWORD 'password'
    | VALID UNTIL 'timestamp'
    | IN ROLE role_name [, ...]
    | IN GROUP role_name [, ...]
    | ROLE role_name [, ...]
    | ADMIN role_name [, ...]
    | USER role_name [, ...]
    | SYSID uid

也正是因为如此,\du命令看到的都是Role

postgres=# \du
                              List of roles
  Role name  |                   Attributes                   | Member of
-------------+------------------------------------------------+-----------
 local_user1 |                                                | {}
 postgres    | Superuser, Create role, Create DB, Replication | {}

带有LOGIN的属性的Role是否就一定能成功登陆呢?不是!请继续往下看。

pg_hba.conf对认证方式的限制

PostgreSQL中用pg_hba.conf文件控制用户登陆时的认证方式,这个文件和数据库的数据文件在同一个目录中。 在CentOS7中的位置是/var/lib/pgsql/data/pg_hba.conf

pg_hba.conf文件内容如下:

# "local" is for Unix domain socket connections only
local   all             all                                     peer
# IPv4 local connections:
host    all             all             127.0.0.1/32            ident
# IPv6 local connections:
host    all             all             ::1/128                 ident

它的语法规则是这样的:

local      database  user  auth-method  [auth-options]
host       database  user  address  auth-method  [auth-options]
hostssl    database  user  address  auth-method  [auth-options]
hostnossl  database  user  address  auth-method  [auth-options]
host       database  user  IP-address  IP-mask  auth-method  [auth-options]
hostssl    database  user  IP-address  IP-mask  auth-method  [auth-options]
hostnossl  database  user  IP-address  IP-mask  auth-method  [auth-options]

第一列是连接的方式,local是通过本地的unix socket连接,host是通过IP地址连接。

第二列是目标数据库,第三列是用户。

最后一列是认证方式,总共支持11种认证方式(2018-09-29 10:04:36):

20.3.1. Trust Authentication
20.3.2. Password Authentication
20.3.3. GSSAPI Authentication
20.3.4. SSPI Authentication
20.3.5. Ident Authentication
20.3.6. Peer Authentication
20.3.7. LDAP Authentication
20.3.8. RADIUS Authentication
20.3.9. Certificate Authentication
20.3.10. PAM Authentication
20.3.11. BSD Authentication

其中最常接触到的是peeridentpaasword

address样式是127.0.0.1/32::1/128,如果要表示任意IP,使用0.0.0.0/0::0/0

提前填坑:如果同时匹配了pg_hba.conf中的多个规则,选用第一个

如果登陆操作同时满足pg_hba.conf中的多个规则,会出现什么情况?

例如配置文件如下时,用户kong登陆名为kong数据库时,使用哪种认证方式?

试验发现,会选择第一个匹配的规则,上面的配置中会选用ident的方式,如果要使用md5方式,要调整规则顺序:

host    kong            kong            127.0.0.1/32            md5
host    all             all             127.0.0.1/32            ident

这是一个很隐蔽的坑,一定要注意。

Peer和Ident认证: 使用操作系统上的用户登陆

上一节给出的pg_hba.conf配置中的第一项设置的意思是:本地用户通过unix socket登陆时,使用peer方式认证。

# "local" is for Unix domain socket connections only
local   all             all                                     peer

peer是用PostgreSQL所在的操作系统上的用户登陆。

peer方式中,client必须和PostgreSQL在同一台机器上。只要当前系统用户和要登陆到PostgreSQL的用户名相同,就可以登陆。

在刚部署PostgreSQL之后,切换到系统的postgres用户后,直接执行psql就能进入PostgreSQL就是这个原因(当前系统用户为名postgre,PostgreSQL中的用户名也是postgre)。

上一节给出的pg_hba.conf配置中的后两项,第一列是host,表示通过IP地址访问时,使用ident认证:

# IPv4 local connections:
host    all             all             127.0.0.1/32            ident
# IPv6 local connections:
host    all             all             ::1/128                 ident

ident与peer类似,不过peer只能在PostgreSQL本地使用,ident则可以跨主机使用。

需要注意,host方式需要在通过psql登陆时,用-h指定要登陆的postgreSQL的IP,如果不指定IP,默认使用的unix socket。

host方式,即使在PostgreSQL本地登陆,也要用-h指定IP地址:-h 127.0.0.1

Peer方式演示

在PostgreSQL中创建一个没有密码的用户:

create user local_user1;

在PostgreSQL所在的机上,创建一个同名的用户:

useradd local_user1;

切换到local_user1用户后,就可以直接通过unix_socket登陆PostgreSQL:

# su - local_user1
[local_user1@10 ~]$ psql postgres     
psql (9.2.24)
Type "help" for help.

postgres=>

注意:要指定数据库名,如果不指定默认使用与用户同名的数据库。

peer和ident这两种方式都不是常用的方式!最常用的方式是通过密码远程登陆。

password提供这样的功能,见下一节。

密码认证:使用PostgreSQL的用户(Role)和密码登陆

password认证分为三种方式:

scram-sha-256
md5
password

这三种方式都用密码认证,区别是密码在PostgreSQL上存储的形式和登陆时密码的传输形式。

scram-sha-256md5分别用sha-256和md5算法对设置的密码进行保护,传输和保存的都是难以逆向破解的散列字符串,password方式传输和保存的则都是原始的明文密码。

无论使用哪种方式,都需要在pg_hba.conf中设置:

# "local" is for Unix domain socket connections only
local   all             all                                     peer
# IPv4 local connections:
host    all             all             127.0.0.1/32            md5
# IPv6 local connections:
host    all             all             ::1/128                 md5

上面配置中的后两项,将通过IP连接时的登陆方式修改为md5(修改pg_hba.conf之后,要重启PostgreSQL,新的配置文件才能生效),表示用密码进行认证。

修改了认证方式之后,还要为用户(Role)设置密码,密码可以在创建用户(Role)的时候就设置:

CREATE USER name [ [ WITH ] option [ ... ] ]

where option can be:
...
    | [ ENCRYPTED ] PASSWORD 'password'
...


CREATE ROLE name [ [ WITH ] option [ ... ] ]

where option can be:
...
    | [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password'
...

也可以创建后用alter修改:

ALTER ROLE name [ [ WITH ] option [ ... ] ]

where option can be:

      SUPERUSER | NOSUPERUSER
    | CREATEDB | NOCREATEDB
    | CREATEROLE | NOCREATEROLE
    | CREATEUSER | NOCREATEUSER
    | INHERIT | NOINHERIT
    | LOGIN | NOLOGIN
    | REPLICATION | NOREPLICATION
    | CONNECTION LIMIT connlimit
    | [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password'
    | VALID UNTIL 'timestamp'

ALTER ROLE name RENAME TO new_name

ALTER ROLE name [ IN DATABASE database_name ] SET configuration_parameter { TO | = } { value | DEFAULT }
ALTER ROLE name [ IN DATABASE database_name ] SET configuration_parameter FROM CURRENT
ALTER ROLE name [ IN DATABASE database_name ] RESET configuration_parameter
ALTER ROLE name [ IN DATABASE database_name ] RESET ALL

在为Role设置密码的时候,可以指定密码是否加密存储:

[ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password'

如果没有指定,则根据配置的password_encryption参数决定,默认是加密的。

Create User是没有UNENCRYPTED选项的,只能使用加密或者默认方式:

create user user1 with encrypted password '123';     //加密
create user user1 with password '123';               //默认

在pg_hda.conf中设置了密码认证,并在PostgreSQL中创建了有密码的用户(Role)之后,就可以通过用户名(Role)和密码登陆了:

psql -h 127.0.0.1 -U user_password1  postgres -W

注意,必须用-h指定IP,否则就用unix socket链接,使用peer的方式认证了。

pg_hba.conf中配置的认证方式和实际登陆方式不匹配,则会登陆失败。

例如当pg_hda.conf中配置的是:

host    all             all             127.0.0.1/32           ident

这时候登陆,会提示认证失败:

$ psql -h 127.0.0.1  -U user_password1  postgres -W
Password for user user_password1:
psql: FATAL:  Ident authentication failed for user "user_password1"

注意:修改了pg_hba.conf之后,需要重启PostgreSQL,才会应用新配置。

为不同数据库、不同用户设置不同的认证方式

pg_hba.conf的语法规则是这样的:

local      database  user  auth-method  [auth-options]
host       database  user  address  auth-method  [auth-options]
hostssl    database  user  address  auth-method  [auth-options]
hostnossl  database  user  address  auth-method  [auth-options]
host       database  user  IP-address  IP-mask  auth-method  [auth-options]
hostssl    database  user  IP-address  IP-mask  auth-method  [auth-options]
hostnossl  database  user  IP-address  IP-mask  auth-method  [auth-options]

可以分别为某个数据库、某个用户、某个来源IP指定认证方式,例如:

host       postgre  user  10.10.10.1/24 password

可以自行实验。

参考

  1. PostgreSQL SQL Commands:CREATE USER
  2. PostgreSQL 9.1.24 Documentation: Database Roles
  3. PostgreSQL SQL Commands: CREATE ROLE
  4. PostgreSQL SQL Commands: ALTER ROLE
  5. PostgreSQL: The pg_hba.conf File
  6. PostgreSQL: Authentication Methods
  7. PostgreSQL SQL Commands: ALTER ROLE
  8. PostgreSQL数据库的基本使用

推荐阅读

Copyright @2011-2019 All rights reserved. 转载请添加原文连接,合作请加微信lijiaocn或者发送邮件: [email protected],备注网站合作

友情链接:  系统软件  程序语言  运营经验  水库文集  网络课程  微信网文  发现知识星球