You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/_docs/tools/control-script.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,16 +47,16 @@ If you want to connect to a node that is running on a remove machine, specify th
47
47
| --host HOST_OR_IP | The host name or IP address of the node. | `localhost`
48
48
| --port PORT | The port to connect to. | `10800`
49
49
| --user USER | The user name. |
50
-
| --password PASSWORD |The user password. |
50
+
| --password | Force `control.sh` to prompt for a user password before connecting to a cluster. Although you can explicitly specify a value for this option like `--password PASSWORD`, doing so is strongly discouraged due to security concerns. If this option is omitted, `control.sh` will automatically prompt for a user password if the server requires password authentication. However, `control.sh` will waste a connection attempt while determining whether the server needs a password. |
51
51
| --ssl-protocol PROTOCOL1, PROTOCOL2... | A list of SSL protocols to try when connecting to the cluster. link:https://docs.oracle.com/en/java/javase/11/security/java-security-overview1.html#GUID-FCF419A7-B856-46DD-A36F-C6F88F9AF37F[Supported protocols,window=_blank]. | `TLS`
52
52
| --ssl-cipher-suites CIPHER1,CIPHER2... | A list of SSL ciphers. link:https://docs.oracle.com/en/java/javase/11/docs/specs/security/standard-names.html#jsse-cipher-suite-names[Supported ciphers,window=_blank]. |
53
53
| --ssl-key-algorithm ALG | The SSL key algorithm. | `SunX509`
54
54
| --keystore-type KEYSTORE_TYPE | The keystore type. | `JKS`
55
55
| --keystore KEYSTORE_PATH | The path to the keystore. Specify a keystore to enable SSL for the control script.|
56
-
| --keystore-password KEYSTORE_PWD | The password to the keystore. |
56
+
| --keystore-password | Force `control.sh` to prompt for a keystore password before connecting to a cluster. Although you can explicitly specify a value for this option like `--keystore-password KEYSTORE_PWD`, doing so is strongly discouraged due to security concerns. If this option is omitted, `control.sh` will automatically prompt for a keystore password before connecting to the cluster if `--keystore KEYSTORE_PATH` argument is specified. |
57
57
| --truststore-type TRUSTSTORE_TYPE | The type of the truststore. | `JKS`
58
58
| --truststore TRUSTSTORE_PATH | The path to the truststore. |
59
-
| --truststore-password TRUSTSTORE_PWD | The password to the truststore. |
59
+
| --truststore-password | Force `control.sh` to prompt for a truststore password before connecting to a cluster. Although you can explicitly specify a value for this option like `--truststore-password TRUSTSTORE_PWD`, doing so is strongly discouraged due to security concerns. If this option is omitted, `control.sh` will automatically prompt for a truststore password before connecting to the cluster if `--truststore TRUSTSTORE_PATH` argument is specified. |
60
60
| --ssl-factory SSL_FACTORY_PATH | Custom SSL factory Spring xml file path. |
0 commit comments