createuser
Creates a new database role.
Synopsis
createuser [<connection_options>] [<role_attribute_options>] [-e | --echo] <role_name>
createuser --help
createuser --version
where:
<connection_options> =
[-h <host> | --host <host>]
[-p <port> | -- port <port>]
[-U <username> | --username <username>]
[-W | --password]
<role_attribute_options> =
[-c <number> | --connection-limit <number>]
[(-D | --no-createdb) | (-d | --createdb)]
[(-E | --encrypted) | (-N | --unencrypted)]
[(-i | --inherit) | (-I | --no-inherit)]
[(-l | --login) | (-L | --no-login)]
[-P | --pwprompt]
[(-r | --createrole) | (-R | --no-createrole)]
[(-s | --superuser) | -S | --no-superuser]
Description
createuser
creates a new HAWQ role. You must be a superuser or have the CREATEROLE
privilege to create new roles. You must connect to the database as a superuser to create new superusers.
Superusers can bypass all access permission checks within the database, so superuser privileges should not be granted lightly.
createuser
is a wrapper around the SQL command CREATE ROLE
.
Arguments
Options
createuser
generates and sends to the server.<role_attribute_options>
createuser
will issue a prompt for the password of the new role. This is not necessary if you do not plan on using password authentication.CREATEROLE
privilege).<connection_options>
PGHOST
or defaults to localhost.PGPORT
or defaults to 5432.PGUSER
or defaults to the current system role name..pgpass
file, the connection attempt will fail. This option can be useful in batch jobs and scripts where no user is present to enter a password.Other Options
Examples
Create a role named joe
using the default options:
$ createuser joe
Shall the new role be a superuser? (y/n) n
Shall the new role be allowed to create databases? (y/n) n
Shall the new role be allowed to create more new roles? (y/n) n
CREATE ROLE
To create the same role joe
using connection options and avoiding the prompts and taking a look at the underlying command:
$ createuser -h masterhost -p 54321 -S -D -R -e joe
CREATE ROLE joe NOSUPERUSER NOCREATEDB NOCREATEROLE INHERIT
LOGIN;
CREATE ROLE
To create the role joe
as a superuser, and assign password admin123
immediately:
$ createuser -P -s -e joe
Enter password for new role: admin123
Enter it again: admin123
CREATE ROLE joe PASSWORD 'admin123' SUPERUSER CREATEDB
CREATEROLE INHERIT LOGIN;
CREATE ROLE
In the above example, the new password is not actually echoed when typed, but we show what was typed for clarity. However the password will appear in the echoed command, as illustrated if the -e
option is used.