dse client-tool connection options
You must authenticate connections to an external client for dse client-tool commands.
JMX authentication is supported by some dsetool commands. Other dsetool commands authenticate with the user name and password of the configured user. The connection option short form and long form are comma separated.
You can provide authentication credentials in several ways, see Credentials for authentication. To enable dsetool to use Kerberos authentication, see Using dsetool with Kerberos enabled cluster. |
Different sources of configuration properties are used to connect external clients to a DSE node: DSE
configuration in dse.yaml
and cassandra.yaml
.
You can provide authentication credentials in several ways, see Credentials for authentication. The dse client-tool subcommands use DSE Unified Authentication, like the Java and other language drivers, not JMX authentication like dsetool. |
RPC permissions over the native protocol leverage DSE authentication and role-based access abilities. To configure external client access to DataStax Enterprise commands, see Authorizing remote procedure calls (RPC).
To configure external client access to DataStax Enterprise commands, see Authorizing remote procedure calls (RPC).
DSE proxy authentication can be used with dse client-tool
, and delegation tokens can be generated for the proxy authenticated role.
If the role alice
is authenticated, and alice
uses proxy authorization to the role bob
, alice
's delegation token can be used authenticate as alice
and authorize as bob
.
If bob
loses login permissions, the token can still be used to login as alice
, because the token reflects alice
's authentication.
If alice
loses authorization permissions for bob
, the token cannot be used to login .
Synopsis
dse client-tool
[-a <proxy_auth_username>] [-u <username>] [-p <password>]
[--port <port>] [--host <hostname>]
[--sasl-protocol-name <dse_service_principal>]
[--keystore-path <ssl_keystore_path>]
[--keystore-password <keystore_password>]
[--keystore-type <ssl_keystore_type>]
[--truststore-path <ssl_truststore_path>]
[--truststore-password <ssl_truststore_password>]
[--truststore-type <ssl_truststore_type>]
[--cipher-suites <<ssl_cipher_suites>>]
[--kerberos-enabled (true | false)]
[--ssl-enabled (true | false)]
[--use-server-config]
[-t <delegation token>]
[--ssl-protocol <ssl_protocol>]
<command> [<options>]
Syntax conventions | Description |
---|---|
UPPERCASE |
Literal keyword. |
Lowercase |
Not literal. |
<`Italics>` |
Variable value. Replace with a valid option or user-defined value. |
|
Optional.
Square brackets ( |
|
Group.
Parentheses ( |
|
Or.
A vertical bar ( |
|
Repeatable.
An ellipsis ( |
|
Single quotation ( |
|
Map collection.
Braces ( |
|
Set, list, map, or tuple.
Angle brackets ( |
|
End CQL statement.
A semicolon ( |
|
Separate the command line options from the command arguments with two hyphens ( |
|
Search CQL only: Single quotation marks ( |
|
Search CQL only: Identify the entity and literal value to overwrite the XML element in the schema and solrconfig files. |
- --cipher-suites ssl_cipher_suites
-
Specify comma-separated list of SSL cipher suites for connection to DSE when SSL is enabled. For example, --cipher-suites c1,c2,c3.
- --host hostname
-
The DSE node hostname or IP address.
- --kerberos-enabled (true|false)
-
Whether Kerberos authentication is enabled for connections to DSE. For example, --kerberos-enabled true.
- --keystore-password keystore_password
-
Keystore password for connection to DSE when SSL client authentication is enabled.
- --keystore-path ssl_keystore_path
-
Path to the keystore for connection to DSE when SSL client authentication is enabled.
- --keystore-type ssl_keystore_type
-
Keystore type for connection to DSE when SSL client authentication is enabled. JKS is the type for keys generated by the Java keytool binary, but other types are possible, depending on user environment.
- -p password
-
The password to authenticate for database access. Can use the DSE_PASSWORD environment variable.
- --port port
-
The native protocol RPC connection port (Thrift).
- --sasl-protocol-name dse_service_principal
-
SASL protocol name, that is, the DSE service principal name.
- --ssl
-
Whether SSL is enabled for connection to DSE.
--ssl-enabled true
is the same as--ssl
.
- --ssl-protocol ssl_protocol
-
SSL protocol for connection to DSE when SSL is enabled. For example, --ssl-protocol ssl4.
- -t token
-
Specify delegation token which can be used to login, or alternatively, DSE_TOKEN environment variable can be used.
- -t token
-
Specify delegation token which can be used to login, or alternatively, DSE_TOKEN environment variable can be used.
- --truststore_password ssl_truststore_password
-
Truststore password to use for connection to DSE when SSL is enabled.
- --truststore_path ssl_truststore_path
-
Path to the truststore to use for connection to DSE when SSL is enabled. For example, --truststore-path /path/to/ts.
- -u username
-
User name of a DSE authentication account. Can use the DSE_USERNAME environment variable.
- -a proxy_auth_username
-
DSE authorization username if proxy authentication is used.
- --use-server-config
-
Read parameters from server yaml configuration files. It assumes this node is properly configured.