| PostgreSQL Reference Manual - Volume 3 - Server Administration Guide by The PostgreSQL Global Development Group Paperback (6"x9"), 204 pages ISBN 0954612043 RRP £13.95 ($24.95) Sales of this book support the PostgreSQL project! Get a printed copy>>> |
5.2 Role Attributes
A database role may have a number of attributes that define its privileges and interact with the client authentication system.
- login privilege
-
Only roles that have the
LOGINattribute can be used as the initial role name for a database connection. A role with theLOGINattribute can be considered the same thing as a “database user”. To create a role with login privilege, use eitherCREATE ROLE name LOGIN; CREATE USER name;
(CREATE USERis equivalent toCREATE ROLEexcept thatCREATE USERassumesLOGINby default, whileCREATE ROLEdoes not.) - superuser status
-
A database superuser bypasses all permission checks. This is a
dangerous privilege and should not be used carelessly; it is best
to do most of your work as a role that is not a superuser.
To create a new database superuser, use
CREATE ROLE name SUPERUSER. You must do this as a role that is already a superuser. - database creation
-
A role must be explicitly given permission to create databases
(except for superusers, since those bypass all permission
checks). To create such a role, use
CREATE ROLE name CREATEDB. - role creation
-
A role must be explicitly given permission to create more roles
(except for superusers, since those bypass all permission
checks). To create such a role, use
CREATE ROLE name CREATEROLE. A role withCREATEROLEprivilege can alter and drop other roles, too, as well as grant or revoke membership in them. However, to create, alter, drop, or change membership of a superuser role, superuser status is required;CREATEROLEis not sufficient for that. - password
-
A password is only significant if the client authentication
method requires the user to supply a password when connecting
to the database. The
password,md5, andcryptauthentication methods make use of passwords. Database passwords are separate from operating system passwords. Specify a password upon role creation withCREATE ROLE name PASSWORD 'string'.
A role's attributes can be modified after creation with
ALTER ROLE.
See the reference pages for the CREATE ROLE and ALTER ROLE commands for details.
Tip: It is good practice to create a role that has the
CREATEDBandCREATEROLEprivileges, but is not a superuser, and then use this role for all routine management of databases and roles. This approach avoids the dangers of operating as a superuser for tasks that do not really require it.
A role can also have role-specific defaults for many of the run-time configuration settings described in section 4 Server Configuration. For example, if for some reason you want to disable index scans (hint: not a good idea) anytime you connect, you can use
ALTER ROLE myname SET enable_indexscan TO off;
This will save the setting (but not set it immediately). In
subsequent connections by this role it will appear as though
SET enable_indexscan TO off; had been executed
just before the session started.
You can still alter this setting during the session; it will only
be the default. To remove a role-specific default setting, use
ALTER ROLE rolename RESET varname;.
Note that role-specific defaults attached to roles without
LOGIN privilege are fairly useless, since they will never
be invoked.
| ISBN 0954612043 | PostgreSQL Reference Manual - Volume 3 - Server Administration Guide | See the print edition |