MySQL Router accepts command line options that are passed into mysqlrouter to affect its behavior, or to bootstrap router based on an InnoDB Cluster.
When starting Router, you can optionally use
--config to pass in the main
configuration file's location (otherwise the default location is
used) and --extra-config for
an additional configuration file.
Bootstrapping command line options affect the generated files and directories that are used when starting MySQL Router.
mysqlrouter Option Summaries
Table 4.2 General Options
| Option Name | Description |
|---|---|
| --conf-set-option | Sets a value for a generated configuration option during bootstrap |
| --config | Read configuration options from the provided file |
| --core-file | Write core file on Router crashes |
| --extra-config | Read this file after configuration files are read from either default locations or from files specified by the --config option |
| --help | Display help text and exit |
| --pid-file | Location to store the PID file |
| --user | Run mysqlrouter as the user having the defined user name or numeric user id |
| --version | Display version information and exit |
Table 4.3 Bootstrapping Options
| Option Name | Description |
|---|---|
| --account | The MySQL user account used by Router after bootstrapping |
| --account-create | Bootstrapped account creation behavior |
| --account-host | The host pattern used for bootstrapped accounts |
| --bootstrap | Bootstrap and configure Router for operation with a MySQL InnoDB cluster |
| --bootstrap-socket | Connect to the MySQL metadata server through a Unix domain socket, used in conjunction with --bootstrap |
| --conf-base-port | Base port to use for listening Router ports |
| --conf-bind-address | IP address of the interface to which router's listening sockets should bind |
| --conf-skip-tcp | Whether to disable binding of a TCP port for incoming connections |
| --conf-target-cluster | Sets the target_cluster metadata option to a cluster type |
| --conf-target-cluster-by-name | Sets the target_cluster metadata option to a specific cluster name |
| --conf-use-gr-notifications | Enables Group Replication notifications |
| --conf-use-sockets | Whether to use Unix domain sockets |
| --connect-timeout | Number of seconds before connection attempts to a metadata server are considered timed out |
| --directory | Creates a self-contained directory for a new instance of the Router |
| --disable-rest | Disables generation of REST API configuration details into the generated mysqlrouter.conf file |
| --disable-rw-split | Disables generation of read-write splitting configuration details into the generated mysqlrouter.conf file |
| --force | Force reconfiguration of a possibly existing instance of the router |
| --force-password-validation | When creating a user account automatically, do not skip the validate_password mechanism |
| --https-port | MySQL Router REST API HTTP server port |
| --master-key-reader | Script that returns the master key to STDOUT |
| --master-key-writer | Script that reads the master key from STDIN |
| --name | Gives a symbolic name for the router instance |
| --password-retries | The number of retries to use for generating the Router's user password |
| --read-timeout | Number of seconds before read operations to a metadata server are considered timed out |
| --report-host | Router's hostname; overrides auto-detection |
| --strict | Enables bootstrap strict mode |
Table 4.4 SSL Options
| Option Name | Description |
|---|---|
| --client-ssl-ca | The path to the Certificate Authority (CA) certificate file in PEM format |
| --client-ssl-capath | The path to the directory that contains the trusted SSL Certificate Authority (CA) certificate files in PEM format. |
| --client-ssl-cert | The path to the SSL public key certificate file, in PEM format, used to encrypt client-to-router connections |
| --client-ssl-cipher | Which ciphers are allowed between client and MySQL Router, defaults to a secure list of SSL ciphers |
| --client-ssl-crl | The path to the file containing the certificate revocation lists in PEM format |
| --client-ssl-crlpath | The path to the directory that contains the certificate revocation list files in PEM format |
| --client-ssl-curves | Which curves are allowed between the client and MySQL Router, defaults to a secure list of SSL curves |
| --client-ssl-dh-params | Filename of the DH parameter file. Not set by default |
| --client-ssl-key | The path name of the SSL private key file, in PEM format, used to encrypt client-to-router connections |
| --client-ssl-mode | Controls if connections from the client to MySQL Router must be encrypted, defaults to PREFERRED if not set |
| --server-ssl-ca | The path to the Certificate Authority (CA) certificate file in PEM format |
| --server-ssl-capath | The path to the directory that contains the trusted SSL Certificate Authority (CA) certificate files in PEM format. |
| --server-ssl-cipher | SSL Cipher for Server |
| --server-ssl-crl | The path to the file containing the certificate revocation lists in PEM format |
| --server-ssl-crlpath | The path to the directory that contains the certificate revocation list files in PEM format |
| --server-ssl-curves | SSL Curves for Server |
| --server-ssl-mode | Controls if connections from router to server must be encrypted. |
| --server-ssl-verify | Verification of the SSL certificates presented to the router by the server |
| --ssl-ca | Path to SSL Certificate Authority file to verify server's certificate against |
| --ssl-capath | Directory that contains trusted SSL Certificate Authority certificate files |
| --ssl-cert | The client-side SSL certificate to facilitate client-side authentication during bootstrap |
| --ssl-cipher | A colon-separated list of SSL ciphers to allow, if SSL is enabled |
| --ssl-crl | Path to SSL CRL file to use when verifying server certificate |
| --ssl-crlpath | Path to directory containing SSL CRL files to use when verifying server certificate |
| --ssl-key | The private SSL key to facilitate client-side authentication during bootstrap |
| --ssl-mode | Desired security state when connecting to the metadata server during bootstrap and normal operation. Analogous to --ssl-mode in mysql client |
| --tls-version | Comma-separated list of TLS versions to request, if SSL is enabled |
Table 4.5 Windows Services Options
| Option Name | Description |
|---|---|
| --clear-all-credentials | Clear all stored credentials |
| --install-service | Install MySQL Router as service and set it to automatically start when Windows restarts; service name defaults to MySQLRouter (Windows only) |
| --install-service-manual | Install MySQL Router as service that can be manually started; service name defaults to MySQLRouter (Windows only) |
| --remove-credentials-section | Remove a section's credentials |
| --remove-service | Remove MySQL Router as a Windows service; service name defaults to MySQLRouter |
| --service | Start MySQL Router as a Windows service |
| --update-credentials-section | Update a section's credentials |
mysqlrouter Option Descriptions
-
--version,-VCommand-Line Format --version , -VDisplays the version number and related information of the application, and exits. For example:
$> mysqlrouter --version MySQL Router v8.4.5 on Linux (64-bit) (GPL community edition) -
--help,-?Command-Line Format --help , -?Display help and informative information, and exit.
The
--helpoption has an added benefit. Along with the explanation of each of the options, the--helpoption also displays the paths used to find the configuration file, and also several default paths. The following excerpt of the--helpoutput shows an example from a Ubuntu 16.04 machine:$> mysqlrouter --help ... Start MySQL Router. Configuration read from the following files in the given order (enclosed in parentheses means not available for reading): (/etc/mysqlrouter/mysqlrouter.conf) /home/philip/.mysqlrouter.conf Plugin Path: /usr/lib/x86_64-linux-gnu/mysqlrouter Default Log Directory: /var/log/mysqlrouter Default Persistent Data Directory: /var/lib/mysqlrouter Default Runtime State Directory: /run/mysqlrouter Usage: mysqlrouter [-V|--version] [-?|--help] ...The configuration section shows the order for the paths that may be used for reading the configuration file. In this case, only the second file is accessible.
-
--bootstrap,URI-BURICommand-Line Format --bootstrap URI, -B URIType String The main option to perform a bootstrap of MySQL Router by connecting to the InnoDB Cluster metadata server at the URI provided. MySQL Router configures itself based on the information retrieved from the InnoDB Cluster metadata server. A password is prompted for if needed. If a username is not provided as part of the URI then the default user name "root" is used. See Connecting Using URI-Like Connection Strings for information on using a path to specify a server instance.
NoteWhile
--bootstrapaccepts a URI for TCP/IP connections, using the--bootstrap-socketoption with a local Unix domain socket name replaces the "host:port" part of the URI passed to the--bootstrapoption with the socket on the same machine.By default, the bootstrap process performs a system-wide configuration of MySQL Router. Only one instance of MySQL Router can be configured for system-wide operation. The system instance of MySQL Router has a
router_nameof "system". If additional instances are desired, use the--directoryoption to create self-contained MySQL Router installations.URI: a server instance from an InnoDB Cluster to fetch metadata information from. If the providedURIis a read-only instance, MySQL Router automatically reconnects to a read-write instance in the InnoDB Cluster so it can register MySQL Router.If a configuration file already exists when you start MySQL Router with the
--bootstrap, the existingrouter_idin that file is reused, and a reconfiguration process occurs. The configuration file is regenerated from scratch and the MySQL Router's metadata server account is recreated, although with the same name.During the reconfiguration process, all changes made to an existing configuration file are discarded. To customize a configuration file and still retain the ability of automatic reconfiguration (bootstrapping), you can use the
--extra-configcommand line option to specify an additional configuration file that is read after the main configuration file. These configuration options are used because this extra configuration file is loaded after the main configuration file.The bootstrap process creates a new MySQL user account with a randomly generated password to use by that specific MySQL Router instance. This account is used by MySQL Router when connecting to the metadata server and InnoDB cluster to fetch information about its current state. For detailed information about this user including how its password is stored and the MySQL privilege it requires, see documentation for the
MySQL user option.The generated configuration file is named
mysqlrouter.conf, and its location depends on the type of instance being configured, the system, and the package. For system-wide installations, the generated configuration file is added to the system's configuration directory such as/etcor%PROGRAMDATA%\MySQL\MySQL Router\. Executingmysqlrouter --helpwill display this location.The
--useroption is required if executing a bootstrap with a super user (uid=0). Although not recommended, forcing the super user is possible by passing its name as an argument such as --user=root.The minimum GRANT permissions required to execute
--bootstrapare:GRANT CREATE USER ON *.* TO 'bootstrapuser'@'%' WITH GRANT OPTION; GRANT SELECT, INSERT, UPDATE, DELETE, EXECUTE ON mysql_innodb_cluster_metadata.* TO 'bootstrapuser'@'%'; GRANT SELECT ON mysql.user TO 'bootstrapuser'@'%'; GRANT SELECT ON performance_schema.replication_group_members TO 'bootstrapuser'@'%'; GRANT SELECT ON performance_schema.replication_group_member_stats TO 'bootstrapuser'@'%'; GRANT SELECT ON performance_schema.global_variables TO 'bootstrapuser'@'%';Using
--bootstrapadds default values to the generated MySQL Router configuration file, and some of these default values depend on other conditions. Listed below are some of the conditions that affect the generated default values, where default is defined by passing in--bootstrapby itself.Table 4.6 Conditions that affect default --bootstrap values
Condition Description --conf-base-portModifies generated
bind_portvalues for each connection type.By default, generated
bind_portvalues are as follows: For the classic protocol, Read-Write uses 6446 and Read-Only uses 6447, and for the X protocol Read-Write uses 6448 and Read-Only uses 6449.Setting
--conf-base-portto 0 changes the defaultbind_portvalues to the following defaults: For the classic protocol, Read-Write uses 6446 and Read-Only uses 6447, and for the X protocol Read-Write uses 64460 and Read-Only uses 64470.--conf-use-socketsInserts socketdefinitions for each connection type.--conf-skip-tcpTCP/IP connection definitions are not defined. --directoryAffects all file paths, and also generates additional files. Other This list is not exhaustive, other options and conditions also affect the generated values.
-
--bootstrap-socketsocket_nameCommand-Line Format --bootstrap-socket socket_namePlatform Specific Linux Used in conjunction with
--bootstrapto bootstrap using a local Unix domain socket instead of TCP/IP. The--bootstrap-socketvalue replaces the "host:port" part in the--bootstrapdefinition with the assigned socket name for connecting to the MySQL metadata server using Unix domain sockets. This is the MySQL instance that is being bootstrapped from, and this instance must be on the same machine if sockets are used. For additional details about how bootstrapping works, see--bootstrap.This option is different than the
--conf-use-socketscommand line option that sets thesocketconfiguration file option during the bootstrap process.This option is not available on Windows.
-
Command-Line Format --core-file[={0|1}]Type Boolean Default Value 0Write a core file if mysqlrouter dies. The name and location of the core file is system dependent. On Linux, a core file named
core.is written to the current working directory of the process.pidpidrepresents the process ID of the server process. On macOS, a core file namedcore.is written to thepid/coresdirectory, if the process has thecom.apple.security.get-task-allowentitlement. On Solaris, use the coreadm command to specify where to write the core file and how to name it. On Windows, a minidump file namedmysqlrouter.is written to the current working directory of the process.{pid}.dmp -
--directory,dir_path-ddir_pathCommand-Line Format --directory dir_path, -d dir_pathType String Specifies that a self-contained MySQL Router installation will be created at the defined directory instead of configuring the system-wide router instance. This also allows multiple router instances to be created on the same system.
The self-contained directory structure for Router is:
$path/start.sh $path/stop.sh $path/mysqlrouter.pid $path/mysqlrouter.conf $path/mysqlrouter.key $path/run $path/run/keyring $path/data $path/log $path/log/mysqlrouter.logIf this option is specified, the keyring file is stored under the runtime state directory of that instance, under
run/in the specified directory, as opposed to the system-wide runtime state directory.If
--conf-use-socketsis also enabled then the generated socket files are also added to this directory. -
Command-Line Format --master-key-writer file_pathType String This optional bootstrap option accepts a script that reads the master key from STDIN. It also uses the ROUTER_ID environment variable set by MySQL Router before the
master-key-writerscript is called.The
master-key-writerandmaster-key-readeroptions must be used together, and using them means themaster_key_fileoption must not be defined inmysqlrouter.confas the master key is not written to themysqlrouter.keymaster key file.This is also written to the generated MySQL Router configuration file as the
master-key-writer[DEFAULT] option.Example contents of a bash script named
writer.shused in our example:#!/bin/bash KID_=$(keyctl padd user ${ROUTER_ID} @us <&0)Example usage:
$> mysqlrouter --bootstrap=127.0.0.1:3310 --master-key-reader=./reader.sh --master-key-writer=./writer.shThis also affects the generated
mysqlrouter.conf, for example:[DEFAULT] ... master-key-reader=reader.sh master-key-writer=writer.sh -
Command-Line Format --master-key-reader file_pathType String This optional bootstrap option accepts a script that writes the master key to STDOUT. It also uses the ROUTER_ID environment variable set by MySQL Router before the
master-key-readerscript is called.The
master-key-readerandmaster-key-writeroptions must be used together, and using them means themaster_key_fileoption must not be defined inmysqlrouter.confas the master key is not written to themysqlrouter.keymaster key file, and instead uses the value provided by this option's script.This is also written to the generated MySQL Router configuration file as the
master-key-reader[DEFAULT] option.Example contents of a bash script named
reader.shused in our example:#!/bin/bash KID_=$(keyctl search @us user ${ROUTER_ID} 2>/dev/null) if [ ! -z $KID_ ]; then keyctl pipe $KID_ fiExample usage:
$> mysqlrouter --bootstrap=127.0.0.1:3310 --master-key-reader=./reader.sh # Or, multiple hosts--master-key-writer=./writer.shThis also affects the generated
mysqlrouter.conf, for example:[DEFAULT] ... master-key-reader=reader.sh master-key-writer=writer.sh -
Command-Line Format --strictType String Enables strict mode, which for example causes the bootstrap
--accountuser verification check to stop the bootstrap process rather than only emit a warning and continue if the supplied user does not pass the check. -
Command-Line Format --account usernameType String A bootstrap option to specify the MySQL user to use, which either reuses an existing MySQL user account or creates one; behavior controlled by the related
--account-createoption.With
--account, usage favors ease of management over ease of deployment as multiple routers may share the same account, and the username and password are manually defined rather than auto-generated.Setting this option triggers a password prompt for this account regardless of whether the password is available in the keyring.
Bootstrapping without passing
--accountdoes not recreate an existing MySQL server account.Using this option assumes the user has sufficient access rights for Router because the bootstrap process does not attempt to add missing grants to existing accounts. The bootstrap process does verify the permissions and outputs information to the console of the failed check. The bootstrap process continues despite these failed checks unless the optional
--strictoption is also used. Example required permissions:GRANT USAGE ON *.* TO `theuser`@`%` GRANT SELECT, EXECUTE ON `mysql_innodb_cluster_metadata`.* TO `theuser`@`%` GRANT INSERT, UPDATE, DELETE ON `mysql_innodb_cluster_metadata`.`routers` TO `theuser`@`%` GRANT INSERT, UPDATE, DELETE ON `mysql_innodb_cluster_metadata`.`v2_routers` TO `theuser`@`%` GRANT SELECT ON `performance_schema`.`global_variables` TO `theuser`@`%` GRANT SELECT ON `performance_schema`.`replication_group_member_stats` TO `theuser`@`%` GRANT SELECT ON `performance_schema`.`replication_group_members` TO `theuser`@`%`A password is not accepted from the command-line. For example, passing in "foo:bar" assumes "foo:bar" is the desired username rather than user foo with the password bar.
-
Command-Line Format --account-create behaviorType String Default Value if-not-existsValid Values if-not-existsalwaysneverSpecify the account creation policy to help guard against accidentally bootstrapping with the wrong user account. Potential values are:
if-not-exists(default): Bootstrap either way; reuse the account if it exists, otherwise create it.always: Only bootstrap if the account does not already exist; and create it.never: Only bootstrap if the account already exists; and reuse it.
This option requires that the
--accountoption is also used, and that--account-hostis not used. -
Command-Line Format --account-host host_patternType String Default Value %The host pattern used for accounts created by MySQL Router during the bootstrap process. This is optional and defaults to '%'.
Pass in this option multiple times to define multiple patterns, in which case the generated MySQL accounts use the same password.
NoteRouter does not perform sanity checking and does not ensure that the pattern authorizes Router to connect.
NoteBootstrapping reuses existing Router accounts by dropping and recreating the user, and this user recreation process applies to every host.
Examples:
# One host $> mysqlrouter --bootstrap localhost:3310 --account-host host1 # Or, multiple hosts $> mysqlrouter --bootstrap localhost:3310 --account-host host1 --account-host host2 --account-host host3 -
Command-Line Format --conf-use-socketsPlatform Specific Linux Enables local Unix domain sockets.
This option is used while bootstrapping, and enabling it adds the
socketoption to the generated configuration file.The name of the generated socket file depends on the
protocoloption. With the classic protocol enabled, the file is namedmysql.sockfor read-write connections, andmysqlro.sockfor read-only connections. With the X Protocol enabled, the file is namedmysqlx.sockfor read-write connections, andmysqlxro.sockfor read-only connections.This option is not available on Windows.
-
Command-Line Format --conf-use-gr-notificationsEnables the
use_gr_notifications[metadata_cache] option during bootstrap. When enabled, Router is asynchronously notified about most cluster changes. Seeuse_gr_notificationsfor more information. In addition, using this option setsttl=60 andauth_cache_refresh_interval=60. -
Command-Line Format --pid-file pathType String Sets location of the PID file. This can be set in three different ways (in order of precedence): this
--pid-filecommand-line option, settingpid_filein Router's configuration file, or defining theROUTER_PIDenvironment variable.If
--bootstrapis specified, then setting --pid-file causes Router to fail. This is unlike ROUTER_PID and the pid_file configuration option, which are ignored if --bootstrap is specified.If
--bootstrapis not specified, then the following cause Router to fail: the --pid-file already exists, pid_file or ROUTER_PID are set but empty, or if Router can't write the PID file. -
Command-Line Format --report-host hostnameType String Optionally define Router's hostname instead of relying on auto-detection to determine the externally visible hostname registered to metadata during the bootstrap process.
Router does not check or confirm that the supplied hostname is reachable, but does use RFC 1123 to validate host names, and RFC 2181 to validate addresses.
The supplied hostname is written to the host_name field of the mysql_innodb_cluster_metadata.hosts table in the MySQL InnoDB cluster metadata store.
-
Command-Line Format --conf-skip-tcpPlatform Specific Linux Skips configuration of a TCP port for listening to incoming connections. See also
--conf-use-sockets.This option is not available on Windows.
-
Command-Line Format --conf-base-port port_numType Integer Default Value 0Base (first) value used for the listening TCP ports by setting
bind_portfor each bootstrapped route.This value is used for the classic read-write route, and each additional allocated port is incremented by a value of one. The port order set is classic read-write / read-only, and then x read-write / read-only.
Setting
--conf-base-portto 0 changes the defaultbind_portvalues to the following defaults, which were as follows: For the classic protocol, Read-Write uses 6446 and Read-Only uses 6447, and for the X protocol Read-Write uses 64460 and Read-Only uses 64470.Example usage:
# Example without --conf-base-port $> mysqlrouter --bootstrap root@localhost:3310 ... Classic MySQL protocol connections to cluster 'devCluster': - Read/Write Connections: localhost:6446 - Read/Only Connections: localhost:6447 X protocol connections to cluster 'devCluster': - Read/Write Connections: localhost:6448 - Read/Only Connections: localhost:6449 # Example demonstrating --conf-base-port set to 0 $> mysqlrouter --bootstrap root@localhost:3310 --conf-base-port 0 ... Classic MySQL protocol connections to cluster 'devCluster': - Read/Write Connections: localhost:6446 - Read/Only Connections: localhost:6447 X protocol connections to cluster 'devCluster': - Read/Write Connections: localhost:64460 - Read/Only Connections: localhost:64470 -
Command-Line Format --conf-bind-address addressType String Default Value 0.0.0.0Modifies the
bind_addressvalue set by--bootstrapin the generated Router configuration file. By default, bootstrapping setsbind_address=0.0.0.0for each route, and this option changes that value.NoteThe default
bind_addressvalue is 127.0.0.1 ifbind_addressis not defined. -
Command-Line Format --read-timeout num_secondsType Integer Default Value 30Number of seconds before read operations to a metadata server are considered timed out.
This affects read operations during both the bootstrap process, and also affects normal MySQL Router operations by setting the associated
read_timeoutoption in the generatedmysqlrouter.conf.This option is set under the
[DEFAULT]namespace. -
Command-Line Format --connect-timeout num_secondsType Integer Default Value 30Number of seconds before connection attempts to a metadata server are considered timed out.
This affects connections during both the bootstrap process, and also affects normal MySQL Router operations by setting the associated
connect_timeoutoption in the generatedmysqlrouter.conf.There are two connect_timeout variants. The metadata server variant is defined under the
[DEFAULT]namespace, while the MySQL server variant is defined under the[routing]namespace. -
--user {,user_name|user_id}-u {user_name|user_id}Command-Line Format --user {user_name|user_id}, -u {user_name|user_id}Platform Specific Linux Type String Run mysqlrouter as the user having the name
user_nameor the numeric user IDuser_id. “User” in this context refers to a system login account, not a MySQL user listed in the grant tables. When bootstrapping, all generated files are owned by this user, and this also sets the associateduseroption.This system
useris defined in the configuration file under the[DEFAULT]namespace. For additional information, see theuseroption's documentation that--userconfigures.The
--useroption is required if executing a bootstrap as a super user (uid=0). Although not recommended, forcing the super user is possible by passing its name as an argument, such as --user=root.This option is not available on Windows.
-
Command-Line Format --name router_nameType String Default Value systemOn initial bootstrap, specifies a symbolic name for a self-contained Router instance. This option is optional, and is used with
--directory. When creating multiple instances, the names must be unique. -
Command-Line Format --force-password-validationPlatform Specific Linux By default, MySQL Router skips the MySQL Server's validate_password mechanism and instead Router generates and uses a STRONG password based on known validate_password default settings. This is because validate_password can be configured by the user and Router can not take into account unusual custom settings.
This option ensures that password validation (validate_password) is not skipped for generated passwords, and it is disabled by default.
-
--password-retriesnum_retriesCommand-Line Format --password-retries num_retriesType Integer Default Value 20Minimum Value 1Maximum Value 10000Specifies the number of times MySQL Router should attempt to generate a password when creating user account with the password validation rules. The default value is 20. The valid range is 1 to 10000.
The most likely reason for failure is due to custom validate_password settings with unusual requirements such as a 50 character minimum. In that fail scenario, either
--force-password-validationis set to true and/or themysql_native_passwordMySQL Server plugin is disabled (this plugin allows bypassing validation). -
Command-Line Format --forceForce a reconfiguration over a previously configured router instance on the host.
-
Command-Line Format --ssl-mode modeType String Default Value PREFERREDValid Values PREFERREDDISABLEDREQUIREDVERIFY_CAVERIFY_IDENTITYSSL connection mode for use during bootstrap and normal operation when connecting to the metadata server. Analogous to
--ssl-modein the mysql client.During bootstrap, all connections to metadata servers made by the Router will use the SSL options specified. If
ssl_modeis not specified in the configuration, it will default to PREFERRED. During normal operation, after Router is launched, its Metadata Cache plugin will read and honor all configured SSL settings.When set to a value other than the default (PREFERRED), an
ssl_modeentry is inserted under the[metadata_cache]section in the generated configuration file.Available values are DISABLED, PREFERRED, REQUIRED, VERIFY_CA, and VERIFY_IDENTITY. PREFERRED is the default value. As with the mysql client, this value is case-insensitive.
The configuration file equivalent is documented separately at
ssl_mode. -
Command-Line Format --ssl-cert file_pathType String Default Value The path name of the SSL public key certificate file in PEM format. This is used to facilitate client-side authentication during the bootstrap process. This directly matches and uses functionality of the MySQL client's
--ssl-certoption.Like
--ssl-key, this option is only used during bootstrap that uses a root account. It is useful when the root account was created with REQUIRE X509, and therefore logging in as root requires the client to authenticate itself. -
Command-Line Format --ssl-key file_pathType String The path name of the SSL private key file in PEM format. This is used to facilitate client-side authentication during the bootstrap process. This directly matches and uses functionality of the MySQL client's
--ssl-keyoption.Like
--ssl-cert, this option is only used during a bootstrap process that uses a root account. It is useful when the root account was created with REQUIRE X509, and therefore logging in as root requires the client to authenticate itself. -
Command-Line Format --ssl-cipher ciphersType String Default Value A colon-separated (":") list of SSL ciphers to allow, if SSL is enabled.
-
Command-Line Format --tls-version versionsType String Default Value A comma-separated (",") list of TLS versions to request, if SSL is enabled.
-
Command-Line Format --ssl-ca file_pathType String Default Value Path to the SSL CA file to verify a server's certificate against.
-
Command-Line Format --ssl-capath dir_pathType String Default Value Path to directory containing the SSL CA files to verify a server's certificate against.
-
Command-Line Format --ssl-crl file_pathType String Default Value Path to the SSL CRL file to use when verifying a server's certificate.
-
Command-Line Format --ssl-crlpath dir_pathType String Default Value Path to the directory containing SSL CRL files to use when verifying a server's certificate.
-
Command-Line Format --client-ssl-modeType String Default Value PREFERREDValid Values PREFERREDDISABLEDPASSTHROUGHREQUIREDSSL connection mode for use during bootstrap and normal operation when connecting between MySQL Router and client.
During bootstrap, all connections to clients made by the Router will use the SSL options specified. If
client_ssl_modeis not specified in the configuration, it defaults toPREFERRED.The configuration file equivalent is documented separately at
client_ssl_mode. -
Command-Line Format --client-ssl-cert file_pathType String Default Value The path name of the SSL public key certificate file in PEM format. This is used to facilitate client-side authentication during the bootstrap process.
Like
--client-ssl-key, this option is only used during bootstrap that uses a root account. It is useful when the root account was created with REQUIRE X509, and therefore logging in as root requires the client to authenticate itself. -
Command-Line Format --client-ssl-curvesType String Defaults to a secure list of SSL curves. Format this string as a colon separated list of curve names.
-
Command-Line Format --client-ssl-key file_pathType String The path name of the SSL private key file in PEM format. This is used to facilitate client-side authentication during the bootstrap process.
Like
--client-ssl-cert, this option is only used during a bootstrap process that uses a root account. It is useful when the root account was created with REQUIRE X509, and therefore logging in as root requires the client to authenticate itself. -
Command-Line Format --client-ssl-cipherType String A colon-separated (":") list of SSL ciphers to allow, if SSL is enabled.
-
Command-Line Format --client-ssl-dh-params=filepathType String Filename of the DH parameter file. If specified and not empty, the DH parameters from this file are used instead of internal default DH parameters. Format the DH param file in PEM format.
-
Command-Line Format --client-ssl-ca file_pathType String Default Value Path to the SSL CA file to verify a server's certificate against.
-
Command-Line Format --client-ssl-capath dir_pathType String Default Value Path to directory containing the SSL CA files to verify a server's certificate against.
-
Command-Line Format --client-ssl-crl file_pathType String Default Value Path to the SSL CRL file to use when verifying a server's certificate.
-
Command-Line Format --client-ssl-crlpath dir_pathType String Default Value Path to the directory containing SSL CRL files to use when verifying a server's certificate.
-
Command-Line Format --server-ssl-modeType String Default Value PREFERREDValid Values AS_CLIENTDISABLEDPREFERREDREQUIREDSSL connection mode for use during bootstrap and normal operation when connecting between MySQL Router and server.
During bootstrap, all connections to servers made by the Router will use the SSL options specified. If
server_ssl_modeis not specified in the configuration, it defaults toPREFERRED.The configuration file equivalent is documented separately at
server_ssl_mode. -
Command-Line Format --server-ssl-cipherType String A colon-separated (":") list of SSL ciphers to allow, if SSL is enabled.
-
Command-Line Format --server-ssl-ca file_pathType String Default Value Path to the SSL CA file to verify a server's certificate against.
-
Command-Line Format --server-ssl-capath dir_pathType String Default Value Path to directory containing the SSL CA files to verify a server's certificate against.
-
Command-Line Format --server-ssl-crl file_pathType String Default Value Path to the SSL CRL file to use when verifying a server's certificate.
-
Command-Line Format --server-ssl-crlpath dir_pathType String Default Value Path to the directory containing SSL CRL files to use when verifying a server's certificate.
-
Command-Line Format --server-ssl-curvesType String Defaults to a secure list of SSL curves. Format this string as a colon separated list of curve names.
-
Command-Line Format --server-ssl-verifyType String Default Value DISABLEDValid Values DISABLEDVERIFY_CAVERIFY_IDENTITYVerification of the SSL certificates presented to the router by the server
DISABLED: the connection fails if the server does not provide a certificate in the handshake.VERIFY_CA: the connection fails if the server's certificate does not match a CA trusted by MySQL Router.VERIFY_IDENTITY: the connection fails if the server's certificate does not match a CA trusted by MySQL Router, or the server certificate's subject does not match the hostname or IP address MySQL Router connected to.
-
--config,file_path-cfile_pathCommand-Line Format --config file_path, -c file_pathUsed to provide a path and file name for the configuration file to use. Use this option if you want to use a configuration file located in a folder other than the default locations.
When used with
--bootstrap, and if the configuration file already exists, a copy of the current file is saved with a .bak extension if the generated configuration file contents is different than the original. Existing .bak files are overwritten. -
--extra-config,file_path-afile_pathCommand-Line Format --extra-config file_path, -a file_pathUsed to provide an optional, additional configuration file to use. Use this option if you want to split the configuration file into two parts for testing, multiple instances of the application running on the same machine, etc.
This configuration file is read after the main configuration file. If there are conflicts (an option is set in multiple configuration files), values from the file that is loaded last is used.
-
Command-Line Format --install-service [service_name]Platform Specific Windows Install Router as a Windows service that automatically starts when Windows starts. The service name defaults to MySQLRouter.
This installation process does not validate configuration files passed in via
--config.This option is only available on Windows.
-
Command-Line Format --install-service-manual [service_name]Platform Specific Windows Install MySQL Router as a Windows service that can be manually started. The service name defaults to MySQLRouter.
This option is only available on Windows.
-
Command-Line Format --remove-service [service_name]Platform Specific Windows Remove the Router Windows service; service name defaults to MySQLRouter.
This option is only available on Windows.
-
Command-Line Format --servicePlatform Specific Windows Start Router as a Windows service. This is a private option, meaning it is only meant to be used by the Windows Service when launching Router as a service.
This option is only available on Windows.
-
Command-Line Format --update-credentials-section section_namePlatform Specific Windows This option is only available on Windows, and refers to its password vault.
-
Command-Line Format --conf-target-cluster valueType String Valid Values currentprimarySets the
target_clustermetadata MySQL Router option. Accepts one of the following strings:-
current: setstarget_clusterto the cluster containing the node being bootstrapped against. It defines it as the cluster's UUID value.If this is also the Primary, it does not dynamically follow role changes like the
primarydoes; instead it remains static. primary: setstarget_clusterto the primary cluster, including when it changes at runtime.
See also
--config-target-cluster-by-name, which sets thetarget_clusterto a specific static cluster name.NoteBootstrapping against a ClusterSet requires the
cluster_typeRouter configuration option set to gr. -
-
Command-Line Format --conf-set-option section_name[:optional_section_key].option=valueType String Sets a value for a generated configuration option during bootstrap; this can set a value for any bootstrapped option, for example:
$> mysqlrouter -B 127.0.0.1:5000 \ --directory=dir1 \ --conf-set-option=logger.level=debug \ --conf-set-option=routing:test_rw.max_connect_errors=0 \ --conf-set-option=routing:test_ro.max_connect_errors=0Those commands alter the default values for those specific options by defining them as such:
[logger] level=debug [routing:test_rw] ... max_connect_errors=0 ... [routing:test_ro] ... max_connect_errors=0 ...--conf-set-optiondefinitions take precedence over option specific parameters to set specific value. For example, if both--connect-timeout=Xand--conf-set-option=DEFAULT.connect_timeout=Yare specified when bootstrapping, theconnect_timeoutis set to Y in the generated configuration file. -
Command-Line Format --conf-target-cluster-by-name clusterNameType String Sets the
target_clustermetadata MySQL Router option to a specific cluster name.Or, instead use
--conf-target-clusterto assign a dynamic cluster type, such as primary. -
--remove-credentials-sectionsection_nameCommand-Line Format --remove-credentials-section section_namePlatform Specific Windows Remove the credentials for a given section.
This option is only available on Windows, and refers to its password vault.
-
Command-Line Format --clear-all-credentialsPlatform Specific Windows Clear the password vault by removing all credentials stored in it.
This option is only available on Windows, and refers to its password vault.
-
Command-Line Format --disable-rw-splitBy default, a
[router:read_write_split]section is added to the generatedmysqlrouter.confat bootstrap; and this parameter means those details are not added. For additional information, see Bootstrapping. -
Command-Line Format --disable-restBy default, configuration details for the MySQL Router REST API web service functionality are added to the generated
mysqlrouter.conffile at bootstrap; and this parameter means those details are not added. This does not disable REST API functionality, as the REST API functionality can be manually configured (to enable it) later on. -
Command-Line Format --https-port valueType Integer Default Value 8443Minimum Value 1Maximum Value 65535Optionally define the HTTP server's
portfor the MySQL Router REST API under the [http_server] section in generatedmysqlrouter.confat bootstrap. It defaults to 8443. Availability of the port is not checked.