企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
createuser 创建一个新的 PostgreSQL 用户. 使用方法:   createuser [选项]... [用户名] 选项:   -c, --connection-limit=N  角色的连接限制(缺省: 没有限制)   -d, --createdb            此角色可以创建新数据库   -D, --no-createdb         role cannot create databases (default)   -e, --echo                显示发送到服务端的命令   -E, --encrypted           口令加密存储   -i, --inherit            角色能够继承它所属角色的权限                    (这是缺省情况)   -I, --no-inherit          角色不继承权限   -l, --login              角色能够登录(这是缺省情况)   -L, --no-login            角色不能登录   -N, --unencrypted         口令不加密存储   -P, --pwprompt            给新角色指定口令   -r, --createrole        这个角色可以创建新的角色   -R, --no-createrole       role cannot create roles (default)   -s, --superuser          角色将是超级用户   -S, --no-superuser        role will not be superuser (default)   -V, --version             output version information, then exit   --interactive             prompt for missing role name and attributes rather                             than using defaults   --replication             role can initiate replication   --no-replication          role cannot initiate replication   -?, --help                show this help, then exit 联接选项:   -h, --host=HOSTNAM        数据库服务器所在机器的主机名或套接字目录   -p, --port=PORT           数据库服务器端口号   -U, --username=USERNAME   联接用户 (不是要创建的用户名)   -w, -no-password         永远不提示输入口令   -W, --password            强制提示输入口令 臭虫报告至 <[pgsql-bugs@postgresql.org](#)>.