postgres:升级用户成为超级用户?


643

在postgres中,如何将现有用户更改为超级用户?由于各种原因,我不想删除现有用户。

# alter user myuser ...?

Answers:



63

要扩展以上内容并快速参考:

  • 要使用户成为超级用户: ALTER USER username WITH SUPERUSER;
  • 要使用户不再是超级用户: ALTER USER username WITH NOSUPERUSER;
  • 只允许用户创建数据库: ALTER USER username CREATEDB;

您还可以使用CREATEROLECREATEUSER允许用户特权,而无需使其成为超级用户。

文献资料


27

$ su - postgres
$ psql
$ \du;的看到数据库的用户
选择要成为超级用户,并且做用户:
$ ALTER USER "user" with superuser;


在这种情况下,您必须将用户名放在逗号中,例如ALTER USER "user" WITH SUPERUSER;
Carlos.V

9

运行此命令

alter user myuser with superuser;

如果要查看用户的权限,请运行以下命令

\du

8

有时升级到超级用户可能不是一个好的选择。因此,除了超级用户以外,您还可以使用许多其他选项。打开您的终端并输入以下内容:

$ sudo su - postgres
[sudo] password for user: (type your password here)
$ psql
postgres@user:~$ psql
psql (10.5 (Ubuntu 10.5-1.pgdg18.04+1))
Type "help" for help.

postgres=# ALTER USER my_user WITH option

同时列出选项列表

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

所以在命令行中它看起来像

postgres=# ALTER USER my_user WITH  LOGIN

或使用加密的密码。

postgres=# ALTER USER my_user  WITH ENCRYPTED PASSWORD '5d41402abc4b2a76b9719d911017c592';

或在特定时间后撤消权限。

postgres=# ALTER USER my_user  WITH VALID UNTIL '2019-12-29 19:09:00';

4

您可以创建SUPERUSER或升级USER,因此适合您的情况

$ sudo -u postgres psql -c "ALTER USER myuser WITH SUPERUSER;"

或回滚

$ sudo -u postgres psql -c "ALTER USER myuser WITH NOSUPERUSER;"

要防止在设置密码时记录命令,请在命令前面插入一个空格,但要检查系统是否支持此选项。

$  sudo -u postgres psql -c "CREATE USER my_user WITH PASSWORD 'my_pass';"
$  sudo -u postgres psql -c "CREATE USER my_user WITH SUPERUSER PASSWORD 'my_pass';"

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.