Dropuser
删除一个Postgresql用户帐户,需要说明的是只有超级用户或带有CREATEROLE权限的用户可以执行该命令,如果要删除超级用户,只能通过超级用户的身份执行该命令。该命令的使用方式如下:
dropuser [option...] [username]
1. 命令行选项列表:
选项 |
说明 |
-e(--echo) |
回显dropuser生成的命令并且把它发送到服务器。 |
-i(--interactive) |
在做任何破坏性动作前提示。 |
-h(--host=host) |
指定Postgresql服务器的主机名。 |
-p(--port=port) |
指定服务器的监听端口,如不指定,则为缺省的5432。 |
-U(--username=username) |
|
-w(--no-password) |
[postgres@localhost ~]$ dropuser -e -i testwjw02 -p 36985
Role "testwjw02" will be permanently removed.
Are you sure? (y/n) y
DROP ROLE testwjw02;
原文链接:https://www.f2er.com/postgresql/193540.html