如何从 Ubuntu 命令行向 PostgreSQL 添加用户?
How to add a user to PostgreSQL from the Ubuntu command line?
我想添加一个用户并通过 Ubuntu 命令行在 PostgreSQL 中授予它 createdb
权限!我知道这可以通过进入 consul 和 运行 this:
来完成
ALTER USER joe CREATEDB
但我想从 Ubuntu 命令行执行!
使用createuser
.
作为 postgres
OS 用户登录到您的服务器时:
createuser --createdb joe
或者,如果您是其他具有必要 sudo
权限的用户:
sudo -u postgres createuser --createdb joe
查找更多命令行选项 in the manual 或使用:
man createuser
我想添加一个用户并通过 Ubuntu 命令行在 PostgreSQL 中授予它 createdb
权限!我知道这可以通过进入 consul 和 运行 this:
ALTER USER joe CREATEDB
但我想从 Ubuntu 命令行执行!
使用createuser
.
作为 postgres
OS 用户登录到您的服务器时:
createuser --createdb joe
或者,如果您是其他具有必要 sudo
权限的用户:
sudo -u postgres createuser --createdb joe
查找更多命令行选项 in the manual 或使用:
man createuser