This page give an overview of CockroachDB's security features for authenticating the identity of SQL users attempting to connect to the cluster.
Instead, you might be looking for:
- Logging in to the CockroachDB Cloud web console.
- Accessing the DB console on CockroachDB self-hosted clusters.
Authentication configuration
CockroachDB allows fine-grained configuration of which database connection attempts it allows to proceed to the authentication stage, and which authentication methods it accepts, based on:
- Who is making the attempt (SQL user).
- Where on the internet (IP Address) the attempt is coming from.
CockroachDB's authentication behavior is configured using a domain-specific language (DSL) called host-based authentication (HBA). HBA syntax is shared with PostgreSQL.
A specific CockroachDB cluster's authentication behavior is configured by setting its server.host_based_authentication.configuration
cluster setting, using the SET CLUSTER SETTING
statement, which accepts a single text field that must be a correctly formatted HBA manifest. Inspect the current setting with SHOW CLUSTER SETTING
.
Supported authentication methods
Authentication Method | CockroachDB Cloud | CockroachDB self-hosted | CockroachDB Enterprise |
---|---|---|---|
password | ✓ | ✓ | ✓ |
username/password combination | ✓ | ✓ | ✓ |
SCRAM-SHA-256 | ✓ | ✓ | ✓ |
certificate | ✓ | ✓ | ✓ |
GSS | ✓ |
All options also support the following no-op 'authentication methods', which do not perform authentication:
reject
: unconditionally rejects the connection attempt.trust
: unconditionally accepts the connection attempt.
HBA configuration syntax
Each line of a Host-based Authentication (HBA) configuration manifest defines a rule. Lines commented with #
are ignored.
For example, the following naive configuration has three rules:
- User
ceo
can connect to the database from a known IP address without a password. - User
sabateur
cannot connect from anywhere. - All users (including
ceo
but notsabateur
) can connect from anywhere using a password.
# TYPE DATABASE USER ADDRESS METHOD
host all ceo 555.123.456.789/32 trust
host all saboteur all reject
host all all all password
Each rule definition contains up to 6 values.
- Each line must begin with a connection TYPE. CockroachDB currently supports two connection types:
local
host
(any remote host)
DATABASE
, which defines the name of the database(s) to which the rule will apply. Currently, CockroachDB only supports cluster-wide rules, so the value in this column must beall
.USER
, which defines the username to which the rule applies. CockroachDB requires all connection requests to include a username. If the presented username exists in thesystem.users
table and has theLOGIN
option enabled, CockroachDB will check the authentication configuration to find an allowed method by which the user may authenticate. This parameter can also take the valueall
, in which case it will match all users.ADDRESS
specifies the IP range which the rule will allow or block, either with the keyword "all", or with a valid IP address. The IP address can include an IP mask (the value of the field can be of the format XXX.XXX.XXX.XXX/X), or not, in which case the next value must be the mask (the value of this field will be of the form XXX.XXX.XXX.XXX, in which case the next field must be a valid IP mask).IP MASK
(unless the Address in the prior field included or did not require an IP mask).- Authentication METHOD by which specified user(s) may authenticate from specified addresses.
password
: user may authenticate with a plaintext password.scram-sha-256
: user may authenticate via Salted Challenge-Responsecert
: user may authenticate with a PKI certificate signed by a trusted certificate authority CA.cert-password
: user may authenticate with either a certificate or a password. Additionally, the server may use a SCRAM exchange, if the cluster settingserver.user_login.cert_password_method.auto_scram_promotion.enabled
is set totrue
.cert-scram-sha-25
: user may authenticate with either a certificate or a SCRAM exchange.gss
: user may authenticate with a GSSAPI token.reject
: server unconditionally rejects connection without performing authentication.trust
: server unconditionally allows connection without performing authentication.
The unstated, unchangeable root
access rule
The root
SQL user can always authenticate using username/password or certificate, as if the first rule of the configuration were:
# TYPE DATABASE USER ADDRESS METHOD
host all root all root
This rule is not displayed in the configuration, and cannot be overridden. This ensures that access to the cluster can always be recovered, but it also means that access with root credentials cannot be restricted by IP range at the authentication configuration level.
CockroachDB Advanced or CockroachDB self-hosted customers can and should enforce network protections, preventing access attempts from any sources other than a valid ones such as application servers or a secure operations jumpbox.
Default behavior
CockroachDB Standard and CockroachDB Basic
The default authentication configuration for CockroachDB Standard and CockroachDB Basic clusters is equivalent to the following configuration:
# TYPE DATABASE USER ADDRESS METHOD
host all all all password
This is convenient for quick usage and experimentation, but is not suitable for clusters containing production data. It is a best practice to configure SQL authentication for hardened CockroachDB cluster security.
CockroachDB Advanced
CockroachDB Advanced clusters enforce IP allowlisting. Each cluster has an allowlist, which is configured through the CockroachDB Cloud Console.
See Managing Network Authorization for CockroachDB Advanced.
CockroachDB self-hosted
CockroachDB self-hosted deploys with the following default HBA configuration:
# TYPE DATABASE USER ADDRESS METHOD
host all root all cert-password
host all all all cert-password
local all all password