运维联盟俱乐部

 找回密码
 立即注册
查看: 2088|回复: 0

command-mysqld

[复制链接]
  • TA的每日心情
    开心
    2023-8-9 11:05
  • 发表于 2021-12-15 16:11:51 | 显示全部楼层 |阅读模式
    1. [root@vm1 bin]# ./mysqld --verbose --help
    2. mysqld  Ver 8.0.27 for Linux on x86_64 (MySQL Community Server - GPL)
    3. Copyright (c) 2000, 2021, Oracle and/or its affiliates.

    4. Oracle is a registered trademark of Oracle Corporation and/or its
    5. affiliates. Other names may be trademarks of their respective
    6. owners.

    7. Starts the MySQL database server.

    8. Usage: mysqld [OPTIONS]

    9. Default options are read from the following files in the given order:
    10. /etc/my.cnf /etc/mysql/my.cnf /usr/local/mysql/etc/my.cnf ~/.my.cnf
    11. The following groups are read: mysqld server mysqld-8.0
    12. The following options may be given as the first argument:
    13. --print-defaults        Print the program argument list and exit.
    14. --no-defaults           Don't read default options from any option file,
    15.                         except for login file.
    16. --defaults-file=#       Only read default options from the given file #.
    17. --defaults-extra-file=# Read this file after the global files are read.
    18. --defaults-group-suffix=#
    19.                         Also read groups with concat(group, suffix)
    20. --login-path=#          Read this path from the login file.

    21.   --abort-slave-event-count=#
    22.                       Option used by mysql-test for debugging and testing of
    23.                       replication.
    24.   --activate-all-roles-on-login
    25.                       Automatically set all granted roles as active after the
    26.                       user has authenticated successfully.
    27.   --admin-address=name
    28.                       IP address to bind to for service connection. Address can
    29.                       be an IPv4 address, IPv6 address, or host name. Wildcard
    30.                       values *, ::, 0.0.0.0 are not allowed. Address value can
    31.                       have following optional network namespace separated by
    32.                       the delimiter / from the address value. E.g., the
    33.                       following value 192.168.1.1/red specifies IP addresses to
    34.                       listen for incoming TCP connections that have to be
    35.                       placed into the namespace 'red'. Using of network
    36.                       namespace requires its support from underlying Operating
    37.                       System. Attempt to specify a network namespace for a
    38.                       platform that doesn't support it results in error during
    39.                       socket creation.
    40.   --admin-port=#      Port number to use for service connection, built-in
    41.                       default (33062)
    42.   --admin-ssl         Enable SSL for admin interface (automatically enabled
    43.                       with other flags).
    44.                       (Defaults to on; use --skip-admin-ssl to disable.)
    45.   --admin-ssl-ca=name CA file in PEM format (check OpenSSL docs, implies --ssl)
    46.                       for --admin-port
    47.   --admin-ssl-capath=name
    48.                       CA directory (check OpenSSL docs, implies --ssl) for
    49.                       --admin-port
    50.   --admin-ssl-cert=name
    51.                       X509 cert in PEM format (implies --ssl) for --admin-port
    52.   --admin-ssl-cipher=name
    53.                       SSL cipher to use (implies --ssl) for --admin-port
    54.   --admin-ssl-crl=name
    55.                       CRL file in PEM format (check OpenSSL docs, implies
    56.                       --ssl) for --admin-port
    57.   --admin-ssl-crlpath=name
    58.                       CRL directory (check OpenSSL docs, implies --ssl) for
    59.                       --admin-port
    60.   --admin-ssl-key=name
    61.                       X509 key in PEM format (implies --ssl) for --admin-port
    62.   --admin-tls-ciphersuites=name
    63.                       TLS v1.3 ciphersuite to use (implies --ssl) for
    64.                       --admin-port
    65.   --admin-tls-version=name
    66.                       TLS version for --admin-port, permitted values are TLSv1,
    67.                       TLSv1.1, TLSv1.2, TLSv1.3
    68.   --allow-suspicious-udfs
    69.                       Allows use of UDFs consisting of only one symbol xxx()
    70.                       without corresponding xxx_init() or xxx_deinit(). That
    71.                       also means that one can load any function from any
    72.                       library, for example exit() from libc.so
    73.   -a, --ansi          Use ANSI SQL syntax instead of MySQL syntax. This mode
    74.                       will also set transaction isolation level 'serializable'.
    75.   --archive[=name]    Enable or disable ARCHIVE plugin. Possible values are ON,
    76.                       OFF, FORCE (don't start if the plugin fails to load).
    77.   --authentication-policy=name
    78.                       Defines policies around how user account can be
    79.                       configured with Multi Factor authentication methods
    80.                       during CREATE/ALTER USER statement. This variable accepts
    81.                       at-most 3 comma separated list of authentication plugin
    82.                       names where each value refers to what authentication
    83.                       plugin should be used in place of 1st Factor
    84.                       Authentication (FA), 2FA and 3FA method. Value *
    85.                       indicates any plugin is allowed for 1FA, 2FA and 3FA
    86.                       method. An empty value means nth FA method is optional.
    87.   --auto-generate-certs
    88.                       Auto generate SSL certificates at server startup if --ssl
    89.                       is set to ON and none of the other SSL system variables
    90.                       are specified and certificate/key files are not present
    91.                       in data directory.
    92.                       (Defaults to on; use --skip-auto-generate-certs to disable.)
    93.   --auto-increment-increment[=#]
    94.                       Auto-increment columns are incremented by this
    95.   --auto-increment-offset[=#]
    96.                       Offset added to Auto-increment columns. Used when
    97.                       auto-increment-increment != 1
    98.   --autocommit        Set default value for autocommit (0 or 1)
    99.                       (Defaults to on; use --skip-autocommit to disable.)
    100.   --automatic-sp-privileges
    101.                       Creating and dropping stored procedures alters ACLs
    102.                       (Defaults to on; use --skip-automatic-sp-privileges to disable.)
    103.   --avoid-temporal-upgrade
    104.                       When this option is enabled, the pre-5.6.4 temporal types
    105.                       are not upgraded to the new format for ALTER TABLE
    106.                       requests ADD/CHANGE/MODIFY COLUMN, ADD INDEX or FORCE
    107.                       operation. This variable is deprecated and will be
    108.                       removed in a future release.
    109.   --back-log=#        The number of outstanding connection requests MySQL can
    110.                       have. This comes into play when the main MySQL thread
    111.                       gets very many connection requests in a very short time
    112.   -b, --basedir=name  Path to installation directory. All paths are usually
    113.                       resolved relative to this
    114.   --big-tables        Allow big result sets by saving all temporary sets on
    115.                       file (Solves most 'table full' errors)
    116.   --bind-address=name IP address(es) to bind to. Syntax: address[,address]...,
    117.                       where address can be an IPv4 address, IPv6 address, host
    118.                       name or one of the wildcard values *, ::, 0.0.0.0. In
    119.                       case more than one address is specified in a
    120.                       comma-separated list, wildcard values are not allowed.
    121.                       Every address can have optional network namespace
    122.                       separated by the delimiter / from the address value.
    123.                       E.g., the following value
    124.                       192.168.1.1/red,172.16.1.1/green,193.168.1.1 specifies
    125.                       three IP addresses to listen for incoming TCP connections
    126.                       two of that have to be placed in corresponding
    127.                       namespaces: the address 192.168.1.1 must be placed into
    128.                       the namespace red and the address 172.16.1.1 must be
    129.                       placed into the namespace green. Using of network
    130.                       namespace requires its support from underlying Operating
    131.                       System. Attempt to specify a network namespace for a
    132.                       platform that doesn't support it results in error during
    133.                       socket creation.
    134.   --binlog-cache-size=#
    135.                       The size of the transactional cache for updates to
    136.                       transactional engines for the binary log. If you often
    137.                       use transactions containing many statements, you can
    138.                       increase this to get more performance
    139.   --binlog-checksum=name
    140.                       Type of BINLOG_CHECKSUM_ALG. Include checksum for log
    141.                       events in the binary log. Possible values are NONE and
    142.                       CRC32; default is CRC32.
    143.   --binlog-direct-non-transactional-updates
    144.                       Causes updates to non-transactional engines using
    145.                       statement format to be written directly to binary log,
    146.                       after executing them and before committing the
    147.                       transaction. Before using this option make sure that
    148.                       there are no dependencies between transactional and
    149.                       non-transactional tables such as in the statement INSERT
    150.                       INTO t_myisam SELECT * FROM t_innodb; otherwise, replicas
    151.                       may diverge.
    152.   --binlog-do-db=name Include only updates to the specified database when
    153.                       writing the binary log.
    154.   --binlog-encryption Enable/disable binary and relay logs encryption.
    155.   --binlog-error-action=name
    156.                       When statements cannot be written to the binary log due
    157.                       to a fatal error, this option determines whether the
    158.                       server ignores the error and closes the binary log, or
    159.                       aborts.
    160.   --binlog-expire-logs-seconds=#
    161.                       If non-zero, binary logs will be purged after
    162.                       binlog_expire_logs_seconds seconds; If both this option
    163.                       and expire_logs_days are set to non-zero  values, this
    164.                       option takes priority. Purges happen at startup and at
    165.                       binary log rotation.
    166.   --binlog-format=name
    167.                       The format used when writing the binary log. ROW writes
    168.                       each changed row in a binary format. STATEMENT writes SQL
    169.                       statements. MIXED writes SQL statements for most
    170.                       statements, and row format for statements that cannot be
    171.                       replayed in a deterministic manner using SQL. If
    172.                       NDBCLUSTER is enabled and binlog-format is MIXED, the
    173.                       format switches to row-based and back implicitly for each
    174.                       query accessing an NDBCLUSTER table.
    175.   --binlog-group-commit-sync-delay=#
    176.                       The number of microseconds the server waits for the
    177.                       binary log group commit sync queue to fill before
    178.                       continuing. Default: 0. Min: 0. Max: 1000000.
    179.   --binlog-group-commit-sync-no-delay-count=#
    180.                       If there are this many transactions in the commit sync
    181.                       queue and the server is waiting for more transactions to
    182.                       be enqueued (as set using
    183.                       --binlog-group-commit-sync-delay), the commit procedure
    184.                       resumes.
    185.   --binlog-gtid-simple-recovery
    186.                       If this option is enabled, the server does not open more
    187.                       than two binary logs when initializing GTID_PURGED and
    188.                       GTID_EXECUTED, either during server restart or when
    189.                       binary logs are being purged. Enabling this option is
    190.                       useful when the server has already generated many binary
    191.                       logs without GTID events (e.g., having GTID_MODE = OFF).
    192.                       Note: If this option is enabled, GLOBAL.GTID_EXECUTED and
    193.                       GLOBAL.GTID_PURGED may be initialized wrongly in two
    194.                       cases: (1) All binary logs were generated by MySQL 5.7.5
    195.                       or older, and GTID_MODE was ON for some binary logs but
    196.                       OFF for the newest binary log. (2) The oldest existing
    197.                       binary log was generated by MySQL 5.7.5 or older, and SET
    198.                       GTID_PURGED was issued after the oldest binary log was
    199.                       generated. If a wrong set is computed in one of case (1)
    200.                       or case (2), it will remain wrong even if the server is
    201.                       later restarted with this option disabled.
    202.                       (Defaults to on; use --skip-binlog-gtid-simple-recovery to disable.)
    203.   --binlog-ignore-db=name
    204.                       Exclude updates to the specified database when writing
    205.                       the binary log.
    206.   --binlog-max-flush-queue-time=#
    207.                       The maximum time that the binary log group commit will
    208.                       keep reading transactions before it flush the
    209.                       transactions to the binary log (and optionally sync,
    210.                       depending on the value of sync_binlog).
    211.   --binlog-order-commits
    212.                       Issue internal commit calls in the same order as
    213.                       transactions are written to the binary log. Default is to
    214.                       order commits.
    215.                       (Defaults to on; use --skip-binlog-order-commits to disable.)
    216.   --binlog-rotate-encryption-master-key-at-startup
    217.                       Force binlog encryption master key rotation at startup
    218.   --binlog-row-event-max-size=#
    219.                       The maximum size of a row-based binary log event in
    220.                       bytes. Rows will be grouped into events smaller than this
    221.                       size if possible. The value has to be a multiple of 256.
    222.   --binlog-row-image=name
    223.                       Controls whether rows should be logged in 'FULL',
    224.                       'NOBLOB' or 'MINIMAL' formats. 'FULL', means that all
    225.                       columns in the before and after image are logged.
    226.                       'NOBLOB', means that mysqld avoids logging blob columns
    227.                       whenever possible (e.g. blob column was not changed or is
    228.                       not part of primary key). 'MINIMAL', means that a PK
    229.                       equivalent (PK columns or full row if there is no PK in
    230.                       the table) is logged in the before image, and only
    231.                       changed columns are logged in the after image. (Default:
    232.                       FULL).
    233.   --binlog-row-metadata=name
    234.                       Controls how much type information is written to the
    235.                       binary log when using ROW format. FULL causes all
    236.                       metadata to be logged. MINIMAL means that only metadata
    237.                       actually needed by replicas is logged.
    238.   --binlog-row-value-options=name
    239.                       When set to PARTIAL_JSON, this option enables a
    240.                       space-efficient row-based binary log format for UPDATE
    241.                       statements that modify a JSON value using only the
    242.                       functions JSON_SET, JSON_REPLACE, and JSON_REMOVE. For
    243.                       such updates, only the modified parts of the JSON
    244.                       document are included in the binary log, so small changes
    245.                       of big documents may need significantly less space.
    246.   --binlog-rows-query-log-events
    247.                       Allow writing of Rows_query_log events into binary log.
    248.   --binlog-stmt-cache-size=#
    249.                       The size of the statement cache for updates to
    250.                       non-transactional engines for the binary log. If you
    251.                       often use statements updating a great number of rows, you
    252.                       can increase this to get more performance
    253.   --binlog-transaction-compression
    254.                       Whether to compress transactions or not. Transactions are
    255.                       compressed using the ZSTD compression algorythm.
    256.   --binlog-transaction-compression-level-zstd=#
    257.                       Specifies the transaction compression level for ZSTD
    258.                       transaction compression in the binary log.
    259.   --binlog-transaction-dependency-history-size=#
    260.                       Maximum number of rows to keep in the writeset history.
    261.   --binlog-transaction-dependency-tracking=name
    262.                       Selects the source of dependency information from which
    263.                       to compute logical timestamps, which replicas can use to
    264.                       decide which transactions can be executed in parallel
    265.                       when using replica_parallel_type=LOGICAL_CLOCK. Possible
    266.                       values are COMMIT_ORDER, WRITESET and WRITESET_SESSION.
    267.   --blackhole[=name]  Enable or disable BLACKHOLE plugin. Possible values are
    268.                       ON, OFF, FORCE (don't start if the plugin fails to load).
    269.   --block-encryption-mode=name
    270.                       mode for AES_ENCRYPT/AES_DECRYPT
    271.   --bulk-insert-buffer-size=#
    272.                       Size of tree cache used in bulk insert optimisation. Note
    273.                       that this is a limit per thread!
    274.   --caching-sha2-password-auto-generate-rsa-keys
    275.                       Auto generate RSA keys at server startup if corresponding
    276.                       system variables are not specified and key files are not
    277.                       present at the default location.
    278.                       (Defaults to on; use --skip-caching-sha2-password-auto-generate-rsa-keys to disable.)
    279.   --caching-sha2-password-digest-rounds=#
    280.                       Number of SHA2 rounds to be done when storing a password
    281.                       hash onto disk.
    282.   --caching-sha2-password-private-key-path=name
    283.                       A fully qualified path to the private RSA key used for
    284.                       authentication.
    285.   --caching-sha2-password-public-key-path=name
    286.                       A fully qualified path to the public RSA key used for
    287.                       authentication.
    288.   --character-set-client-handshake
    289.                       Don't ignore client side character set value sent during
    290.                       handshake.
    291.                       (Defaults to on; use --skip-character-set-client-handshake to disable.)
    292.   --character-set-filesystem=name
    293.                       Set the filesystem character set.
    294.   -C, --character-set-server=name
    295.                       Set the default character set.
    296.   --character-sets-dir=name
    297.                       Directory where character sets are
    298.   --check-proxy-users If set to FALSE (the default), then proxy user identity
    299.                       will not be mapped for authentication plugins which
    300.                       support mapping from grant tables.  When set to TRUE,
    301.                       users associated with authentication plugins which signal
    302.                       proxy user mapping should be done according to GRANT
    303.                       PROXY privilege definition.
    304.   -r, --chroot=name   Chroot mysqld daemon during startup.
    305.   --collation-server=name
    306.                       Set the default collation.
    307.   --completion-type=name
    308.                       The transaction completion type, one of NO_CHAIN, CHAIN,
    309.                       RELEASE
    310.   --concurrent-insert[=name]
    311.                       Use concurrent insert with MyISAM. Possible values are
    312.                       NEVER, AUTO, ALWAYS
    313.   --connect-timeout=# The number of seconds the mysqld server is waiting for a
    314.                       connect packet before responding with 'Bad handshake'
    315.   --console           Write error output on screen; don't remove the console
    316.                       window on windows.
    317.   --core-file         Write core on errors.
    318.   --create-admin-listener-thread
    319.                       Use a dedicated thread for listening incoming connections
    320.                       on admin interface
    321.   --cte-max-recursion-depth=#
    322.                       Abort a recursive common table expression if it does more
    323.                       than this number of iterations.
    324.   -D, --daemonize     Run mysqld as sysv daemon
    325.   -h, --datadir=name  Path to the database root directory
    326.   --default-authentication-plugin=name
    327.                       The default authentication plugin used by the server to
    328.                       hash the password.
    329.   --default-password-lifetime=#
    330.                       The number of days after which the password will expire.
    331.   --default-storage-engine=name
    332.                       The default storage engine for new tables
    333.   --default-table-encryption
    334.                       Database and tablespace are created with this default
    335.                       encryption property unless the user specifies an explicit
    336.                       encryption property.
    337.   --default-time-zone=name
    338.                       Set the default time zone.
    339.   --default-tmp-storage-engine=name
    340.                       The default storage engine for new explicit temporary
    341.                       tables
    342.   --default-week-format=#
    343.                       The default week format used by WEEK() functions
    344.   --delay-key-write[=name]
    345.                       Type of DELAY_KEY_WRITE
    346.   --delayed-insert-limit=#
    347.                       After inserting delayed_insert_limit rows, the INSERT
    348.                       DELAYED handler will check if there are any SELECT
    349.                       statements pending. If so, it allows these to execute
    350.                       before continuing. This variable is deprecated along with
    351.                       INSERT DELAYED.
    352.   --delayed-insert-timeout=#
    353.                       How long a INSERT DELAYED thread should wait for INSERT
    354.                       statements before terminating. This variable is
    355.                       deprecated along with INSERT DELAYED.
    356.   --delayed-queue-size=#
    357.                       What size queue (in rows) should be allocated for
    358.                       handling INSERT DELAYED. If the queue becomes full, any
    359.                       client that does INSERT DELAYED will wait until there is
    360.                       room in the queue again. This variable is deprecated
    361.                       along with INSERT DELAYED.
    362.   --disabled-storage-engines=name
    363.                       Limit CREATE TABLE for the storage engines listed
    364.   --disconnect-on-expired-password
    365.                       Give clients that don't signal password expiration
    366.                       support execution time error(s) instead of connection
    367.                       error
    368.                       (Defaults to on; use --skip-disconnect-on-expired-password to disable.)
    369.   --disconnect-slave-event-count=#
    370.                       Option used by mysql-test for debugging and testing of
    371.                       replication.
    372.   --div-precision-increment=#
    373.                       Precision of the result of '/' operator will be increased
    374.                       on that value
    375.   --early-plugin-load=name
    376.                       Optional semicolon-separated list of plugins to load
    377.                       before storage engine initialization, where each plugin
    378.                       is identified as name=library, where name is the plugin
    379.                       name and library is the plugin library in plugin_dir.
    380.   --end-markers-in-json
    381.                       In JSON output ("EXPLAIN FORMAT=JSON" and optimizer
    382.                       trace), if variable is set to 1, repeats the structure's
    383.                       key (if it has one) near the closing bracket
    384.   --enforce-gtid-consistency[=name]
    385.                       Prevents execution of statements that would be impossible
    386.                       to log in a transactionally safe manner. Currently, the
    387.                       disallowed statements include CREATE TEMPORARY TABLE
    388.                       inside transactions, all updates to non-transactional
    389.                       tables, and CREATE TABLE ... SELECT.
    390.   --eq-range-index-dive-limit=#
    391.                       The optimizer will use existing index statistics instead
    392.                       of doing index dives for equality ranges if the number of
    393.                       equality ranges for the index is larger than or equal to
    394.                       this number. If set to 0, index dives are always used.
    395.   --event-scheduler[=name]
    396.                       Enable the event scheduler. Possible values are ON, OFF,
    397.                       and DISABLED (keep the event scheduler completely
    398.                       deactivated, it cannot be activated run-time)
    399.   -T, --exit-info[=#] Used for debugging. Use at your own risk.
    400.   --expire-logs-days=#
    401.                       If non-zero, binary logs will be purged after
    402.                       expire_logs_days days; If this option alone is set on the
    403.                       command line or in a configuration file, it overrides the
    404.                       default value for binlog-expire-logs-seconds. If both
    405.                       options are set to nonzero values,
    406.                       binlog-expire-logs-seconds takes priority. Possible
    407.                       purges happen at startup and at binary log rotation.
    408.   --explicit-defaults-for-timestamp
    409.                       This option causes CREATE TABLE to create all TIMESTAMP
    410.                       columns as NULL with DEFAULT NULL attribute, Without this
    411.                       option, TIMESTAMP columns are NOT NULL and have implicit
    412.                       DEFAULT clauses. The old behavior is deprecated. The
    413.                       variable can only be set by users having the SUPER
    414.                       privilege.
    415.                       (Defaults to on; use --skip-explicit-defaults-for-timestamp to disable.)
    416.   --external-locking  Use system (external) locking (disabled by default).
    417.                       With this option enabled you can run myisamchk to test
    418.                       (not repair) tables while the MySQL server is running.
    419.                       Disable with --skip-external-locking.
    420.   --federated[=name]  Enable or disable FEDERATED plugin. Possible values are
    421.                       ON, OFF, FORCE (don't start if the plugin fails to load).
    422.   --flush             Flush MyISAM tables to disk between SQL commands
    423.   --flush-time=#      A dedicated thread is created to flush all tables at the
    424.                       given interval
    425.   --ft-boolean-syntax=name
    426.                       List of operators for MATCH ... AGAINST ( ... IN BOOLEAN
    427.                       MODE)
    428.   --ft-max-word-len=# The maximum length of the word to be included in a
    429.                       FULLTEXT index. Note: FULLTEXT indexes must be rebuilt
    430.                       after changing this variable
    431.   --ft-min-word-len=# The minimum length of the word to be included in a
    432.                       FULLTEXT index. Note: FULLTEXT indexes must be rebuilt
    433.                       after changing this variable
    434.   --ft-query-expansion-limit=#
    435.                       Number of best matches to use for query expansion
    436.   --ft-stopword-file=name
    437.                       Use stopwords from this file instead of built-in list
    438.   --gdb               Set up signals usable for debugging.
    439.   --general-log       Log connections and queries to a table or log file.
    440.                       Defaults to logging to a file hostname.log, or if
    441.                       --log-output=TABLE is used, to a table mysql.general_log.
    442.   --general-log-file=name
    443.                       Log connections and queries to given file
    444.   --generated-random-password-length=#
    445.                       Determines the length randomly generated passwords in
    446.                       CREATE USER-,SET PASSWORD- or ALTER USER statements
    447.   --group-concat-max-len=#
    448.                       The maximum length of the result of function
    449.                       GROUP_CONCAT()
    450.   --group-replication-consistency[=name]
    451.                       Transaction consistency guarantee, possible values:
    452.                       EVENTUAL, BEFORE_ON_PRIMARY_FAILOVER, BEFORE, AFTER,
    453.                       BEFORE_AND_AFTER
    454.   --gtid-executed-compression-period[=#]
    455.                       Compress the mysql.gtid_executed table whenever this
    456.                       number of transactions have been added, by waking up a
    457.                       foreground thread (compress_gtid_table). This compression
    458.                       method only operates when binary logging is disabled on
    459.                       the replica; if binary logging is enabled, the table is
    460.                       compressed every time the binary log is rotated, and this
    461.                       value is ignored. Before MySQL 8.0.23, the default is
    462.                       1000, and from MySQL 8.0.23, the default is zero, which
    463.                       disables this compression method. This is because in
    464.                       releases from MySQL 8.0.17, InnoDB transactions are
    465.                       written to the mysql.gtid_executed table by a separate
    466.                       process to non-InnoDB transactions. If the server has a
    467.                       mix of InnoDB and non-InnoDB transactions, attempting to
    468.                       compress the table with the compress_gtid_table thread
    469.                       can slow this process, so from MySQL 8.0.17 it is
    470.                       recommended that you set gtid_executed_compression_period
    471.                       to 0.
    472.   --gtid-mode=name    Controls whether Global Transaction Identifiers (GTIDs)
    473.                       are enabled. Can be OFF, OFF_PERMISSIVE, ON_PERMISSIVE,
    474.                       or ON. OFF means that no transaction has a GTID.
    475.                       OFF_PERMISSIVE means that new transactions (committed in
    476.                       a client session using GTID_NEXT='AUTOMATIC') are not
    477.                       assigned any GTID, and replicated transactions are
    478.                       allowed to have or not have a GTID. ON_PERMISSIVE means
    479.                       that new transactions are assigned a GTID, and replicated
    480.                       transactions are allowed to have or not have a GTID. ON
    481.                       means that all transactions have a GTID. ON is required
    482.                       on a source before any replica can use
    483.                       SOURCE_AUTO_POSITION=1. To safely switch from OFF to ON,
    484.                       first set all servers to OFF_PERMISSIVE, then set all
    485.                       servers to ON_PERMISSIVE, then wait for all transactions
    486.                       without a GTID to be replicated and executed on all
    487.                       servers, and finally set all servers to GTID_MODE = ON.
    488.   -?, --help          Display this help and exit.
    489.   --histogram-generation-max-mem-size=#
    490.                       Maximum amount of memory available for generating
    491.                       histograms
    492.   --host-cache-size=# How many host names should be cached to avoid resolving.
    493.   --information-schema-stats-expiry=#
    494.                       The number of seconds after which mysqld server will
    495.                       fetch data from storage engine and replace the data in
    496.                       cache.
    497.   --init-connect=name Command(s) that are executed for each new connection
    498.   --init-file=name    Read SQL commands from this file at startup
    499.   --init-replica=name Command(s) that are executed by the replication applier
    500.                       thread each time the applier threads start.
    501.   --init-slave=name   This option is deprecated. Use init_replica instead.
    502.   -I, --initialize    Create the default database and exit. Create a super user
    503.                       with a random expired password and store it into the log.
    504.   --initialize-insecure
    505.                       Create the default database and exit. Create a super user
    506.                       with empty password.
    507.   --innodb            Deprecated option. Provided for backward compatibility
    508.                       only. The option has no effect on the server behaviour.
    509.                       InnoDB is always enabled. The option will be removed in a
    510.                       future release.
    511.   --innodb-adaptive-flushing
    512.                       Attempt flushing dirty pages to avoid IO bursts at
    513.                       checkpoints.
    514.                       (Defaults to on; use --skip-innodb-adaptive-flushing to disable.)
    515.   --innodb-adaptive-flushing-lwm=#
    516.                       Percentage of log capacity below which no adaptive
    517.                       flushing happens.
    518.   --innodb-adaptive-hash-index
    519.                       Enable InnoDB adaptive hash index (enabled by default).
    520.                       Disable with --skip-innodb-adaptive-hash-index.
    521.                       (Defaults to on; use --skip-innodb-adaptive-hash-index to disable.)
    522.   --innodb-adaptive-hash-index-parts[=#]
    523.                       Number of InnoDB Adapative Hash Index Partitions.
    524.                       (default = 8).
    525.   --innodb-adaptive-max-sleep-delay=#
    526.                       The upper limit of the sleep delay in usec. Value of 0
    527.                       disables it.
    528.   --innodb-api-bk-commit-interval[=#]
    529.                       Background commit interval in seconds
    530.   --innodb-api-disable-rowlock
    531.                       Disable row lock when direct access InnoDB through InnoDB
    532.                       APIs
    533.   --innodb-api-enable-binlog
    534.                       Enable binlog for applications direct access InnoDB
    535.                       through InnoDB APIs
    536.   --innodb-api-enable-mdl
    537.                       Enable MDL for applications direct access InnoDB through
    538.                       InnoDB APIs
    539.   --innodb-api-trx-level[=#]
    540.                       InnoDB API transaction isolation level
    541.   --innodb-autoextend-increment=#
    542.                       Data file autoextend increment in megabytes
    543.   --innodb-autoinc-lock-mode=#
    544.                       The AUTOINC lock modes supported by InnoDB: 0 => Old
    545.                       style AUTOINC locking (for backward compatibility); 1 =>
    546.                       New style AUTOINC locking; 2 => No AUTOINC locking
    547.                       (unsafe for SBR)
    548.   --innodb-buffer-pool-chunk-size=#
    549.                       Size of a single memory chunk within each buffer pool
    550.                       instance for resizing buffer pool. Online buffer pool
    551.                       resizing happens at this granularity.
    552.   --innodb-buffer-pool-dump-at-shutdown
    553.                       Dump the buffer pool into a file named
    554.                       @@innodb_buffer_pool_filename
    555.                       (Defaults to on; use --skip-innodb-buffer-pool-dump-at-shutdown to disable.)
    556.   --innodb-buffer-pool-dump-now
    557.                       Trigger an immediate dump of the buffer pool into a file
    558.                       named @@innodb_buffer_pool_filename
    559.   --innodb-buffer-pool-dump-pct=#
    560.                       Dump only the hottest N% of each buffer pool, defaults to
    561.                       25
    562.   --innodb-buffer-pool-filename=name
    563.                       Filename to/from which to dump/load the InnoDB buffer
    564.                       pool
    565.   --innodb-buffer-pool-in-core-file
    566.                       This option has no effect if @@core_file is OFF. If
    567.                       @@core_file is ON, and this option is OFF, then the core
    568.                       dump file will be generated only if it is possible to
    569.                       exclude buffer pool from it. As soon as it will be
    570.                       determined that such exclusion is impossible a warning
    571.                       will be emitted and @@core_file will be set to OFF to
    572.                       prevent generating a core dump. If this option is enabled
    573.                       (which is the default), then core dumping logic will not
    574.                       be affected.
    575.                       (Defaults to on; use --skip-innodb-buffer-pool-in-core-file to disable.)
    576.   --innodb-buffer-pool-instances=#
    577.                       Number of buffer pool instances, set to higher value on
    578.                       high-end machines to increase scalability
    579.   --innodb-buffer-pool-load-abort
    580.                       Abort a currently running load of the buffer pool
    581.   --innodb-buffer-pool-load-at-startup
    582.                       Load the buffer pool from a file named
    583.                       @@innodb_buffer_pool_filename
    584.                       (Defaults to on; use --skip-innodb-buffer-pool-load-at-startup to disable.)
    585.   --innodb-buffer-pool-load-now
    586.                       Trigger an immediate load of the buffer pool from a file
    587.                       named @@innodb_buffer_pool_filename
    588.   --innodb-buffer-pool-size=#
    589.                       The size of the memory buffer InnoDB uses to cache data
    590.                       and indexes of its tables.
    591.   --innodb-change-buffer-max-size=#
    592.                       Maximum on-disk size of change buffer in terms of
    593.                       percentage of the buffer pool.
    594.   --innodb-change-buffering=name
    595.                       Buffer changes to reduce random access: OFF, ON,
    596.                       inserting, deleting, changing, or purging.
    597.   --innodb-checksum-algorithm=name
    598.                       The algorithm InnoDB uses for page checksumming. Possible
    599.                       values are CRC32 (hardware accelerated if the CPU
    600.                       supports it) write crc32, allow any of the other
    601.                       checksums to match when reading; STRICT_CRC32 write
    602.                       crc32, do not allow other algorithms to match when
    603.                       reading; INNODB write a software calculated checksum,
    604.                       allow any other checksums to match when reading;
    605.                       STRICT_INNODB write a software calculated checksum, do
    606.                       not allow other algorithms to match when reading; NONE
    607.                       write a constant magic number, do not do any checksum
    608.                       verification when reading; STRICT_NONE write a constant
    609.                       magic number, do not allow values other than that magic
    610.                       number when reading; Files updated when this option is
    611.                       set to crc32 or strict_crc32 will not be readable by
    612.                       MySQL versions older than 5.6.3
    613.   --innodb-cmp-per-index-enabled
    614.                       Enable INFORMATION_SCHEMA.innodb_cmp_per_index, may have
    615.                       negative impact on performance (off by default)
    616.   --innodb-commit-concurrency=#
    617.                       Helps in performance tuning in heavily concurrent
    618.                       environments.
    619.   --innodb-compression-failure-threshold-pct[=#]
    620.                       If the compression failure rate of a table is greater
    621.                       than this number more padding is added to the pages to
    622.                       reduce the failures. A value of zero implies no padding
    623.   --innodb-compression-level=#
    624.                       Compression level used for compressed row format.  0 is
    625.                       no compression, 1 is fastest, 9 is best compression and
    626.                       default is 6.
    627.   --innodb-compression-pad-pct-max[=#]
    628.                       Percentage of empty space on a data page that can be
    629.                       reserved to make the page compressible.
    630.   --innodb-concurrency-tickets=#
    631.                       Number of times a thread is allowed to enter InnoDB
    632.                       within the same SQL query after it has once got the
    633.                       ticket
    634.   --innodb-data-file-path=name
    635.                       Path to individual files and their sizes.
    636.   --innodb-data-home-dir=name
    637.                       The common part for InnoDB table spaces.
    638.   --innodb-ddl-buffer-size=#
    639.                       Maximum size of memory to use (in bytes) for DDL.
    640.   --innodb-ddl-threads=#
    641.                       Maximum number of threads to use for  DDL.
    642.   --innodb-deadlock-detect
    643.                       Enable/disable InnoDB deadlock detector (default ON). if
    644.                       set to OFF, deadlock detection is skipped, and we rely on
    645.                       innodb_lock_wait_timeout in case of deadlock.
    646.                       (Defaults to on; use --skip-innodb-deadlock-detect to disable.)
    647.   --innodb-dedicated-server
    648.                       Automatically scale innodb_buffer_pool_size and
    649.                       innodb_log_file_size based on system memory. Also set
    650.                       innodb_flush_method=O_DIRECT_NO_FSYNC, if supported
    651.   --innodb-default-row-format=name
    652.                       The default ROW FORMAT for all innodb tables created
    653.                       without explicit ROW_FORMAT. Possible values are
    654.                       REDUNDANT, COMPACT, and DYNAMIC. The ROW_FORMAT value
    655.                       COMPRESSED is not allowed
    656.   --innodb-directories=name
    657.                       List of directories 'dir1;dir2;..;dirN' to scan for
    658.                       tablespace files. Default is to scan
    659.                       'innodb-data-home-dir;innodb-undo-directory;datadir'
    660.   --innodb-disable-sort-file-cache
    661.                       Whether to disable OS system file cache for sort I/O
    662.   --innodb-doublewrite
    663.                       Enable InnoDB doublewrite buffer (enabled by default).
    664.                       Disable with --skip-innodb-doublewrite.
    665.                       (Defaults to on; use --skip-innodb-doublewrite to disable.)
    666.   --innodb-doublewrite-batch-size=#
    667.                       Number of double write pages to write in a batch
    668.   --innodb-doublewrite-dir=name
    669.                       Use a separate directory for the doublewrite buffer
    670.                       files,
    671.   --innodb-doublewrite-files=#
    672.                       Number of double write files
    673.   --innodb-doublewrite-pages=#
    674.                       Number of double write pages per thread
    675.   --innodb-extend-and-initialize
    676.                       Initialize the allocated space by writing zeros (enabled
    677.                       by default).
    678.                       (Defaults to on; use --skip-innodb-extend-and-initialize to disable.)
    679.   --innodb-fast-shutdown[=#]
    680.                       Speeds up the shutdown process of the InnoDB storage
    681.                       engine. Possible values are 0, 1 (faster) or 2 (fastest -
    682.                       crash-like).
    683.   --innodb-file-per-table
    684.                       Stores each InnoDB table to an .ibd file in the database
    685.                       dir.
    686.                       (Defaults to on; use --skip-innodb-file-per-table to disable.)
    687.   --innodb-fill-factor=#
    688.                       Percentage of B-tree page filled during bulk insert
    689.   --innodb-flush-log-at-timeout[=#]
    690.                       Write and flush logs every (n) second.
    691.   --innodb-flush-log-at-trx-commit[=#]
    692.                       Set to 0 (write and flush once per second), 1 (write and
    693.                       flush at each commit), or 2 (write at commit, flush once
    694.                       per second).
    695.   --innodb-flush-method=name
    696.                       With which method to flush data
    697.   --innodb-flush-neighbors[=#]
    698.                       Set to 0 (don't flush neighbors from buffer pool), 1
    699.                       (flush contiguous neighbors from buffer pool) or 2 (flush
    700.                       neighbors from buffer pool), when flushing a block
    701.   --innodb-flush-sync Allow IO bursts at the checkpoints ignoring io_capacity
    702.                       setting.
    703.                       (Defaults to on; use --skip-innodb-flush-sync to disable.)
    704.   --innodb-flushing-avg-loops=#
    705.                       Number of iterations over which the background flushing
    706.                       is averaged.
    707.   --innodb-force-load-corrupted
    708.                       Force InnoDB to load metadata of corrupted table.
    709.   --innodb-force-recovery=#
    710.                       Helps to save your data in case the disk image of the
    711.                       database becomes corrupt.
    712.   --innodb-fsync-threshold=#
    713.                       The value of this variable determines how often InnoDB
    714.                       calls fsync when creating a new file. Default is zero
    715.                       which would make InnoDB flush the entire file at once
    716.                       before closing it.
    717.   --innodb-ft-aux-table
    718.                       FTS internal auxiliary table to be checked
    719.   --innodb-ft-cache-size=#
    720.                       InnoDB Fulltext search cache size in bytes
    721.   --innodb-ft-enable-diag-print
    722.                       Whether to enable additional FTS diagnostic printout
    723.   --innodb-ft-enable-stopword
    724.                       Create FTS index with stopword.
    725.                       (Defaults to on; use --skip-innodb-ft-enable-stopword to disable.)
    726.   --innodb-ft-max-token-size=#
    727.                       InnoDB Fulltext search maximum token size in characters
    728.   --innodb-ft-min-token-size=#
    729.                       InnoDB Fulltext search minimum token size in characters
    730.   --innodb-ft-num-word-optimize[=#]
    731.                       InnoDB Fulltext search number of words to optimize for
    732.                       each optimize table call
    733.   --innodb-ft-result-cache-limit=#
    734.                       InnoDB Fulltext search query result cache limit in bytes
    735.   --innodb-ft-server-stopword-table[=name]
    736.                       The user supplied stopword table name.
    737.   --innodb-ft-sort-pll-degree=#
    738.                       InnoDB Fulltext search parallel sort degree, will round
    739.                       up to nearest power of 2 number
    740.   --innodb-ft-total-cache-size=#
    741.                       Total memory allocated for InnoDB Fulltext Search cache
    742.   --innodb-ft-user-stopword-table[=name]
    743.                       User supplied stopword table name, effective in the
    744.                       session level.
    745.   --innodb-idle-flush-pct=#
    746.                       Up to what percentage of dirty pages to be flushed when
    747.                       server is found idle.
    748.   --innodb-io-capacity=#
    749.                       Number of IOPs the server can do. Tunes the background IO
    750.                       rate
    751.   --innodb-io-capacity-max=#
    752.                       Limit to which innodb_io_capacity can be inflated.
    753.   --innodb-lock-wait-timeout=#
    754.                       Timeout in seconds an InnoDB transaction may wait for a
    755.                       lock before being rolled back. Values above 100000000
    756.                       disable the timeout.
    757.   --innodb-log-buffer-size=#
    758.                       The size of the buffer which InnoDB uses to write log to
    759.                       the log files on disk.
    760.   --innodb-log-checksums
    761.                       Whether to compute and require checksums for InnoDB redo
    762.                       log blocks
    763.                       (Defaults to on; use --skip-innodb-log-checksums to disable.)
    764.   --innodb-log-compressed-pages
    765.                       Enables/disables the logging of entire compressed page
    766.                       images. InnoDB logs the compressed pages to prevent
    767.                       corruption if the zlib compression algorithm changes.
    768.                       When turned OFF, InnoDB will assume that the zlib
    769.                       compression algorithm doesn't change.
    770.                       (Defaults to on; use --skip-innodb-log-compressed-pages to disable.)
    771.   --innodb-log-file-size=#
    772.                       Size of each log file (in bytes).
    773.   --innodb-log-files-in-group=#
    774.                       Number of log files (when multiplied by
    775.                       innodb_log_file_size gives total size of log files).
    776.                       InnoDB writes to files in a circular fashion.
    777.   --innodb-log-group-home-dir=name
    778.                       Path to InnoDB log files.
    779.   --innodb-log-spin-cpu-abs-lwm=#
    780.                       Minimum value of cpu time for which spin-delay is used.
    781.                       Expressed in percentage of single cpu core.
    782.   --innodb-log-spin-cpu-pct-hwm=#
    783.                       Maximum value of cpu time for which spin-delay is used.
    784.                       Expressed in percentage of all cpu cores.
    785.   --innodb-log-wait-for-flush-spin-hwm=#
    786.                       Maximum value of average log flush time for which
    787.                       spin-delay is used. When flushing takes longer, user
    788.                       threads no longer spin when waiting forflushed redo.
    789.                       Expressed in microseconds.
    790.   --innodb-log-write-ahead-size=#
    791.                       Log write ahead unit size to avoid read-on-write, it
    792.                       should match the OS cache block IO size.
    793.   --innodb-log-writer-threads
    794.                       Whether the log writer threads should be activated (ON),
    795.                       or write/flush of the redo log should be done by each
    796.                       thread individually (OFF).
    797.                       (Defaults to on; use --skip-innodb-log-writer-threads to disable.)
    798.   --innodb-lru-scan-depth=#
    799.                       How deep to scan LRU to keep it clean
    800.   --innodb-max-dirty-pages-pct=#
    801.                       Percentage of dirty pages allowed in bufferpool.
    802.   --innodb-max-dirty-pages-pct-lwm=#
    803.                       Percentage of dirty pages at which flushing kicks in.
    804.   --innodb-max-purge-lag=#
    805.                       Desired maximum length of the purge queue (0 = no limit)
    806.   --innodb-max-purge-lag-delay=#
    807.                       Maximum delay of user threads in micro-seconds
    808.   --innodb-max-undo-log-size[=#]
    809.                       Maximum size of an UNDO tablespace in MB (If an UNDO
    810.                       tablespace grows beyond this size it will be truncated in
    811.                       due course).
    812.   --innodb-monitor-disable=name
    813.                       Turn off a monitor counter
    814.   --innodb-monitor-enable=name
    815.                       Turn on a monitor counter
    816.   --innodb-monitor-reset=name
    817.                       Reset a monitor counter
    818.   --innodb-monitor-reset-all=name
    819.                       Reset all values for a monitor counter
    820.   --innodb-numa-interleave
    821.                       Use NUMA interleave memory policy to allocate InnoDB
    822.                       buffer pool.
    823.   --innodb-old-blocks-pct=#
    824.                       Percentage of the buffer pool to reserve for 'old'
    825.                       blocks.
    826.   --innodb-old-blocks-time=#
    827.                       Move blocks to the 'new' end of the buffer pool if the
    828.                       first access was at least this many milliseconds ago. The
    829.                       timeout is disabled if 0.
    830.   --innodb-online-alter-log-max-size=#
    831.                       Maximum modification log file size for online index
    832.                       creation
    833.   --innodb-open-files=#
    834.                       How many files at the maximum InnoDB keeps open at the
    835.                       same time.
    836.   --innodb-optimize-fulltext-only
    837.                       Only optimize the Fulltext index of the table
    838.   --innodb-page-cleaners[=#]
    839.                       Page cleaner threads can be from 1 to 64. Default is 4.
    840.   --innodb-page-size[=#]
    841.                       Page size to use for all InnoDB tablespaces.
    842.   --innodb-parallel-read-threads=#
    843.                       Number of threads to do parallel read.
    844.   --innodb-print-all-deadlocks
    845.                       Print all deadlocks to MySQL error log (off by default)
    846.   --innodb-print-ddl-logs
    847.                       Print all DDl logs to MySQL error log (off by default)
    848.   --innodb-purge-batch-size[=#]
    849.                       Number of UNDO log pages to purge in one batch from the
    850.                       history list.
    851.   --innodb-purge-rseg-truncate-frequency[=#]
    852.                       Dictates rate at which UNDO records are purged. Value N
    853.                       means purge rollback segment(s) on every Nth iteration of
    854.                       purge invocation
    855.   --innodb-purge-threads[=#]
    856.                       Purge threads can be from 1 to 32. Default is 4.
    857.   --innodb-random-read-ahead
    858.                       Whether to use read ahead for random access within an
    859.                       extent.
    860.   --innodb-read-ahead-threshold=#
    861.                       Number of pages that must be accessed sequentially for
    862.                       InnoDB to trigger a readahead.
    863.   --innodb-read-io-threads=#
    864.                       Number of background read I/O threads in InnoDB.
    865.   --innodb-read-only  Start InnoDB in read only mode (off by default)
    866.   --innodb-redo-log-archive-dirs=name
    867.                       Limit the location of the redo log archive to the
    868.                       semicolon separated list of labeled directories
    869.   --innodb-redo-log-encrypt
    870.                       Enable or disable Encryption of REDO tablespace.
    871.   --innodb-replication-delay=#
    872.                       Replication thread delay (ms) on the slave server if
    873.                       innodb_thread_concurrency is reached (0 by default)
    874.   --innodb-rollback-on-timeout
    875.                       Roll back the complete transaction on lock wait timeout,
    876.                       for 4.x compatibility (disabled by default)
    877.   --innodb-rollback-segments[=#]
    878.                       Number of rollback segments per tablespace. This applies
    879.                       to the system tablespace, the temporary tablespace & any
    880.                       undo tablespace.
    881.   --innodb-segment-reserve-factor[=#]
    882.                       The segment_reserve_factor is the ratio x/y expressed in
    883.                       percentage, where x is the number of free pages in the
    884.                       segment, and y is the total number of pages in the
    885.                       segment.  The number of used pages in the segment is
    886.                       given by (y-x). The number of free pages in the segment
    887.                       (x) will be maintained such that the actual
    888.                       segment_reserve_factor will be >= the requested
    889.                       segment_reserve_factor, which is contained in this
    890.                       variable.
    891.   --innodb-sort-buffer-size=#
    892.                       Memory buffer size for index creation
    893.   --innodb-spin-wait-delay[=#]
    894.                       Maximum delay between polling for a spin lock (6 by
    895.                       default)
    896.   --innodb-spin-wait-pause-multiplier=#
    897.                       Controls how many times in a row to use a PAUSE
    898.                       instruction to achieve one unit of delay in a spin lock
    899.                       (see @@innodb_spin_wait_delay), defaults to 50
    900.   --innodb-stats-auto-recalc
    901.                       InnoDB automatic recalculation of persistent statistics
    902.                       enabled for all tables unless overridden at table level
    903.                       (automatic recalculation is only done when InnoDB decides
    904.                       that the table has changed too much and needs a new
    905.                       statistics)
    906.                       (Defaults to on; use --skip-innodb-stats-auto-recalc to disable.)
    907.   --innodb-stats-include-delete-marked
    908.                       Include delete marked records when calculating persistent
    909.                       statistics
    910.   --innodb-stats-method=name
    911.                       Specifies how InnoDB index statistics collection code
    912.                       should treat NULLs. Possible values are NULLS_EQUAL
    913.                       (default), NULLS_UNEQUAL and NULLS_IGNORED
    914.   --innodb-stats-on-metadata
    915.                       Enable statistics gathering for metadata commands such as
    916.                       SHOW TABLE STATUS for tables that use transient
    917.                       statistics (off by default)
    918.   --innodb-stats-persistent
    919.                       InnoDB persistent statistics enabled for all tables
    920.                       unless overridden at table level
    921.                       (Defaults to on; use --skip-innodb-stats-persistent to disable.)
    922.   --innodb-stats-persistent-sample-pages=#
    923.                       The number of leaf index pages to sample when calculating
    924.                       persistent statistics (by ANALYZE, default 20)
    925.   --innodb-stats-transient-sample-pages=#
    926.                       The number of leaf index pages to sample when calculating
    927.                       transient statistics (if persistent statistics are not
    928.                       used, default 8)
    929.   --innodb-status-file
    930.                       Enable SHOW ENGINE INNODB STATUS output in the
    931.                       innodb_status.<pid> file
    932.   --innodb-status-output
    933.                       Enable InnoDB monitor output to the error log.
    934.   --innodb-status-output-locks
    935.                       Enable InnoDB lock monitor output to the error log.
    936.                       Requires innodb_status_output=ON.
    937.   --innodb-strict-mode
    938.                       Use strict mode when evaluating create options.
    939.                       (Defaults to on; use --skip-innodb-strict-mode to disable.)
    940.   --innodb-sync-array-size[=#]
    941.                       Size of the mutex/lock wait array.
    942.   --innodb-sync-spin-loops=#
    943.                       Count of spin-loop rounds in InnoDB mutexes (30 by
    944.                       default)
    945.   --innodb-table-locks
    946.                       Enable InnoDB locking in LOCK TABLES
    947.                       (Defaults to on; use --skip-innodb-table-locks to disable.)
    948.   --innodb-temp-data-file-path=name
    949.                       Path to files and their sizes making temp-tablespace.
    950.   --innodb-temp-tablespaces-dir=name
    951.                       Directory where temp tablespace files live, this path can
    952.                       be absolute.
    953.   --innodb-thread-concurrency=#
    954.                       Helps in performance tuning in heavily concurrent
    955.                       environments. Sets the maximum number of threads allowed
    956.                       inside InnoDB. Value 0 will disable the thread
    957.                       throttling.
    958.   --innodb-thread-sleep-delay=#
    959.                       Time of innodb thread sleeping before joining InnoDB
    960.                       queue (usec). Value 0 disable a sleep
    961.   --innodb-tmpdir[=name]
    962.                       Directory for temporary non-tablespace files.
    963.   --innodb-undo-directory=name
    964.                       Directory where undo tablespace files live, this path can
    965.                       be absolute.
    966.   --innodb-undo-log-encrypt
    967.                       Enable or disable Encrypt of UNDO tablespace.
    968.   --innodb-undo-log-truncate
    969.                       Enable or Disable Truncate of UNDO tablespace.
    970.                       (Defaults to on; use --skip-innodb-undo-log-truncate to disable.)
    971.   --innodb-undo-tablespaces=#
    972.                       Number of undo tablespaces to use. (deprecated)
    973.   --innodb-use-fdatasync
    974.                       Use fdatasync() instead of the default fsync().
    975.   --innodb-use-native-aio
    976.                       Use native AIO if supported on this platform.
    977.                       (Defaults to on; use --skip-innodb-use-native-aio to disable.)
    978.   --innodb-validate-tablespace-paths
    979.                       Enable validation of tablespace paths against the DD.
    980.                       (enabled by default). Disable with
    981.                       --skip-innodb-validate-tablespace-paths.
    982.                       (Defaults to on; use --skip-innodb-validate-tablespace-paths to disable.)
    983.   --innodb-write-io-threads=#
    984.                       Number of background write I/O threads in InnoDB.
    985.   --interactive-timeout=#
    986.                       The number of seconds the server waits for activity on an
    987.                       interactive connection before closing it
    988.   --internal-tmp-mem-storage-engine=name
    989.                       The default storage engine for in-memory internal
    990.                       temporary tables.
    991.   --join-buffer-size=#
    992.                       The size of the buffer that is used for full joins
    993.   --keep-files-on-create
    994.                       Don't overwrite stale .MYD and .MYI even if no directory
    995.                       is specified
    996.   --key-buffer-size=# The size of the buffer used for index blocks for MyISAM
    997.                       tables. Increase this to get better index handling (for
    998.                       all reads and multiple writes) to as much as you can
    999.                       afford
    1000.   --key-cache-age-threshold=#
    1001.                       This characterizes the number of hits a hot block has to
    1002.                       be untouched until it is considered aged enough to be
    1003.                       downgraded to a warm block. This specifies the percentage
    1004.                       ratio of that number of hits to the total number of
    1005.                       blocks in key cache
    1006.   --key-cache-block-size=#
    1007.                       The default size of key cache blocks
    1008.   --key-cache-division-limit=#
    1009.                       The minimum percentage of warm blocks in key cache
    1010.   --keyring-migration-destination=name
    1011.                       Keyring plugin or component to which the keys are
    1012.                       migrated to.
    1013.   --keyring-migration-host=name
    1014.                       Connect to host.
    1015.   -p, --keyring-migration-password[=name]
    1016.                       Password to use when connecting to server during keyring
    1017.                       migration. If password value is not specified then it
    1018.                       will be asked from the tty.
    1019.   --keyring-migration-port=#
    1020.                       Port number to use for connection.
    1021.   --keyring-migration-socket=name
    1022.                       The socket file to use for connection.
    1023.   --keyring-migration-source=name
    1024.                       Keyring plugin from where the keys needs to be migrated
    1025.                       to. This option must be specified along with
    1026.                       --keyring-migration-destination.
    1027.   --keyring-migration-to-component
    1028.                       Migrate from keyring plugin to keyring component.
    1029.   --keyring-migration-user=name
    1030.                       User to login to server.
    1031.   -L, --language=name Client error messages in given language. May be given as
    1032.                       a full path. Deprecated. Use --lc-messages-dir instead.
    1033.   --large-pages       Enable support for large pages
    1034.   --lc-messages=name  Set the language used for the error messages.
    1035.   --lc-messages-dir=name
    1036.                       Directory where error messages are
    1037.   --lc-time-names=name
    1038.                       Set the language used for the month names and the days of
    1039.                       the week.
    1040.   --local-infile      Enable LOAD DATA LOCAL INFILE
    1041.   --lock-wait-timeout=#
    1042.                       Timeout in seconds to wait for a lock before returning an
    1043.                       error.
    1044.   --log-bin[=name]    Configures the name prefix to use for binary log files.
    1045.                       If the --log-bin option is not supplied, the name prefix
    1046.                       defaults to "binlog". If the --log-bin option is supplied
    1047.                       without argument, the name prefix defaults to
    1048.                       "HOSTNAME-bin", where HOSTNAME is the machine's hostname.
    1049.                       To set a different name prefix for binary log files, use
    1050.                       --log-bin=name. To disable binary logging, use the
    1051.                       --skip-log-bin or --disable-log-bin option.
    1052.   --log-bin-index=name
    1053.                       File that holds the names for binary log files.
    1054.   --log-bin-trust-function-creators
    1055.                       If set to FALSE (the default), then when --log-bin is
    1056.                       used, creation of a stored function (or trigger) is
    1057.                       allowed only to users having the SUPER privilege and only
    1058.                       if this stored function (trigger) may not break binary
    1059.                       logging. Note that if ALL connections to this server
    1060.                       ALWAYS use row-based binary logging, the security issues
    1061.                       do not exist and the binary logging cannot break, so you
    1062.                       can safely set this to TRUE
    1063.   --log-bin-use-v1-row-events
    1064.                       If equal to 1 then version 1 row events are written to a
    1065.                       row based binary log.  If equal to 0, then the latest
    1066.                       version of events are written.  This option is useful
    1067.                       during some upgrades.
    1068.   --log-error[=name]  Error log file
    1069.   --log-error-services=name
    1070.                       Services that should be called when an error event is
    1071.                       received
    1072.   --log-error-suppression-list=name
    1073.                       Comma-separated list of error-codes. Error messages
    1074.                       corresponding to these codes will not be included in the
    1075.                       error log. Only events with a severity of Warning or
    1076.                       Information can be suppressed; events with System or
    1077.                       Error severity will always be included. Requires the
    1078.                       filter 'log_filter_internal' to be set in
    1079.                       @@global.log_error_services, which is the default.
    1080.   --log-error-verbosity=#
    1081.                       How detailed the error log should be. 1, log errors only.
    1082.                       2, log errors and warnings. 3, log errors, warnings, and
    1083.                       notes. Messages sent to the client are unaffected by this
    1084.                       setting.
    1085.   --log-isam[=name]   Log all MyISAM changes to file.
    1086.   --log-output=name   Syntax: log-output=value[,value...], where "value" could
    1087.                       be TABLE, FILE or NONE
    1088.   --log-queries-not-using-indexes
    1089.                       Log queries that are executed without benefit of any
    1090.                       index to the slow log if it is open
    1091.   --log-raw           Log to general log before any rewriting of the query. For
    1092.                       use in debugging, not production as sensitive information
    1093.                       may be logged.
    1094.   --log-replica-updates
    1095.                       If enabled, the replication applier threads will write to
    1096.                       this server's binary log.
    1097.                       (Defaults to on; use --skip-log-replica-updates to disable.)
    1098.   --log-short-format  Don't log extra information to update and slow-query
    1099.                       logs.
    1100.   --log-slave-updates This option is deprecated. Use log_replica_updates
    1101.                       instead.
    1102.                       (Defaults to on; use --skip-log-slave-updates to disable.)
    1103.   --log-slow-admin-statements
    1104.                       Log slow OPTIMIZE, ANALYZE, ALTER and other
    1105.                       administrative statements to the slow log if it is open.
    1106.   --log-slow-extra    Print more attributes to the slow query log file. Has no
    1107.                       effect on logging to table.
    1108.   --log-slow-replica-statements
    1109.                       Log slow statements executed by the replication applier
    1110.                       threads to the slow log if it is open.
    1111.   --log-slow-slave-statements
    1112.                       This option is deprecated. Use
    1113.                       log_slow_replica_statements instead.
    1114.   --log-statements-unsafe-for-binlog
    1115.                       Log statements considered unsafe when using statement
    1116.                       based binary logging.
    1117.                       (Defaults to on; use --skip-log-statements-unsafe-for-binlog to disable.)
    1118.   --log-tc=name       Path to transaction coordinator log (used for
    1119.                       transactions that affect more than one storage engine,
    1120.                       when binary log is disabled).
    1121.   --log-tc-size=#     Size of transaction coordinator log.
    1122.   --log-throttle-queries-not-using-indexes=#
    1123.                       Log at most this many 'not using index' warnings per
    1124.                       minute to the slow log. Any further warnings will be
    1125.                       condensed into a single summary line. A value of 0
    1126.                       disables throttling. Option has no effect unless
    1127.                       --log_queries_not_using_indexes is set.
    1128.   --log-timestamps=name
    1129.                       UTC to timestamp log files in zulu time, for more concise
    1130.                       timestamps and easier correlation of logs from servers
    1131.                       from multiple time zones, or SYSTEM to use the system's
    1132.                       local time. This affects only log files, not log tables,
    1133.                       as the timestamp columns of the latter can be converted
    1134.                       at will.
    1135.   --long-query-time=# Log all queries that have taken more than long_query_time
    1136.                       seconds to execute to file. The argument will be treated
    1137.                       as a decimal value with microsecond precision
    1138.   --low-priority-updates
    1139.                       INSERT/DELETE/UPDATE has lower priority than selects
    1140.   --lower-case-table-names[=#]
    1141.                       If set to 1 table names are stored in lowercase on disk
    1142.                       and table names will be case-insensitive.  Should be set
    1143.                       to 2 if you are using a case insensitive file system
    1144.   --mandatory-roles=name
    1145.                       All the specified roles are always considered granted to
    1146.                       every user and they can't be revoked. Mandatory roles
    1147.                       still require activation unless they are made into
    1148.                       default roles. The granted roles will not be visible in
    1149.                       the mysql.role_edges table.
    1150.   --master-info-file=name
    1151.                       The path and filename where the replication receiver
    1152.                       thread stores connection configuration and positions, in
    1153.                       case --master-info-repository=FILE. This option is
    1154.                       deprecated and will be removed in a future version.
    1155.   --master-info-repository=name
    1156.                       The repository format for the replication connection
    1157.                       configuration.
    1158.   --master-retry-count=#
    1159.                       The number of times this replica will attempt to connect
    1160.                       to a source before giving up. This option is deprecated
    1161.                       and will be removed in a future version. Use 'CHANGE
    1162.                       REPLICATION SOURCE TO SOURCE_RETRY_COUNT = <num>'
    1163.                       instead.
    1164.   --master-verify-checksum
    1165.                       This option is deprecated. Use source_verify_checksum
    1166.                       instead.
    1167.   --max-allowed-packet=#
    1168.                       Max packet length to send to or receive from the server
    1169.   --max-binlog-cache-size=#
    1170.                       Sets the total size of the transactional cache
    1171.   --max-binlog-dump-events=#
    1172.                       Option used by mysql-test for debugging and testing of
    1173.                       replication.
    1174.   --max-binlog-size=# Binary log will be rotated automatically when the size
    1175.                       exceeds this value. Will also apply to relay logs if
    1176.                       max_relay_log_size is 0
    1177.   --max-binlog-stmt-cache-size=#
    1178.                       Sets the total size of the statement cache
    1179.   --max-connect-errors=#
    1180.                       If there is more than this number of interrupted
    1181.                       connections from a host this host will be blocked from
    1182.                       further connections
    1183.   --max-connections=# The number of simultaneous clients allowed
    1184.   --max-delayed-threads=#
    1185.                       Don't start more than this number of threads to handle
    1186.                       INSERT DELAYED statements. If set to zero INSERT DELAYED
    1187.                       will be not used. This variable is deprecated along with
    1188.                       INSERT DELAYED.
    1189.   --max-digest-length=#
    1190.                       Maximum length considered for digest text.
    1191.   --max-error-count=# Max number of errors/warnings to store for a statement
    1192.   --max-execution-time=#
    1193.                       Kill SELECT statement that takes over the specified
    1194.                       number of milliseconds
    1195.   --max-heap-table-size=#
    1196.                       Don't allow creation of heap tables bigger than this
    1197.   --max-join-size=#   Joins that are probably going to read more than
    1198.                       max_join_size records return an error
    1199.   --max-length-for-sort-data=#
    1200.                       This variable is deprecated and will be removed in a
    1201.                       future release.
    1202.   --max-points-in-geometry[=#]
    1203.                       Maximum number of points in a geometry
    1204.   --max-prepared-stmt-count=#
    1205.                       Maximum number of prepared statements in the server
    1206.   --max-relay-log-size=#
    1207.                       If non-zero: relay log will be rotated automatically when
    1208.                       the size exceeds this value; if zero: when the size
    1209.                       exceeds max_binlog_size
    1210.   --max-seeks-for-key=#
    1211.                       Limit assumed max number of seeks when looking up rows
    1212.                       based on a key
    1213.   --max-sort-length=# The number of bytes to use when sorting long values with
    1214.                       PAD SPACE collations (only the first max_sort_length
    1215.                       bytes of each value are used; the rest are ignored)
    1216.   --max-sp-recursion-depth[=#]
    1217.                       Maximum stored procedure recursion depth
    1218.   --max-user-connections=#
    1219.                       The maximum number of active connections for a single
    1220.                       user (0 = no limit)
    1221.   --max-write-lock-count=#
    1222.                       After this many write locks, allow some read locks to run
    1223.                       in between
    1224.   --memlock           Lock mysqld in memory.
    1225.   --min-examined-row-limit=#
    1226.                       Don't write queries to slow log that examine fewer rows
    1227.                       than that
    1228.   --myisam-block-size=#
    1229.                       Block size to be used for MyISAM index pages
    1230.   --myisam-data-pointer-size=#
    1231.                       Default pointer size to be used for MyISAM tables
    1232.   --myisam-max-sort-file-size=#
    1233.                       Don't use the fast sort index method to created index if
    1234.                       the temporary file would get bigger than this
    1235.   --myisam-mmap-size=#
    1236.                       Restricts the total memory used for memory mapping of
    1237.                       MySQL tables
    1238.   --myisam-recover-options[=name]
    1239.                       Syntax: myisam-recover-options[=option[,option...]],
    1240.                       where option can be DEFAULT, BACKUP, FORCE, QUICK, or OFF
    1241.   --myisam-repair-threads=#
    1242.                       If larger than 1, when repairing a MyISAM table all
    1243.                       indexes will be created in parallel, with one thread per
    1244.                       index. The value of 1 disables parallel repair
    1245.   --myisam-sort-buffer-size=#
    1246.                       The buffer that is allocated when sorting the index when
    1247.                       doing a REPAIR or when creating indexes with CREATE INDEX
    1248.                       or ALTER TABLE
    1249.   --myisam-stats-method=name
    1250.                       Specifies how MyISAM index statistics collection code
    1251.                       should treat NULLs. Possible values of name are
    1252.                       NULLS_UNEQUAL (default behavior for 4.1 and later),
    1253.                       NULLS_EQUAL (emulate 4.0 behavior), and NULLS_IGNORED
    1254.   --myisam-use-mmap   Use memory mapping for reading and writing MyISAM tables
    1255.   --mysql-native-password-proxy-users
    1256.                       If set to FALSE (the default), then the
    1257.                       mysql_native_password plugin will not signal for
    1258.                       authenticated users to be checked for mapping to proxy
    1259.                       users.  When set to TRUE, the plugin will flag associated
    1260.                       authenticated accounts to be mapped to proxy users when
    1261.                       the server option check_proxy_users is enabled.
    1262.   --mysqlx[=name]     Enable or disable mysqlx plugin. Possible values are ON,
    1263.                       OFF, FORCE (don't start if the plugin fails to load).
    1264.   --mysqlx-bind-address[=name]
    1265.                       Address to which X Plugin should bind the TCP socket
    1266.                       optionally followed by a network namespace delimited with
    1267.                       /. E.g., the string value 127.0.0.1/red specifies to
    1268.                       listen on IP address 127.0.0.1 from the network namespace
    1269.                       'red'.
    1270.   --mysqlx-cache-cleaner[=name]
    1271.                       Enable or disable mysqlx_cache_cleaner plugin. Possible
    1272.                       values are ON, OFF, FORCE (don't start if the plugin
    1273.                       fails to load).
    1274.   --mysqlx-compression-algorithms[=name]
    1275.                       Compression algorithms: where option can be
    1276.                       DEFLATE_STREAM, LZ4_MESSAGE, ZSTD_STREAM
    1277.   --mysqlx-connect-timeout[=#]
    1278.                       Maximum allowed waiting time for connection to setup a
    1279.                       session (in seconds).
    1280.   --mysqlx-deflate-default-compression-level[=#]
    1281.                       Default value of compression level for deflate algorithm
    1282.   --mysqlx-deflate-max-client-compression-level[=#]
    1283.                       Max value of compression level for deflate algorithm
    1284.   --mysqlx-document-id-unique-prefix[=#]
    1285.                       Unique prefix is a value assigned by InnoDB cluster to
    1286.                       the instance, which is meant to make document id unique
    1287.                       across all replicasets from the same cluster
    1288.   --mysqlx-enable-hello-notice
    1289.                       Hello notice is a X Protocol message send by the server
    1290.                       after connection establishment, using this variable it
    1291.                       can be disabled
    1292.                       (Defaults to on; use --skip-mysqlx-enable-hello-notice to disable.)
    1293.   --mysqlx-idle-worker-thread-timeout[=#]
    1294.                       Time after which an idle worker thread is terminated (in
    1295.                       seconds).
    1296.   --mysqlx-interactive-timeout[=#]
    1297.                       Default value for "mysqlx_wait_timeout", when the
    1298.                       connection is interactive. The value defines number or
    1299.                       seconds that X Plugin must wait for activity on
    1300.                       interactive connection
    1301.   --mysqlx-lz4-default-compression-level[=#]
    1302.                       Default value of compression level for lz4 algorithm
    1303.   --mysqlx-lz4-max-client-compression-level[=#]
    1304.                       Max value of compression level for lz4 algorithm
    1305.   --mysqlx-max-allowed-packet[=#]
    1306.                       Size of largest message that client is going to handle.
    1307.   --mysqlx-max-connections[=#]
    1308.                       Maximum number of concurrent X protocol connections.
    1309.                       Actual number of connections is also affected by the
    1310.                       general max_connections.
    1311.   --mysqlx-min-worker-threads[=#]
    1312.                       Minimal number of worker threads.
    1313.   --mysqlx-port[=#]   Port on which X Plugin is going to accept incoming
    1314.                       connections.
    1315.   --mysqlx-port-open-timeout[=#]
    1316.                       How long X Plugin is going to retry binding of server
    1317.                       socket (in case of failure)
    1318.   --mysqlx-read-timeout[=#]
    1319.                       Number or seconds that X Plugin must wait for blocking
    1320.                       read operation to complete
    1321.   --mysqlx-socket[=name]
    1322.                       X Plugin's unix socket for local connection.
    1323.   --mysqlx-ssl-ca=name
    1324.                       CA file in PEM format.
    1325.   --mysqlx-ssl-capath=name
    1326.                       CA directory.
    1327.   --mysqlx-ssl-cert=name
    1328.                       X509 cert in PEM format.
    1329.   --mysqlx-ssl-cipher=name
    1330.                       SSL cipher to use.
    1331.   --mysqlx-ssl-crl=name
    1332.                       Certificate revocation list.
    1333.   --mysqlx-ssl-crlpath=name
    1334.                       Certificate revocation list path.
    1335.   --mysqlx-ssl-key=name
    1336.                       X509 key in PEM format.
    1337.   --mysqlx-wait-timeout[=#]
    1338.                       Number or seconds that X Plugin must wait for activity on
    1339.                       noninteractive connection
    1340.   --mysqlx-write-timeout[=#]
    1341.                       Number or seconds that X Plugin must wait for blocking
    1342.                       write operation to complete
    1343.   --mysqlx-zstd-default-compression-level[=#]
    1344.                       Default value of compression level for zstd algorithm
    1345.   --mysqlx-zstd-max-client-compression-level[=#]
    1346.                       Max value of compression level for zstd algorithm
    1347.   --net-buffer-length=#
    1348.                       Buffer length for TCP/IP and socket communication
    1349.   --net-read-timeout=#
    1350.                       Number of seconds to wait for more data from a connection
    1351.                       before aborting the read
    1352.   --net-retry-count=# If a read on a communication port is interrupted, retry
    1353.                       this many times before giving up
    1354.   --net-write-timeout=#
    1355.                       Number of seconds to wait for a block to be written to a
    1356.                       connection before aborting the write
    1357.   -n, --new           Use very new possible "unsafe" functions
    1358.   --ngram[=name]      Enable or disable ngram plugin. Possible values are ON,
    1359.                       OFF, FORCE (don't start if the plugin fails to load).
    1360.   --ngram-token-size=#
    1361.                       InnoDB ngram full text plugin parser token size in
    1362.                       characters
    1363.   --no-dd-upgrade     Abort restart if automatic upgrade or downgrade of the
    1364.                       data dictionary is needed. Deprecated option. Use
    1365.                       --upgrade=NONE instead.
    1366.   --offline-mode      Make the server into offline mode
    1367.   --old               Use compatible behavior
    1368.   --old-alter-table   Use old, non-optimized alter table
    1369.   --old-style-user-limits
    1370.                       Enable old-style user limits (before 5.0.3, user
    1371.                       resources were counted for each user + host vs. per
    1372.                       account).
    1373.   --open-files-limit=#
    1374.                       If this is not 0, then mysqld will use this value to
    1375.                       reserve file descriptors to use with setrlimit(). If this
    1376.                       value is 0 then mysqld will reserve max_connections*5 or
    1377.                       max_connections + table_open_cache*2 (whichever is
    1378.                       larger) number of file descriptors
    1379.   --optimizer-prune-level=#
    1380.                       Controls the heuristic(s) applied during query
    1381.                       optimization to prune less-promising partial plans from
    1382.                       the optimizer search space. Meaning: 0 - do not apply any
    1383.                       heuristic, thus perform exhaustive search; 1 - prune
    1384.                       plans based on number of retrieved rows
    1385.   --optimizer-search-depth=#
    1386.                       Maximum depth of search performed by the query optimizer.
    1387.                       Values larger than the number of relations in a query
    1388.                       result in better query plans, but take longer to compile
    1389.                       a query. Values smaller than the number of tables in a
    1390.                       relation result in faster optimization, but may produce
    1391.                       very bad query plans. If set to 0, the system will
    1392.                       automatically pick a reasonable value
    1393.   --optimizer-switch=name
    1394.                       optimizer_switch=option=val[,option=val...], where option
    1395.                       is one of {index_merge, index_merge_union,
    1396.                       index_merge_sort_union, index_merge_intersection,
    1397.                       engine_condition_pushdown, index_condition_pushdown, mrr,
    1398.                       mrr_cost_based, materialization, semijoin, loosescan,
    1399.                       firstmatch, duplicateweedout,
    1400.                       subquery_materialization_cost_based, skip_scan,
    1401.                       block_nested_loop, batched_key_access,
    1402.                       use_index_extensions, condition_fanout_filter,
    1403.                       derived_merge, hash_join, subquery_to_derived,
    1404.                       prefer_ordering_index, derived_condition_pushdown} and
    1405.                       val is one of {on, off, default}
    1406.   --optimizer-trace=name
    1407.                       Controls tracing of the Optimizer:
    1408.                       optimizer_trace=option=val[,option=val...], where option
    1409.                       is one of {enabled, one_line} and val is one of {on,
    1410.                       default}
    1411.   --optimizer-trace-features=name
    1412.                       Enables/disables tracing of selected features of the
    1413.                       Optimizer:
    1414.                       optimizer_trace_features=option=val[,option=val...],
    1415.                       where option is one of {greedy_search, range_optimizer,
    1416.                       dynamic_range, repeated_subselect} and val is one of {on,
    1417.                       off, default}
    1418.   --optimizer-trace-limit=#
    1419.                       Maximum number of shown optimizer traces
    1420.   --optimizer-trace-max-mem-size=#
    1421.                       Maximum allowed cumulated size of stored optimizer traces
    1422.   --optimizer-trace-offset=#
    1423.                       Offset of first optimizer trace to show; see manual
    1424.   --parser-max-mem-size=#
    1425.                       Maximum amount of memory available to the parser
    1426.   --partial-revokes   Access of database objects can be restricted, even if
    1427.                       user has global privileges granted.
    1428.   --password-history=#
    1429.                       The number of old passwords to check in the history. Set
    1430.                       to 0 (the default) to turn the checks off
    1431.   --password-require-current
    1432.                       Current password is needed to be specified in order to
    1433.                       change it
    1434.   --password-reuse-interval=#
    1435.                       The minimum number of days that need to pass before a
    1436.                       password can be reused. Set to 0 (the default) to turn
    1437.                       the checks off
    1438.   --performance-schema
    1439.                       Enable the performance schema.
    1440.                       (Defaults to on; use --skip-performance-schema to disable.)
    1441.   --performance-schema-accounts-size=#
    1442.                       Maximum number of instrumented user@host accounts. Use 0
    1443.                       to disable, -1 for automated scaling.
    1444.   --performance-schema-consumer-events-stages-current
    1445.                       Default startup value for the events_stages_current
    1446.                       consumer.
    1447.   --performance-schema-consumer-events-stages-history
    1448.                       Default startup value for the events_stages_history
    1449.                       consumer.
    1450.   --performance-schema-consumer-events-stages-history-long
    1451.                       Default startup value for the events_stages_history_long
    1452.                       consumer.
    1453.   --performance-schema-consumer-events-statements-current
    1454.                       Default startup value for the events_statements_current
    1455.                       consumer.
    1456.                       (Defaults to on; use --skip-performance-schema-consumer-events-statements-current to disable.)
    1457.   --performance-schema-consumer-events-statements-history
    1458.                       Default startup value for the events_statements_history
    1459.                       consumer.
    1460.                       (Defaults to on; use --skip-performance-schema-consumer-events-statements-history to disable.)
    1461.   --performance-schema-consumer-events-statements-history-long
    1462.                       Default startup value for the
    1463.                       events_statements_history_long consumer.
    1464.   --performance-schema-consumer-events-transactions-current
    1465.                       Default startup value for the events_transactions_current
    1466.                       consumer.
    1467.                       (Defaults to on; use --skip-performance-schema-consumer-events-transactions-current to disable.)
    1468.   --performance-schema-consumer-events-transactions-history
    1469.                       Default startup value for the events_transactions_history
    1470.                       consumer.
    1471.                       (Defaults to on; use --skip-performance-schema-consumer-events-transactions-history to disable.)
    1472.   --performance-schema-consumer-events-transactions-history-long
    1473.                       Default startup value for the
    1474.                       events_transactions_history_long consumer.
    1475.   --performance-schema-consumer-events-waits-current
    1476.                       Default startup value for the events_waits_current
    1477.                       consumer.
    1478.   --performance-schema-consumer-events-waits-history
    1479.                       Default startup value for the events_waits_history
    1480.                       consumer.
    1481.   --performance-schema-consumer-events-waits-history-long
    1482.                       Default startup value for the events_waits_history_long
    1483.                       consumer.
    1484.   --performance-schema-consumer-global-instrumentation
    1485.                       Default startup value for the global_instrumentation
    1486.                       consumer.
    1487.                       (Defaults to on; use --skip-performance-schema-consumer-global-instrumentation to disable.)
    1488.   --performance-schema-consumer-statements-digest
    1489.                       Default startup value for the statements_digest consumer.
    1490.                       (Defaults to on; use --skip-performance-schema-consumer-statements-digest to disable.)
    1491.   --performance-schema-consumer-thread-instrumentation
    1492.                       Default startup value for the thread_instrumentation
    1493.                       consumer.
    1494.                       (Defaults to on; use --skip-performance-schema-consumer-thread-instrumentation to disable.)
    1495.   --performance-schema-digests-size=#
    1496.                       Size of the statement digest. Use 0 to disable, -1 for
    1497.                       automated sizing.
    1498.   --performance-schema-error-size=#
    1499.                       Number of server errors instrumented.
    1500.   --performance-schema-events-stages-history-long-size=#
    1501.                       Number of rows in EVENTS_STAGES_HISTORY_LONG. Use 0 to
    1502.                       disable, -1 for automated sizing.
    1503.   --performance-schema-events-stages-history-size=#
    1504.                       Number of rows per thread in EVENTS_STAGES_HISTORY. Use 0
    1505.                       to disable, -1 for automated sizing.
    1506.   --performance-schema-events-statements-history-long-size=#
    1507.                       Number of rows in EVENTS_STATEMENTS_HISTORY_LONG. Use 0
    1508.                       to disable, -1 for automated sizing.
    1509.   --performance-schema-events-statements-history-size=#
    1510.                       Number of rows per thread in EVENTS_STATEMENTS_HISTORY.
    1511.                       Use 0 to disable, -1 for automated sizing.
    1512.   --performance-schema-events-transactions-history-long-size=#
    1513.                       Number of rows in EVENTS_TRANSACTIONS_HISTORY_LONG. Use 0
    1514.                       to disable, -1 for automated sizing.
    1515.   --performance-schema-events-transactions-history-size=#
    1516.                       Number of rows per thread in EVENTS_TRANSACTIONS_HISTORY.
    1517.                       Use 0 to disable, -1 for automated sizing.
    1518.   --performance-schema-events-waits-history-long-size=#
    1519.                       Number of rows in EVENTS_WAITS_HISTORY_LONG. Use 0 to
    1520.                       disable, -1 for automated sizing.
    1521.   --performance-schema-events-waits-history-size=#
    1522.                       Number of rows per thread in EVENTS_WAITS_HISTORY. Use 0
    1523.                       to disable, -1 for automated sizing.
    1524.   --performance-schema-hosts-size=#
    1525.                       Maximum number of instrumented hosts. Use 0 to disable,
    1526.                       -1 for automated scaling.
    1527.   --performance-schema-instrument[=name]
    1528.                       Default startup value for a performance schema
    1529.                       instrument.
    1530.   --performance-schema-max-cond-classes=#
    1531.                       Maximum number of condition instruments.
    1532.   --performance-schema-max-cond-instances=#
    1533.                       Maximum number of instrumented condition objects. Use 0
    1534.                       to disable, -1 for automated scaling.
    1535.   --performance-schema-max-digest-length=#
    1536.                       Maximum length considered for digest text, when stored in
    1537.                       performance_schema tables.
    1538.   --performance-schema-max-digest-sample-age=#
    1539.                       The time in seconds after which a previous query sample
    1540.                       is considered old. When the value is 0, queries are
    1541.                       sampled once. When the value is greater than zero,
    1542.                       queries are re sampled if the last sample is more than
    1543.                       performance_schema_max_digest_sample_age seconds old.
    1544.   --performance-schema-max-file-classes=#
    1545.                       Maximum number of file instruments.
    1546.   --performance-schema-max-file-handles=#
    1547.                       Maximum number of opened instrumented files.
    1548.   --performance-schema-max-file-instances=#
    1549.                       Maximum number of instrumented files. Use 0 to disable,
    1550.                       -1 for automated scaling.
    1551.   --performance-schema-max-index-stat=#
    1552.                       Maximum number of index statistics for instrumented
    1553.                       tables. Use 0 to disable, -1 for automated scaling.
    1554.   --performance-schema-max-memory-classes=#
    1555.                       Maximum number of memory pool instruments.
    1556.   --performance-schema-max-metadata-locks=#
    1557.                       Maximum number of metadata locks. Use 0 to disable, -1
    1558.                       for automated scaling.
    1559.   --performance-schema-max-mutex-classes=#
    1560.                       Maximum number of mutex instruments.
    1561.   --performance-schema-max-mutex-instances=#
    1562.                       Maximum number of instrumented MUTEX objects. Use 0 to
    1563.                       disable, -1 for automated scaling.
    1564.   --performance-schema-max-prepared-statements-instances=#
    1565.                       Maximum number of instrumented prepared statements. Use 0
    1566.                       to disable, -1 for automated scaling.
    1567.   --performance-schema-max-program-instances=#
    1568.                       Maximum number of instrumented programs. Use 0 to
    1569.                       disable, -1 for automated scaling.
    1570.   --performance-schema-max-rwlock-classes=#
    1571.                       Maximum number of rwlock instruments.
    1572.   --performance-schema-max-rwlock-instances=#
    1573.                       Maximum number of instrumented RWLOCK objects. Use 0 to
    1574.                       disable, -1 for automated scaling.
    1575.   --performance-schema-max-socket-classes=#
    1576.                       Maximum number of socket instruments.
    1577.   --performance-schema-max-socket-instances=#
    1578.                       Maximum number of opened instrumented sockets. Use 0 to
    1579.                       disable, -1 for automated scaling.
    1580.   --performance-schema-max-sql-text-length=#
    1581.                       Maximum length of displayed sql text.
    1582.   --performance-schema-max-stage-classes=#
    1583.                       Maximum number of stage instruments.
    1584.   --performance-schema-max-statement-classes=#
    1585.                       Maximum number of statement instruments.
    1586.   --performance-schema-max-statement-stack=#
    1587.                       Number of rows per thread in EVENTS_STATEMENTS_CURRENT.
    1588.   --performance-schema-max-table-handles=#
    1589.                       Maximum number of opened instrumented tables. Use 0 to
    1590.                       disable, -1 for automated scaling.
    1591.   --performance-schema-max-table-instances=#
    1592.                       Maximum number of instrumented tables. Use 0 to disable,
    1593.                       -1 for automated scaling.
    1594.   --performance-schema-max-table-lock-stat=#
    1595.                       Maximum number of lock statistics for instrumented
    1596.                       tables. Use 0 to disable, -1 for automated scaling.
    1597.   --performance-schema-max-thread-classes=#
    1598.                       Maximum number of thread instruments.
    1599.   --performance-schema-max-thread-instances=#
    1600.                       Maximum number of instrumented threads. Use 0 to disable,
    1601.                       -1 for automated scaling.
    1602.   --performance-schema-session-connect-attrs-size=#
    1603.                       Size of session attribute string buffer per thread. Use 0
    1604.                       to disable, -1 for automated sizing.
    1605.   --performance-schema-setup-actors-size=#
    1606.                       Maximum number of rows in SETUP_ACTORS. Use 0 to disable,
    1607.                       -1 for automated scaling.
    1608.   --performance-schema-setup-objects-size=#
    1609.                       Maximum number of rows in SETUP_OBJECTS. Use 0 to
    1610.                       disable, -1 for automated scaling.
    1611.   --performance-schema-show-processlist
    1612.                       Default startup value to enable SHOW PROCESSLIST in the
    1613.                       performance schema.
    1614.   --performance-schema-users-size=#
    1615.                       Maximum number of instrumented users. Use 0 to disable,
    1616.                       -1 for automated scaling.
    1617.   --persist-only-admin-x509-subject[=name]
    1618.                       The client peer certificate name required to enable
    1619.                       setting all system variables via SET PERSIST[_ONLY]
    1620.   --persisted-globals-load
    1621.                       When this option is enabled, config file mysqld-auto.cnf
    1622.                       is read and applied to server, else this file is ignored
    1623.                       even if present.
    1624.                       (Defaults to on; use --skip-persisted-globals-load to disable.)
    1625.   --pid-file=name     Pid file used by safe_mysqld
    1626.   --plugin-dir=name   Directory for plugins
    1627.   --plugin-load=name  Optional semicolon-separated list of plugins to load,
    1628.                       where each plugin is identified as name=library, where
    1629.                       name is the plugin name and library is the plugin library
    1630.                       in plugin_dir.
    1631.   --plugin-load-add=name
    1632.                       Optional semicolon-separated list of plugins to load,
    1633.                       where each plugin is identified as name=library, where
    1634.                       name is the plugin name and library is the plugin library
    1635.                       in plugin_dir. This option adds to the list specified by
    1636.                       --plugin-load in an incremental way. Multiple
    1637.                       --plugin-load-add are supported.
    1638.   -P, --port=#        Port number to use for connection or 0 to default to,
    1639.                       my.cnf, $MYSQL_TCP_PORT, /etc/services, built-in default
    1640.                       (3306), whatever comes first
    1641.   --port-open-timeout=#
    1642.                       Maximum time in seconds to wait for the port to become
    1643.                       free. (Default: No wait).
    1644.   --preload-buffer-size=#
    1645.                       The size of the buffer that is allocated when preloading
    1646.                       indexes
    1647.   --print-identified-with-as-hex
    1648.                       SHOW CREATE USER will print the AS clause as HEX if it
    1649.                       contains non-prinable characters
    1650.   --profiling-history-size=#
    1651.                       Limit of query profiling memory
    1652.   --protocol-compression-algorithms=name
    1653.                       List of compression algorithms supported by server.
    1654.                       Supported values are any combination of zlib, zstd,
    1655.                       uncompressed. Command line clients may use the
    1656.                       --compression-algorithms flag to specify a set of
    1657.                       algorithms, and the connection will use an algorithm
    1658.                       supported by both client and server. It picks zlib if
    1659.                       both client and server support it; otherwise it picks
    1660.                       zstd if both support it; otherwise it picks uncompressed
    1661.                       if both support it; otherwise it fails.
    1662.   --query-alloc-block-size=#
    1663.                       Allocation block size for query parsing and execution
    1664.   --query-prealloc-size=#
    1665.                       Persistent buffer for query parsing and execution
    1666.   --range-alloc-block-size=#
    1667.                       Allocation block size for storing ranges during
    1668.                       optimization
    1669.   --range-optimizer-max-mem-size=#
    1670.                       Maximum amount of memory used by the range optimizer to
    1671.                       allocate predicates during range analysis. The larger the
    1672.                       number, more memory may be consumed during range
    1673.                       analysis. If the value is too low to completed range
    1674.                       optimization of a query, index range scan will not be
    1675.                       considered for this query. A value of 0 means range
    1676.                       optimizer does not have any cap on memory.
    1677.   --read-buffer-size=#
    1678.                       Each thread that does a sequential scan allocates a
    1679.                       buffer of this size for each table it scans. If you do
    1680.                       many sequential scans, you may want to increase this
    1681.                       value
    1682.   --read-only         Make all non-temporary tables read-only, with the
    1683.                       exception for replication applier threads and users with
    1684.                       the SUPER privilege.
    1685.   --read-rnd-buffer-size=#
    1686.                       When reading rows in sorted order after a sort, the rows
    1687.                       are read through this buffer to avoid a disk seeks
    1688.   --regexp-stack-limit=#
    1689.                       Stack size limit for regular expressions matches
    1690.   --regexp-time-limit=#
    1691.                       Timeout for regular expressions matches, in steps of the
    1692.                       match engine, typically on the order of milliseconds.
    1693.   --relay-log=name    The location and name to use for relay logs
    1694.   --relay-log-index=name
    1695.                       File that holds the names for relay log files.
    1696.   --relay-log-info-file=name
    1697.                       The location and name of the file that remembers where
    1698.                       the SQL replication thread is in the relay logs
    1699.   --relay-log-info-repository=name
    1700.                       Defines the type of the repository for the relay log
    1701.                       information and associated workers.
    1702.   --relay-log-purge   if disabled - do not purge relay logs. if enabled - purge
    1703.                       them as soon as they are no more needed
    1704.                       (Defaults to on; use --skip-relay-log-purge to disable.)
    1705.   --relay-log-recovery
    1706.                       If enabled, existing relay logs will be skipped by the
    1707.                       replication threads. The receiver will start a new relay
    1708.                       log and the applier will start reading from the beginning
    1709.                       of that file. The receiver's position relative to the
    1710.                       source will be reset to the applier's position relative
    1711.                       to the source; the receiver uses this in case
    1712.                       SOURCE_AUTO_POSITION=0.
    1713.   --relay-log-space-limit=#
    1714.                       Maximum space to use for all relay logs
    1715.   --replica-allow-batching
    1716.                       Allow this replica to batch requests when using the NDB
    1717.                       storage engine.
    1718.   --replica-checkpoint-group=#
    1719.                       When using multi-threaded applier
    1720.                       (replica_parallel_workers>0), it will update the worker
    1721.                       progress status periodically. This option specifies the
    1722.                       maximum number of committed transactions between updates.
    1723.   --replica-checkpoint-period=#
    1724.                       When using a multi-threaded applier
    1725.                       (replica_parallel_workers>0), it will update the worker
    1726.                       progress status periodically. This option specifies the
    1727.                       maximum number of milliseconds between updates.
    1728.   --replica-compressed-protocol
    1729.                       Use compression in the source/replica protocol.
    1730.   --replica-exec-mode=name
    1731.                       Modes for how replication events should be executed.
    1732.                       Legal values are STRICT (default) and IDEMPOTENT. In
    1733.                       IDEMPOTENT mode, replication will ignore duplicate key
    1734.                       errors and key not found errors. In STRICT mode,
    1735.                       replication will stop at those errors.
    1736.   --replica-load-tmpdir=name
    1737.                       The location where this replica will store temporary
    1738.                       files when replicating a LOAD DATA INFILE command from a
    1739.                       source having binlog_format=STATEMENT.
    1740.   --replica-max-allowed-packet=#
    1741.                       The maximum size of packets sent from an upstream source
    1742.                       server to this server.
    1743.   --replica-net-timeout=#
    1744.                       Number of seconds to wait for more data from a
    1745.                       replication connection before aborting the read.
    1746.   --replica-parallel-type=name
    1747.                       The method used by the replication applier to parallelize
    1748.                       transactions. DATABASE, indicates that it may apply
    1749.                       transactions in parallel in case they update different
    1750.                       databases. LOGICAL_CLOCK, which is the default, indicates
    1751.                       that it decides whether two transactions can be applied
    1752.                       in parallel using the logical timestamps computed by the
    1753.                       source, according to
    1754.                       binlog_transaction_dependency_tracking.
    1755.   --replica-parallel-workers=#
    1756.                       Number of worker threads for executing events in parallel
    1757.                      
    1758.   --replica-pending-jobs-size-max=#
    1759.                       Soft limit on the size, in bytes, of per-worker queues of
    1760.                       events that have not yet been applied. The queue size may
    1761.                       exceed this limit in case a single event is bigger than
    1762.                       the limit.
    1763.   --replica-preserve-commit-order
    1764.                       Force replication worker threads to commit in the same
    1765.                       order as on the source. Enabled by default
    1766.                       (Defaults to on; use --skip-replica-preserve-commit-order to disable.)
    1767.   --replica-skip-errors=name
    1768.                       Comma-separated list of error numbers. If an applier
    1769.                       thread on this replica encounters one of these errors
    1770.                       while applying a Query_log_event, it will ignore the
    1771.                       error, rather than stop.
    1772.   --replica-sql-verify-checksum
    1773.                       Force checksum verification of replication events after
    1774.                       reading them from relay log. Note: The replica always
    1775.                       verifies checksums for events received from the network,
    1776.                       if the event has a checksum at all, before it writes the
    1777.                       event to the relay log. Enabled by default.
    1778.                       (Defaults to on; use --skip-replica-sql-verify-checksum to disable.)
    1779.   --replica-transaction-retries=#
    1780.                       Number of times the replication applier will retry a
    1781.                       transaction in case it failed with a deadlock or other
    1782.                       transient error, before it gives up and stops.
    1783.   --replica-type-conversions=name
    1784.                       Set of type conversions that may be used by the
    1785.                       replication applier thread for row events. Allowed values
    1786.                       are: ALL_LOSSY to enable lossy conversions, ALL_NON_LOSSY
    1787.                       to enable non-lossy conversions, ALL_UNSIGNED to treat
    1788.                       all integer column type data to be unsigned values, and
    1789.                       ALL_SIGNED to treat all integer column type data to be
    1790.                       signed values. Default treatment is ALL_SIGNED. If
    1791.                       ALL_SIGNED and ALL_UNSIGNED both are specified,
    1792.                       ALL_SIGNED will take higher priority than ALL_UNSIGNED.
    1793.                       If the variable is assigned the empty set, no conversions
    1794.                       are allowed and it is expected that the types match
    1795.                       exactly.
    1796.   --replicate-do-db=name
    1797.                       Make replication applier threads apply only changes to
    1798.                       the specified database. To specify more than one
    1799.                       database, use the directive multiple times, once for each
    1800.                       database. Note that this will only work if you do not use
    1801.                       cross-database queries such as UPDATE some_db.some_table
    1802.                       SET foo='bar' while having selected a different or no
    1803.                       database. If you need cross database updates to work,
    1804.                       make sure you have 3.23.28 or later, and use
    1805.                       replicate-wild-do-table=db_name.%.
    1806.   --replicate-do-table=name
    1807.                       Make replication applier threads apply only changes to
    1808.                       the specified table. To specify more than one table, use
    1809.                       the directive multiple times, once for each table. This
    1810.                       will work for cross-database updates, in contrast to
    1811.                       replicate-do-db.
    1812.   --replicate-ignore-db=name
    1813.                       Make replication applier threads skip changes to the
    1814.                       specified database. To specify more than one database to
    1815.                       ignore, use this option multiple times, once for each
    1816.                       database. If there are statements that update multiple
    1817.                       databases, this will work correctly only when the source
    1818.                       server uses binlog_format=ROW.
    1819.   --replicate-ignore-table=name
    1820.                       Make replication applier threads skip changes to the
    1821.                       specified table.To ignore more than one table, use the
    1822.                       option multiple times, once for each table. If there are
    1823.                       statements that update multiple tables, this will work
    1824.                       correctly only when the source server uses
    1825.                       binlog_format=ROW.
    1826.   --replicate-rewrite-db=name
    1827.                       Make replication applier threads rename a database, so
    1828.                       changes in one database on the source will be applied in
    1829.                       another database on this replica. Example:
    1830.                       replicate-rewrite-db=source_db_name->replica_db_name.
    1831.   --replicate-same-server-id
    1832.                       In replication, if set to 1, do not skip events having
    1833.                       our server id. Default value is 0 (to break infinite
    1834.                       loops in circular replication). Can't be set to 1 if
    1835.                       --log-replica-updates is used.
    1836.   --replicate-wild-do-table=name
    1837.                       Make replication applier threads apply changes only in
    1838.                       tables that match the specified wildcard pattern. To
    1839.                       specify more than one pattern, use the option multiple
    1840.                       times, once for each pattern. If there are statements
    1841.                       that update both tables that are included and excluded by
    1842.                       the pattern, this will only work correctly when the
    1843.                       source server uses binlog_format=ROW. Example:
    1844.                       replicate-wild-do-table=foo%.bar% will replicate only
    1845.                       updates to tables in all databases that start with foo
    1846.                       and whose table names start with bar.
    1847.   --replicate-wild-ignore-table=name
    1848.                       Make replication applier threads skip changes to tables
    1849.                       that match the specified wildcard pattern. To specify
    1850.                       more than one pattern, use the option multiple times,
    1851.                       once for each pattern. If there are statements that
    1852.                       update both tables that are included and tables that are
    1853.                       excluded by the pattern, this will only work correctly
    1854.                       when the source server uses binlog_format=ROW. Example:
    1855.                       when using replicate-wild-ignore-table=foo%.bar%, the
    1856.                       applier thread will not apply updates to tables in
    1857.                       databases that start with foo and whose table names start
    1858.                       with bar.
    1859.   --replication-optimize-for-static-plugin-config
    1860.                       Optional flag that blocks plugin install/uninstall and
    1861.                       allows skipping the acquisition of the lock to read from
    1862.                       the plugin list and the usage of read-optimized
    1863.                       spin-locks. Use only when plugin hook callback needs
    1864.                       optimization (a lot of semi-sync replicas, for instance).
    1865.   --replication-sender-observe-commit-only
    1866.                       Optional flag that allows for only calling back observer
    1867.                       hooks at commit.
    1868.   --report-host=name  Hostname or IP that this replica will report to the
    1869.                       source while initiating the replication connection. Will
    1870.                       appear in the output of SHOW REPLICAS. Leave this unset
    1871.                       if you do not want the replica to register itself with
    1872.                       the source. Note that it is not sufficient for the source
    1873.                       to simply read the IP of the replica off the socket once
    1874.                       the replica connects: in the presence of NAT other
    1875.                       routing features, that IP may not be valid for connecting
    1876.                       to the replica from the source or other hosts.
    1877.   --report-password=name
    1878.                       The account password that this replica will report to the
    1879.                       source while initiating the replication connection.
    1880.   --report-port=#     The port for connecting to the replica, which this
    1881.                       replica will report to the source while initiating the
    1882.                       replication connection. Set it only if the replica is
    1883.                       listening on a non-default port or if you have a special
    1884.                       tunnel from the source or other clients to this replica.
    1885.                       If not sure, leave this option unset.
    1886.   --report-user=name  The account user name that this replica will report to
    1887.                       the source while initiating the replication connection.
    1888.   --require-secure-transport
    1889.                       When this option is enabled, connections attempted using
    1890.                       insecure transport will be rejected.  Secure transports
    1891.                       are SSL/TLS, Unix socket or Shared Memory (on Windows).
    1892.   --rpl-read-size=#   The size for reads done from the binlog and relay log. It
    1893.                       must be a multiple of 4kb. Making it larger might help
    1894.                       with IO stalls while reading these files when they are
    1895.                       not in the OS buffer cache
    1896.   --rpl-stop-replica-timeout=#
    1897.                       Timeout in seconds to wait for replication threads to
    1898.                       stop, before STOP REPLICA returns a warning.
    1899.   --rpl-stop-slave-timeout=#
    1900.                       This option is deprecated. Use rpl_stop_replica_timeout
    1901.                       instead.
    1902.   --safe-user-create  Don't allow new user creation by the user who has no
    1903.                       write privileges to the mysql.user table.
    1904.   --schema-definition-cache=#
    1905.                       The number of cached schema definitions
    1906.   --secondary-engine-cost-threshold[=#]
    1907.                       Controls which statements to consider for execution in a
    1908.                       secondary storage engine. Only statements that have a
    1909.                       cost estimate higher than this value will be attempted
    1910.                       executed in a secondary storage engine.
    1911.   --secure-file-priv=name
    1912.                       Limit LOAD DATA, SELECT ... OUTFILE, and LOAD_FILE() to
    1913.                       files within specified directory
    1914.   --select-into-buffer-size[=#]
    1915.                       Buffer size for SELECT INTO OUTFILE/DUMPFILE.
    1916.   --select-into-disk-sync
    1917.                       Synchronize flushed buffer with disk for SELECT INTO
    1918.                       OUTFILE/DUMPFILE.
    1919.   --select-into-disk-sync-delay[=#]
    1920.                       The delay in milliseconds after each buffer sync for
    1921.                       SELECT INTO OUTFILE/DUMPFILE. Requires
    1922.                       select_into_sync_disk = ON.
    1923.   --server-id=#       Uniquely identifies the server instance in the community
    1924.                       of replication partners
    1925.   --server-id-bits=#  Set number of significant bits in server-id
    1926.   --session-track-gtids=name
    1927.                       Controls the amount of global transaction ids to be
    1928.                       included in the response packet sent by the
    1929.                       server.(Default: OFF).
    1930.   --session-track-schema
    1931.                       Track changes to the 'default schema'.
    1932.                       (Defaults to on; use --skip-session-track-schema to disable.)
    1933.   --session-track-state-change
    1934.                       Track changes to the 'session state'.
    1935.   --session-track-system-variables=name
    1936.                       Track changes in registered system variables.
    1937.   --session-track-transaction-info=name
    1938.                       Track changes to the transaction attributes. OFF to
    1939.                       disable; STATE to track just transaction state (Is there
    1940.                       an active transaction? Does it have any data? etc.);
    1941.                       CHARACTERISTICS to track transaction state and report all
    1942.                       statements needed to start a transaction with the same
    1943.                       characteristics (isolation level, read only/read write,
    1944.                       snapshot - but not any work done / data modified within
    1945.                       the transaction).
    1946.   --sha256-password-auto-generate-rsa-keys
    1947.                       Auto generate RSA keys at server startup if corresponding
    1948.                       system variables are not specified and key files are not
    1949.                       present at the default location.
    1950.                       (Defaults to on; use --skip-sha256-password-auto-generate-rsa-keys to disable.)
    1951.   --sha256-password-private-key-path=name
    1952.                       A fully qualified path to the private RSA key used for
    1953.                       authentication
    1954.   --sha256-password-proxy-users
    1955.                       If set to FALSE (the default), then the sha256_password
    1956.                       authentication plugin will not signal for authenticated
    1957.                       users to be checked for mapping to proxy users.  When set
    1958.                       to TRUE, the plugin will flag associated authenticated
    1959.                       accounts to be mapped to proxy users when the server
    1960.                       option check_proxy_users is enabled.
    1961.   --sha256-password-public-key-path=name
    1962.                       A fully qualified path to the public RSA key used for
    1963.                       authentication
    1964.   --show-create-table-verbosity
    1965.                       When this option is enabled, it increases the verbosity
    1966.                       of 'SHOW CREATE TABLE'.
    1967.   --show-old-temporals
    1968.                       When this option is enabled, the pre-5.6.4 temporal types
    1969.                       will be marked in the 'SHOW CREATE TABLE' and
    1970.                       'INFORMATION_SCHEMA.COLUMNS' table as a comment in
    1971.                       COLUMN_TYPE field. This variable is deprecated and will
    1972.                       be removed in a future release.
    1973.   --show-replica-auth-info
    1974.                       Include user and password in SHOW REPLICAS statements.
    1975.   --show-slave-auth-info
    1976.                       This option is deprecated and will be removed in a future
    1977.                       version. Use show-replica-auth-info instead.
    1978.   --skip-grant-tables Start without grant tables. This gives all users FULL
    1979.                       ACCESS to all tables.
    1980.   --skip-host-cache   Don't cache host names.
    1981.   --skip-name-resolve Don't resolve hostnames. All hostnames are IP's or
    1982.                       'localhost'.
    1983.   --skip-networking   Don't allow connection with TCP/IP
    1984.   --skip-new          Don't use new, possibly wrong routines.
    1985.   --skip-replica-start
    1986.                       Do not start replication threads automatically when the
    1987.                       server starts.
    1988.   --skip-show-database
    1989.                       Don't allow 'SHOW DATABASE' commands
    1990.   --skip-slave-start  This option is deprecated. Use skip_replica_start
    1991.                       instead.
    1992.   --skip-stack-trace  Don't print a stack trace on failure.
    1993.   --slave-allow-batching
    1994.                       This option is deprecated. Use replica_allow_batching
    1995.                       instead.
    1996.   --slave-checkpoint-group=#
    1997.                       This option is deprecated. Use replica_checkpoint_group
    1998.                       instead.
    1999.   --slave-checkpoint-period=#
    2000.                       This option is deprecated. Use replica_checkpoint_period
    2001.                       instead.
    2002.   --slave-compressed-protocol
    2003.                       This option is deprecated. Use
    2004.                       replica_compressed_protocol instead.
    2005.   --slave-exec-mode=name
    2006.                       This option is deprecated. Use replica_exec_mode instead.
    2007.   --slave-load-tmpdir=name
    2008.                       This option is deprecated. Use replica_load_tmpdir
    2009.                       instead.
    2010.   --slave-max-allowed-packet=#
    2011.                       This option is deprecated. Use replica_max_allowed_packet
    2012.                       instead.
    2013.   --slave-net-timeout=#
    2014.                       This option is deprecated. Use replica_net_timeout
    2015.                       instead.
    2016.   --slave-parallel-type=name
    2017.                       This option is deprecated. Use replica_parallel_type
    2018.                       instead.
    2019.   --slave-parallel-workers=#
    2020.                       This option is deprecated. Use replica_parallel_workers
    2021.                       instead.
    2022.   --slave-pending-jobs-size-max=#
    2023.                       This option is deprecated. Use
    2024.                       replica_pending_jobs_size_max instead.
    2025.   --slave-preserve-commit-order
    2026.                       This option is deprecated. Use
    2027.                       replica_preserve_commit_order instead.
    2028.                       (Defaults to on; use --skip-slave-preserve-commit-order to disable.)
    2029.   --slave-rows-search-algorithms=name
    2030.                       The set of algorithms used by the replication applier
    2031.                       while searching the table for rows to update or delete.
    2032.                       Possible values are: INDEX_SCAN, TABLE_SCAN and
    2033.                       HASH_SCAN. Any combination is allowed, and the applier
    2034.                       picks the most efficient among them for any given
    2035.                       scenario. (Default: INDEX_SCAN, HASH_SCAN).
    2036.   --slave-skip-errors=name
    2037.                       This option is deprecated. Use replica_skip_errors
    2038.                       instead.
    2039.   --slave-sql-verify-checksum
    2040.                       This option is deprecated. Use
    2041.                       replica_sql_verify_checksum instead.
    2042.                       (Defaults to on; use --skip-slave-sql-verify-checksum to disable.)
    2043.   --slave-transaction-retries=#
    2044.                       This option is deprecated. Use
    2045.                       replica_transaction_retries instead.
    2046.   --slave-type-conversions=name
    2047.                       This option is deprecated. Use replica_type_conversions
    2048.                       instead.
    2049.   --slow-launch-time=#
    2050.                       If creating the thread takes longer than this value (in
    2051.                       seconds), the Slow_launch_threads counter will be
    2052.                       incremented
    2053.   --slow-query-log    Log slow queries to a table or log file. Defaults logging
    2054.                       to a file hostname-slow.log or a table mysql.slow_log if
    2055.                       --log-output=TABLE is used. Must be enabled to activate
    2056.                       other slow log options
    2057.   --slow-query-log-file=name
    2058.                       Log slow queries to given log file. Defaults logging to
    2059.                       hostname-slow.log. Must be enabled to activate other slow
    2060.                       log options
    2061.   --socket=name       Socket file to use for connection
    2062.   --sort-buffer-size=#
    2063.                       Each thread that needs to do a sort allocates a buffer of
    2064.                       this size
    2065.   --source-verify-checksum
    2066.                       Force checksum verification of events in binary log
    2067.                       before sending them to replicas or printing them in
    2068.                       output of SHOW BINLOG EVENTS. Disabled by default.
    2069.   --sporadic-binlog-dump-fail
    2070.                       Option used by mysql-test for debugging and testing of
    2071.                       replication.
    2072.   --sql-mode=name     Syntax: sql-mode=mode[,mode[,mode...]]. See the manual
    2073.                       for the complete list of valid sql modes
    2074.   --sql-require-primary-key
    2075.                       When set, tables must be created with a primary key, and
    2076.                       an existing primary key cannot be removed with 'ALTER
    2077.                       TABLE'. Attempts to do so will result in an error.
    2078.   --ssl               Enable SSL for connection (automatically enabled with
    2079.                       other flags).
    2080.                       (Defaults to on; use --skip-ssl to disable.)
    2081.   --ssl-ca=name       CA file in PEM format (check OpenSSL docs, implies --ssl)
    2082.   --ssl-capath=name   CA directory (check OpenSSL docs, implies --ssl)
    2083.   --ssl-cert=name     X509 cert in PEM format (implies --ssl)
    2084.   --ssl-cipher=name   SSL cipher to use (implies --ssl)
    2085.   --ssl-crl=name      CRL file in PEM format (check OpenSSL docs, implies
    2086.                       --ssl)
    2087.   --ssl-crlpath=name  CRL directory (check OpenSSL docs, implies --ssl)
    2088.   --ssl-fips-mode=name
    2089.                       SSL FIPS mode (applies only for OpenSSL); permitted
    2090.                       values are: OFF, ON, STRICT
    2091.   --ssl-key=name      X509 key in PEM format (implies --ssl)
    2092.   --stored-program-cache=#
    2093.                       The soft upper limit for number of cached stored routines
    2094.                       for one connection.
    2095.   --stored-program-definition-cache=#
    2096.                       The number of cached stored program definitions
    2097.   --super-large-pages Enable support for super large pages.
    2098.   --super-read-only   Make all non-temporary tables read-only, with the
    2099.                       exception for replication applier threads.  Users with
    2100.                       the SUPER privilege are affected, unlike read_only.
    2101.                       Setting super_read_only to ON also sets read_only to ON.
    2102.   -s, --symbolic-links
    2103.                       Enable symbolic link support (deprecated and will be
    2104.                       removed in a future release).
    2105.   --sync-binlog=#     Synchronously flush binary log to disk after every #th
    2106.                       write to the file. Use 0 to disable synchronous flushing
    2107.   --sync-master-info=#
    2108.                       This option is deprecated. Use sync_source_info instead.
    2109.   --sync-relay-log=#  Synchronously flush relay log to disk after every #th
    2110.                       event. Use 0 to disable synchronous flushing
    2111.   --sync-relay-log-info=#
    2112.                       Synchronously flush relay log info to disk after every
    2113.                       #th transaction. Use 0 to disable synchronous flushing
    2114.   --sync-source-info=#
    2115.                       Synchronize replication receiver positions to disk
    2116.                       periodically, after the specified number of events. Use 0
    2117.                       to disable periodic synchronization.
    2118.   --sysdate-is-now    Non-default option to alias SYSDATE() to NOW() to make it
    2119.                       safe-replicable. Since 5.0, SYSDATE() returns a `dynamic'
    2120.                       value different for different invocations, even within
    2121.                       the same statement.
    2122.   --table-definition-cache=#
    2123.                       The number of cached table definitions
    2124.   --table-encryption-privilege-check
    2125.                       Indicates if server enables privilege check when user
    2126.                       tries to use non-default value for CREATE DATABASE or
    2127.                       CREATE TABLESPACE or when user tries to do CREATE TABLE
    2128.                       with ENCRYPTION option which deviates from per-database
    2129.                       default.
    2130.   --table-open-cache=#
    2131.                       The number of cached open tables (total for all table
    2132.                       cache instances)
    2133.   --table-open-cache-instances=#
    2134.                       The number of table cache instances
    2135.   --tablespace-definition-cache=#
    2136.                       The number of cached tablespace definitions
    2137.   --tc-heuristic-recover=name
    2138.                       Decision to use in heuristic recover process. Possible
    2139.                       values are OFF, COMMIT or ROLLBACK.
    2140.   --temptable-max-mmap=#
    2141.                       Maximum amount of memory (in bytes) the TempTable storage
    2142.                       engine is allowed to allocate from MMAP-backed files
    2143.                       before starting to store data on disk.
    2144.   --temptable-max-ram=#
    2145.                       Maximum amount of memory (in bytes) the TempTable storage
    2146.                       engine is allowed to allocate from the main memory (RAM)
    2147.                       before starting to store data on disk.
    2148.   --temptable-use-mmap
    2149.                       Use mmap files for temptables. This variable is
    2150.                       deprecated and will be removed in a future release.
    2151.                       (Defaults to on; use --skip-temptable-use-mmap to disable.)
    2152.   --terminology-use-previous=name
    2153.                       Make monitoring tables and statements use the identifiers
    2154.                       that were in use before they were changed in a given
    2155.                       release. That includes names for mutexes, read/write
    2156.                       locks, condition variables, memory allocations, thread
    2157.                       names, thread stages, and thread commands. When the
    2158.                       session option is set to BEFORE_8_0_26, the session uses
    2159.                       the names that were in use until 8.0.25, when it selects
    2160.                       from performance_schema tables, or selects from
    2161.                       INFORMATION_SCHEMA.PROCESSLIST, or issues SHOW
    2162.                       PROCESSLIST or SHOW REPLICA STATUS. When the global
    2163.                       option is set to BEFORE_8_0_26, new sessions use
    2164.                       BEFORE_8_0_26 as default for the session option, and in
    2165.                       addition the thread commands that were in use until
    2166.                       8.0.25 are written to the slow query log.
    2167.   --thread-cache-size=#
    2168.                       How many threads we should keep in a cache for reuse
    2169.   --thread-handling=name
    2170.                       Define threads usage for handling queries, one of
    2171.                       one-thread-per-connection, no-threads, loaded-dynamically
    2172.   --thread-stack=#    The stack size for each thread
    2173.   --tls-ciphersuites=name
    2174.                       TLS v1.3 ciphersuite to use (implies --ssl)
    2175.   --tls-version=name  TLS version, permitted values are TLSv1, TLSv1.1,
    2176.                       TLSv1.2, TLSv1.3
    2177.   --tmp-table-size=#  If an internal in-memory temporary table in the MEMORY
    2178.                       storage engine exceeds this size, MySQL will
    2179.                       automatically convert it to an on-disk table
    2180.   -t, --tmpdir=name   Path for temporary files. Several paths may be specified,
    2181.                       separated by a colon (:), in this case they are used in a
    2182.                       round-robin fashion
    2183.   --transaction-alloc-block-size=#
    2184.                       Allocation block size for transactions to be stored in
    2185.                       binary log
    2186.   --transaction-isolation=name
    2187.                       Default transaction isolation level.
    2188.   --transaction-prealloc-size=#
    2189.                       Persistent buffer for transactions to be stored in binary
    2190.                       log
    2191.   --transaction-read-only
    2192.                       Default transaction access mode. True if transactions are
    2193.                       read-only.
    2194.   --transaction-write-set-extraction[=name]
    2195.                       This option is used to let the server know when to
    2196.                       extract the write set which will be used for various
    2197.                       purposes.
    2198.   --updatable-views-with-limit=name
    2199.                       YES = Don't issue an error message (warning only) if a
    2200.                       VIEW without presence of a key of the underlying table is
    2201.                       used in queries with a LIMIT clause for updating. NO =
    2202.                       Prohibit update of a VIEW, which does not contain a key
    2203.                       of the underlying table and the query uses a LIMIT clause
    2204.                       (usually get from GUI tools)
    2205.   --upgrade=name      Set server upgrade mode. NONE to abort server if
    2206.                       automatic upgrade of the server is needed; MINIMAL to
    2207.                       start the server, but skip upgrade steps that are not
    2208.                       absolutely necessary; AUTO (default) to upgrade the
    2209.                       server if required; FORCE to force upgrade server.
    2210.   -u, --user=name     Run mysqld daemon as user.
    2211.   --validate-config   Validate the server configuration specified by the user.
    2212.   --validate-user-plugins
    2213.                       Turns on additional validation of authentication plugins
    2214.                       assigned to user accounts.
    2215.                       (Defaults to on; use --skip-validate-user-plugins to disable.)
    2216.   -v, --verbose       Used with --help option for detailed help.
    2217.   -V, --version       Output version information and exit.
    2218.   --wait-timeout=#    The number of seconds the server waits for activity on a
    2219.                       connection before closing it
    2220.   --windowing-use-high-precision
    2221.                       For SQL window functions, determines whether to enable
    2222.                       inversion optimization for moving window frames also for
    2223.                       floating values.
    2224.                       (Defaults to on; use --skip-windowing-use-high-precision to disable.)

    2225. Variables (--variable-name=value)
    2226. and boolean options {FALSE|TRUE}                             Value (after reading options)
    2227. ------------------------------------------------------------ -------------
    2228. abort-slave-event-count                                      0
    2229. activate-all-roles-on-login                                  FALSE
    2230. admin-address                                                (No default value)
    2231. admin-port                                                   33062
    2232. admin-ssl                                                    TRUE
    2233. admin-ssl-ca                                                 (No default value)
    2234. admin-ssl-capath                                             (No default value)
    2235. admin-ssl-cert                                               (No default value)
    2236. admin-ssl-cipher                                             (No default value)
    2237. admin-ssl-crl                                                (No default value)
    2238. admin-ssl-crlpath                                            (No default value)
    2239. admin-ssl-key                                                (No default value)
    2240. admin-tls-ciphersuites                                       (No default value)
    2241. admin-tls-version                                            TLSv1,TLSv1.1,TLSv1.2,TLSv1.3
    2242. allow-suspicious-udfs                                        FALSE
    2243. archive                                                      ON
    2244. authentication-policy                                        *,,
    2245. auto-generate-certs                                          TRUE
    2246. auto-increment-increment                                     1
    2247. auto-increment-offset                                        1
    2248. autocommit                                                   TRUE
    2249. automatic-sp-privileges                                      TRUE
    2250. avoid-temporal-upgrade                                       FALSE
    2251. back-log                                                     200
    2252. basedir                                                      /usr/local/mysql/
    2253. big-tables                                                   FALSE
    2254. bind-address                                                 *
    2255. binlog-cache-size                                            32768
    2256. binlog-checksum                                              CRC32
    2257. binlog-direct-non-transactional-updates                      FALSE
    2258. binlog-encryption                                            FALSE
    2259. binlog-error-action                                          ABORT_SERVER
    2260. binlog-expire-logs-seconds                                   2592000
    2261. binlog-format                                                ROW
    2262. binlog-group-commit-sync-delay                               0
    2263. binlog-group-commit-sync-no-delay-count                      0
    2264. binlog-gtid-simple-recovery                                  TRUE
    2265. binlog-max-flush-queue-time                                  0
    2266. binlog-order-commits                                         TRUE
    2267. binlog-rotate-encryption-master-key-at-startup               FALSE
    2268. binlog-row-event-max-size                                    8192
    2269. binlog-row-image                                             FULL
    2270. binlog-row-metadata                                          MINIMAL
    2271. binlog-row-value-options                                    
    2272. binlog-rows-query-log-events                                 FALSE
    2273. binlog-stmt-cache-size                                       32768
    2274. binlog-transaction-compression                               FALSE
    2275. binlog-transaction-compression-level-zstd                    3
    2276. binlog-transaction-dependency-history-size                   25000
    2277. binlog-transaction-dependency-tracking                       COMMIT_ORDER
    2278. blackhole                                                    ON
    2279. block-encryption-mode                                        aes-128-ecb
    2280. bulk-insert-buffer-size                                      8388608
    2281. caching-sha2-password-auto-generate-rsa-keys                 TRUE
    2282. caching-sha2-password-digest-rounds                          5000
    2283. caching-sha2-password-private-key-path                       private_key.pem
    2284. caching-sha2-password-public-key-path                        public_key.pem
    2285. character-set-client-handshake                               TRUE
    2286. character-set-filesystem                                     binary
    2287. character-set-server                                         utf8
    2288. character-sets-dir                                           /usr/local/mysql/share/charsets/
    2289. check-proxy-users                                            FALSE
    2290. chroot                                                       (No default value)
    2291. collation-server                                             utf8_general_ci
    2292. completion-type                                              NO_CHAIN
    2293. concurrent-insert                                            AUTO
    2294. connect-timeout                                              10
    2295. console                                                      FALSE
    2296. create-admin-listener-thread                                 FALSE
    2297. cte-max-recursion-depth                                      1000
    2298. daemonize                                                    FALSE
    2299. datadir                                                      /app/mysql/data/
    2300. default-authentication-plugin                                caching_sha2_password
    2301. default-password-lifetime                                    0
    2302. default-storage-engine                                       INNODB
    2303. default-table-encryption                                     FALSE
    2304. default-time-zone                                            (No default value)
    2305. default-tmp-storage-engine                                   InnoDB
    2306. default-week-format                                          0
    2307. delay-key-write                                              ON
    2308. delayed-insert-limit                                         100
    2309. delayed-insert-timeout                                       300
    2310. delayed-queue-size                                           1000
    2311. disabled-storage-engines                                    
    2312. disconnect-on-expired-password                               TRUE
    2313. disconnect-slave-event-count                                 0
    2314. div-precision-increment                                      4
    2315. end-markers-in-json                                          FALSE
    2316. enforce-gtid-consistency                                     FALSE
    2317. eq-range-index-dive-limit                                    200
    2318. event-scheduler                                              ON
    2319. expire-logs-days                                             0
    2320. explicit-defaults-for-timestamp                              TRUE
    2321. external-locking                                             FALSE
    2322. federated                                                    ON
    2323. flush                                                        FALSE
    2324. flush-time                                                   0
    2325. ft-boolean-syntax                                            + -><()~*:""&|
    2326. ft-max-word-len                                              84
    2327. ft-min-word-len                                              4
    2328. ft-query-expansion-limit                                     20
    2329. ft-stopword-file                                             (No default value)
    2330. gdb                                                          FALSE
    2331. general-log                                                  FALSE
    2332. general-log-file                                             /app/mysql/data/vm1.log
    2333. generated-random-password-length                             20
    2334. group-concat-max-len                                         1024
    2335. group-replication-consistency                                EVENTUAL
    2336. gtid-executed-compression-period                             0
    2337. gtid-mode                                                    OFF
    2338. help                                                         TRUE
    2339. histogram-generation-max-mem-size                            20000000
    2340. host-cache-size                                              328
    2341. information-schema-stats-expiry                              86400
    2342. init-connect                                                
    2343. init-file                                                    (No default value)
    2344. init-replica                                                
    2345. init-slave                                                   
    2346. initialize                                                   FALSE
    2347. initialize-insecure                                          FALSE
    2348. innodb-adaptive-flushing                                     TRUE
    2349. innodb-adaptive-flushing-lwm                                 10
    2350. innodb-adaptive-hash-index                                   TRUE
    2351. innodb-adaptive-hash-index-parts                             8
    2352. innodb-adaptive-max-sleep-delay                              150000
    2353. innodb-api-bk-commit-interval                                5
    2354. innodb-api-disable-rowlock                                   FALSE
    2355. innodb-api-enable-binlog                                     FALSE
    2356. innodb-api-enable-mdl                                        FALSE
    2357. innodb-api-trx-level                                         0
    2358. innodb-autoextend-increment                                  64
    2359. innodb-autoinc-lock-mode                                     2
    2360. innodb-buffer-pool-chunk-size                                134217728
    2361. innodb-buffer-pool-dump-at-shutdown                          TRUE
    2362. innodb-buffer-pool-dump-now                                  FALSE
    2363. innodb-buffer-pool-dump-pct                                  25
    2364. innodb-buffer-pool-filename                                  ib_buffer_pool
    2365. innodb-buffer-pool-in-core-file                              TRUE
    2366. innodb-buffer-pool-instances                                 0
    2367. innodb-buffer-pool-load-abort                                FALSE
    2368. innodb-buffer-pool-load-at-startup                           TRUE
    2369. innodb-buffer-pool-load-now                                  FALSE
    2370. innodb-buffer-pool-size                                      134217728
    2371. innodb-change-buffer-max-size                                25
    2372. innodb-change-buffering                                      all
    2373. innodb-checksum-algorithm                                    crc32
    2374. innodb-cmp-per-index-enabled                                 FALSE
    2375. innodb-commit-concurrency                                    0
    2376. innodb-compression-failure-threshold-pct                     5
    2377. innodb-compression-level                                     6
    2378. innodb-compression-pad-pct-max                               50
    2379. innodb-concurrency-tickets                                   5000
    2380. innodb-data-file-path                                        ibdata1:12M:autoextend
    2381. innodb-data-home-dir                                         (No default value)
    2382. innodb-ddl-buffer-size                                       1048576
    2383. innodb-ddl-threads                                           4
    2384. innodb-deadlock-detect                                       TRUE
    2385. innodb-dedicated-server                                      FALSE
    2386. innodb-default-row-format                                    dynamic
    2387. innodb-directories                                           (No default value)
    2388. innodb-disable-sort-file-cache                               FALSE
    2389. innodb-doublewrite                                           TRUE
    2390. innodb-doublewrite-batch-size                                0
    2391. innodb-doublewrite-dir                                       (No default value)
    2392. innodb-doublewrite-files                                     0
    2393. innodb-doublewrite-pages                                     0
    2394. innodb-extend-and-initialize                                 TRUE
    2395. innodb-fast-shutdown                                         1
    2396. innodb-file-per-table                                        TRUE
    2397. innodb-fill-factor                                           100
    2398. innodb-flush-log-at-timeout                                  1
    2399. innodb-flush-log-at-trx-commit                               1
    2400. innodb-flush-method                                          fsync
    2401. innodb-flush-neighbors                                       0
    2402. innodb-flush-sync                                            TRUE
    2403. innodb-flushing-avg-loops                                    30
    2404. innodb-force-load-corrupted                                  FALSE
    2405. innodb-force-recovery                                        0
    2406. innodb-fsync-threshold                                       0
    2407. innodb-ft-aux-table                                          (No default value)
    2408. innodb-ft-cache-size                                         8000000
    2409. innodb-ft-enable-diag-print                                  FALSE
    2410. innodb-ft-enable-stopword                                    TRUE
    2411. innodb-ft-max-token-size                                     84
    2412. innodb-ft-min-token-size                                     3
    2413. innodb-ft-num-word-optimize                                  2000
    2414. innodb-ft-result-cache-limit                                 2000000000
    2415. innodb-ft-server-stopword-table                              (No default value)
    2416. innodb-ft-sort-pll-degree                                    2
    2417. innodb-ft-total-cache-size                                   640000000
    2418. innodb-ft-user-stopword-table                                (No default value)
    2419. innodb-idle-flush-pct                                        100
    2420. innodb-io-capacity                                           200
    2421. innodb-io-capacity-max                                       18446744073709551615
    2422. innodb-lock-wait-timeout                                     50
    2423. innodb-log-buffer-size                                       16777216
    2424. innodb-log-checksums                                         TRUE
    2425. innodb-log-compressed-pages                                  TRUE
    2426. innodb-log-file-size                                         50331648
    2427. innodb-log-files-in-group                                    2
    2428. innodb-log-group-home-dir                                    (No default value)
    2429. innodb-log-spin-cpu-abs-lwm                                  80
    2430. innodb-log-spin-cpu-pct-hwm                                  50
    2431. innodb-log-wait-for-flush-spin-hwm                           400
    2432. innodb-log-write-ahead-size                                  8192
    2433. innodb-log-writer-threads                                    TRUE
    2434. innodb-lru-scan-depth                                        1024
    2435. innodb-max-dirty-pages-pct                                   90
    2436. innodb-max-dirty-pages-pct-lwm                               10
    2437. innodb-max-purge-lag                                         0
    2438. innodb-max-purge-lag-delay                                   0
    2439. innodb-max-undo-log-size                                     1073741824
    2440. innodb-monitor-disable                                       (No default value)
    2441. innodb-monitor-enable                                        (No default value)
    2442. innodb-monitor-reset                                         (No default value)
    2443. innodb-monitor-reset-all                                     (No default value)
    2444. innodb-numa-interleave                                       FALSE
    2445. innodb-old-blocks-pct                                        37
    2446. innodb-old-blocks-time                                       1000
    2447. innodb-online-alter-log-max-size                             134217728
    2448. innodb-open-files                                            0
    2449. innodb-optimize-fulltext-only                                FALSE
    2450. innodb-page-cleaners                                         4
    2451. innodb-page-size                                             16384
    2452. innodb-parallel-read-threads                                 4
    2453. innodb-print-all-deadlocks                                   FALSE
    2454. innodb-print-ddl-logs                                        FALSE
    2455. innodb-purge-batch-size                                      300
    2456. innodb-purge-rseg-truncate-frequency                         128
    2457. innodb-purge-threads                                         4
    2458. innodb-random-read-ahead                                     FALSE
    2459. innodb-read-ahead-threshold                                  56
    2460. innodb-read-io-threads                                       4
    2461. innodb-read-only                                             FALSE
    2462. innodb-redo-log-archive-dirs                                 (No default value)
    2463. innodb-redo-log-encrypt                                      FALSE
    2464. innodb-replication-delay                                     0
    2465. innodb-rollback-on-timeout                                   FALSE
    2466. innodb-rollback-segments                                     128
    2467. innodb-segment-reserve-factor                                12.5
    2468. innodb-sort-buffer-size                                      1048576
    2469. innodb-spin-wait-delay                                       6
    2470. innodb-spin-wait-pause-multiplier                            50
    2471. innodb-stats-auto-recalc                                     TRUE
    2472. innodb-stats-include-delete-marked                           FALSE
    2473. innodb-stats-method                                          nulls_equal
    2474. innodb-stats-on-metadata                                     FALSE
    2475. innodb-stats-persistent                                      TRUE
    2476. innodb-stats-persistent-sample-pages                         20
    2477. innodb-stats-transient-sample-pages                          8
    2478. innodb-status-file                                           FALSE
    2479. innodb-status-output                                         FALSE
    2480. innodb-status-output-locks                                   FALSE
    2481. innodb-strict-mode                                           TRUE
    2482. innodb-sync-array-size                                       1
    2483. innodb-sync-spin-loops                                       30
    2484. innodb-table-locks                                           TRUE
    2485. innodb-temp-data-file-path                                   ibtmp1:12M:autoextend
    2486. innodb-temp-tablespaces-dir                                  (No default value)
    2487. innodb-thread-concurrency                                    0
    2488. innodb-thread-sleep-delay                                    10000
    2489. innodb-tmpdir                                                (No default value)
    2490. innodb-undo-directory                                        (No default value)
    2491. innodb-undo-log-encrypt                                      FALSE
    2492. innodb-undo-log-truncate                                     TRUE
    2493. innodb-undo-tablespaces                                      2
    2494. innodb-use-fdatasync                                         FALSE
    2495. innodb-use-native-aio                                        TRUE
    2496. innodb-validate-tablespace-paths                             TRUE
    2497. innodb-write-io-threads                                      4
    2498. interactive-timeout                                          28800
    2499. internal-tmp-mem-storage-engine                              TempTable
    2500. join-buffer-size                                             262144
    2501. keep-files-on-create                                         FALSE
    2502. key-buffer-size                                              8388608
    2503. key-cache-age-threshold                                      300
    2504. key-cache-block-size                                         1024
    2505. key-cache-division-limit                                     100
    2506. keyring-migration-destination                                (No default value)
    2507. keyring-migration-host                                       (No default value)
    2508. keyring-migration-port                                       0
    2509. keyring-migration-socket                                     (No default value)
    2510. keyring-migration-source                                     (No default value)
    2511. keyring-migration-to-component                               FALSE
    2512. keyring-migration-user                                       (No default value)
    2513. language                                                     /usr/local/mysql/share/
    2514. large-pages                                                  FALSE
    2515. lc-messages                                                  en_US
    2516. lc-messages-dir                                              /usr/local/mysql/share/
    2517. lc-time-names                                                en_US
    2518. local-infile                                                 FALSE
    2519. lock-wait-timeout                                            31536000
    2520. log-bin                                                      binlog
    2521. log-bin-index                                                binlog.index
    2522. log-bin-trust-function-creators                              FALSE
    2523. log-bin-use-v1-row-events                                    FALSE
    2524. log-error                                                    stderr
    2525. log-error-services                                           log_filter_internal; log_sink_internal
    2526. log-error-suppression-list                                   
    2527. log-error-verbosity                                          1
    2528. log-isam                                                     myisam.log
    2529. log-output                                                   FILE
    2530. log-queries-not-using-indexes                                FALSE
    2531. log-raw                                                      FALSE
    2532. log-replica-updates                                          TRUE
    2533. log-short-format                                             FALSE
    2534. log-slave-updates                                            TRUE
    2535. log-slow-admin-statements                                    FALSE
    2536. log-slow-extra                                               FALSE
    2537. log-slow-replica-statements                                  FALSE
    2538. log-slow-slave-statements                                    FALSE
    2539. log-statements-unsafe-for-binlog                             TRUE
    2540. log-tc                                                       tc.log
    2541. log-tc-size                                                  24576
    2542. log-throttle-queries-not-using-indexes                       0
    2543. log-timestamps                                               UTC
    2544. long-query-time                                              10
    2545. low-priority-updates                                         FALSE
    2546. lower-case-table-names                                       1
    2547. mandatory-roles                                             
    2548. master-info-file                                             master.info
    2549. master-info-repository                                       TABLE
    2550. master-retry-count                                           86400
    2551. master-verify-checksum                                       FALSE
    2552. max-allowed-packet                                           67108864
    2553. max-binlog-cache-size                                        18446744073709547520
    2554. max-binlog-dump-events                                       0
    2555. max-binlog-size                                              1073741824
    2556. max-binlog-stmt-cache-size                                   18446744073709547520
    2557. max-connect-errors                                           100
    2558. max-connections                                              200
    2559. max-delayed-threads                                          20
    2560. max-digest-length                                            1024
    2561. max-error-count                                              1024
    2562. max-execution-time                                           0
    2563. max-heap-table-size                                          16777216
    2564. max-join-size                                                18446744073709551615
    2565. max-length-for-sort-data                                     4096
    2566. max-points-in-geometry                                       65536
    2567. max-prepared-stmt-count                                      16382
    2568. max-relay-log-size                                           0
    2569. max-seeks-for-key                                            18446744073709551615
    2570. max-sort-length                                              1024
    2571. max-sp-recursion-depth                                       0
    2572. max-user-connections                                         0
    2573. max-write-lock-count                                         18446744073709551615
    2574. memlock                                                      FALSE
    2575. min-examined-row-limit                                       0
    2576. myisam-block-size                                            1024
    2577. myisam-data-pointer-size                                     6
    2578. myisam-max-sort-file-size                                    9223372036853727232
    2579. myisam-mmap-size                                             18446744073709551615
    2580. myisam-recover-options                                       OFF
    2581. myisam-repair-threads                                        1
    2582. myisam-sort-buffer-size                                      8388608
    2583. myisam-stats-method                                          nulls_unequal
    2584. myisam-use-mmap                                              FALSE
    2585. mysql-native-password-proxy-users                            FALSE
    2586. mysqlx                                                       ON
    2587. mysqlx-bind-address                                          *
    2588. mysqlx-cache-cleaner                                         ON
    2589. mysqlx-compression-algorithms                                DEFLATE_STREAM,LZ4_MESSAGE,ZSTD_STREAM
    2590. mysqlx-connect-timeout                                       30
    2591. mysqlx-deflate-default-compression-level                     3
    2592. mysqlx-deflate-max-client-compression-level                  5
    2593. mysqlx-document-id-unique-prefix                             0
    2594. mysqlx-enable-hello-notice                                   TRUE
    2595. mysqlx-idle-worker-thread-timeout                            60
    2596. mysqlx-interactive-timeout                                   28800
    2597. mysqlx-lz4-default-compression-level                         2
    2598. mysqlx-lz4-max-client-compression-level                      8
    2599. mysqlx-max-allowed-packet                                    67108864
    2600. mysqlx-max-connections                                       100
    2601. mysqlx-min-worker-threads                                    2
    2602. mysqlx-port                                                  33060
    2603. mysqlx-port-open-timeout                                     0
    2604. mysqlx-read-timeout                                          30
    2605. mysqlx-socket                                                (No default value)
    2606. mysqlx-ssl-ca                                                (No default value)
    2607. mysqlx-ssl-capath                                            (No default value)
    2608. mysqlx-ssl-cert                                              (No default value)
    2609. mysqlx-ssl-cipher                                            (No default value)
    2610. mysqlx-ssl-crl                                               (No default value)
    2611. mysqlx-ssl-crlpath                                           (No default value)
    2612. mysqlx-ssl-key                                               (No default value)
    2613. mysqlx-wait-timeout                                          28800
    2614. mysqlx-write-timeout                                         60
    2615. mysqlx-zstd-default-compression-level                        3
    2616. mysqlx-zstd-max-client-compression-level                     11
    2617. net-buffer-length                                            16384
    2618. net-read-timeout                                             30
    2619. net-retry-count                                              10
    2620. net-write-timeout                                            60
    2621. new                                                          FALSE
    2622. ngram                                                        ON
    2623. ngram-token-size                                             2
    2624. no-dd-upgrade                                                FALSE
    2625. offline-mode                                                 FALSE
    2626. old                                                          FALSE
    2627. old-alter-table                                              FALSE
    2628. old-style-user-limits                                        FALSE
    2629. open-files-limit                                             8210
    2630. optimizer-prune-level                                        1
    2631. optimizer-search-depth                                       62
    2632. optimizer-switch                                             index_merge=on,index_merge_union=on,index_merge_sort_union=on,index_merge_intersection=on,engine_condition_pushdown=on,index_condition_pushdown=on,mrr=on,mrr_cost_based=on,block_nested_loop=on,batched_key_access=off,materialization=on,semijoin=on,loosescan=on,firstmatch=on,duplicateweedout=on,subquery_materialization_cost_based=on,use_index_extensions=on,condition_fanout_filter=on,derived_merge=on,use_invisible_indexes=off,skip_scan=on,hash_join=on,subquery_to_derived=off,prefer_ordering_index=on,hypergraph_optimizer=off,derived_condition_pushdown=on
    2633. optimizer-trace                                             
    2634. optimizer-trace-features                                     greedy_search=on,range_optimizer=on,dynamic_range=on,repeated_subselect=on
    2635. optimizer-trace-limit                                        1
    2636. optimizer-trace-max-mem-size                                 1048576
    2637. optimizer-trace-offset                                       -1
    2638. parser-max-mem-size                                          18446744073709551615
    2639. partial-revokes                                              FALSE
    2640. password-history                                             0
    2641. password-require-current                                     FALSE
    2642. password-reuse-interval                                      0
    2643. performance-schema                                           TRUE
    2644. performance-schema-accounts-size                             -1
    2645. performance-schema-consumer-events-stages-current            FALSE
    2646. performance-schema-consumer-events-stages-history            FALSE
    2647. performance-schema-consumer-events-stages-history-long       FALSE
    2648. performance-schema-consumer-events-statements-current        TRUE
    2649. performance-schema-consumer-events-statements-history        TRUE
    2650. performance-schema-consumer-events-statements-history-long   FALSE
    2651. performance-schema-consumer-events-transactions-current      TRUE
    2652. performance-schema-consumer-events-transactions-history      TRUE
    2653. performance-schema-consumer-events-transactions-history-long FALSE
    2654. performance-schema-consumer-events-waits-current             FALSE
    2655. performance-schema-consumer-events-waits-history             FALSE
    2656. performance-schema-consumer-events-waits-history-long        FALSE
    2657. performance-schema-consumer-global-instrumentation           TRUE
    2658. performance-schema-consumer-statements-digest                TRUE
    2659. performance-schema-consumer-thread-instrumentation           TRUE
    2660. performance-schema-digests-size                              -1
    2661. performance-schema-error-size                                5018
    2662. performance-schema-events-stages-history-long-size           -1
    2663. performance-schema-events-stages-history-size                -1
    2664. performance-schema-events-statements-history-long-size       -1
    2665. performance-schema-events-statements-history-size            -1
    2666. performance-schema-events-transactions-history-long-size     -1
    2667. performance-schema-events-transactions-history-size          -1
    2668. performance-schema-events-waits-history-long-size            -1
    2669. performance-schema-events-waits-history-size                 -1
    2670. performance-schema-hosts-size                                -1
    2671. performance-schema-instrument                                
    2672. performance-schema-max-cond-classes                          150
    2673. performance-schema-max-cond-instances                        -1
    2674. performance-schema-max-digest-length                         1024
    2675. performance-schema-max-digest-sample-age                     60
    2676. performance-schema-max-file-classes                          80
    2677. performance-schema-max-file-handles                          32768
    2678. performance-schema-max-file-instances                        -1
    2679. performance-schema-max-index-stat                            -1
    2680. performance-schema-max-memory-classes                        450
    2681. performance-schema-max-metadata-locks                        -1
    2682. performance-schema-max-mutex-classes                         350
    2683. performance-schema-max-mutex-instances                       -1
    2684. performance-schema-max-prepared-statements-instances         -1
    2685. performance-schema-max-program-instances                     -1
    2686. performance-schema-max-rwlock-classes                        60
    2687. performance-schema-max-rwlock-instances                      -1
    2688. performance-schema-max-socket-classes                        10
    2689. performance-schema-max-socket-instances                      -1
    2690. performance-schema-max-sql-text-length                       1024
    2691. performance-schema-max-stage-classes                         175
    2692. performance-schema-max-statement-classes                     219
    2693. performance-schema-max-statement-stack                       10
    2694. performance-schema-max-table-handles                         -1
    2695. performance-schema-max-table-instances                       -1
    2696. performance-schema-max-table-lock-stat                       -1
    2697. performance-schema-max-thread-classes                        100
    2698. performance-schema-max-thread-instances                      -1
    2699. performance-schema-session-connect-attrs-size                -1
    2700. performance-schema-setup-actors-size                         -1
    2701. performance-schema-setup-objects-size                        -1
    2702. performance-schema-show-processlist                          FALSE
    2703. performance-schema-users-size                                -1
    2704. persist-only-admin-x509-subject                              
    2705. persisted-globals-load                                       TRUE
    2706. pid-file                                                     /app/mysql/data/vm1.pid
    2707. plugin-dir                                                   /usr/local/mysql/lib/plugin/
    2708. port                                                         3306
    2709. port-open-timeout                                            0
    2710. preload-buffer-size                                          32768
    2711. print-identified-with-as-hex                                 FALSE
    2712. profiling-history-size                                       15
    2713. protocol-compression-algorithms                              zlib,zstd,uncompressed
    2714. query-alloc-block-size                                       8192
    2715. query-prealloc-size                                          8192
    2716. range-alloc-block-size                                       4096
    2717. range-optimizer-max-mem-size                                 8388608
    2718. read-buffer-size                                             131072
    2719. read-only                                                    FALSE
    2720. read-rnd-buffer-size                                         262144
    2721. regexp-stack-limit                                           8000000
    2722. regexp-time-limit                                            32
    2723. relay-log                                                    vm1-relay-bin
    2724. relay-log-index                                              vm1-relay-bin.index
    2725. relay-log-info-file                                          relay-log.info
    2726. relay-log-info-repository                                    TABLE
    2727. relay-log-purge                                              TRUE
    2728. relay-log-recovery                                           FALSE
    2729. relay-log-space-limit                                        0
    2730. replica-allow-batching                                       FALSE
    2731. replica-checkpoint-group                                     512
    2732. replica-checkpoint-period                                    300
    2733. replica-compressed-protocol                                  FALSE
    2734. replica-exec-mode                                            STRICT
    2735. replica-load-tmpdir                                          /tmp
    2736. replica-max-allowed-packet                                   1073741824
    2737. replica-net-timeout                                          60
    2738. replica-parallel-type                                        LOGICAL_CLOCK
    2739. replica-parallel-workers                                     4
    2740. replica-pending-jobs-size-max                                134217728
    2741. replica-preserve-commit-order                                TRUE
    2742. replica-skip-errors                                          (No default value)
    2743. replica-sql-verify-checksum                                  TRUE
    2744. replica-transaction-retries                                  10
    2745. replica-type-conversions                                    
    2746. replicate-same-server-id                                     FALSE
    2747. replication-optimize-for-static-plugin-config                FALSE
    2748. replication-sender-observe-commit-only                       FALSE
    2749. report-host                                                  (No default value)
    2750. report-password                                              (No default value)
    2751. report-port                                                  0
    2752. report-user                                                  (No default value)
    2753. require-secure-transport                                     FALSE
    2754. rpl-read-size                                                8192
    2755. rpl-stop-replica-timeout                                     31536000
    2756. rpl-stop-slave-timeout                                       31536000
    2757. safe-user-create                                             FALSE
    2758. schema-definition-cache                                      256
    2759. secondary-engine-cost-threshold                              100000
    2760. secure-file-priv                                             NULL
    2761. select-into-buffer-size                                      131072
    2762. select-into-disk-sync                                        FALSE
    2763. select-into-disk-sync-delay                                  0
    2764. server-id                                                    1
    2765. server-id-bits                                               32
    2766. session-track-gtids                                          OFF
    2767. session-track-schema                                         TRUE
    2768. session-track-state-change                                   FALSE
    2769. session-track-system-variables                               time_zone,autocommit,character_set_client,character_set_results,character_set_connection
    2770. session-track-transaction-info                               OFF
    2771. sha256-password-auto-generate-rsa-keys                       TRUE
    2772. sha256-password-private-key-path                             private_key.pem
    2773. sha256-password-proxy-users                                  FALSE
    2774. sha256-password-public-key-path                              public_key.pem
    2775. show-create-table-verbosity                                  FALSE
    2776. show-old-temporals                                           FALSE
    2777. show-replica-auth-info                                       FALSE
    2778. show-slave-auth-info                                         FALSE
    2779. skip-grant-tables                                            FALSE
    2780. skip-name-resolve                                            TRUE
    2781. skip-networking                                              FALSE
    2782. skip-replica-start                                           FALSE
    2783. skip-show-database                                           FALSE
    2784. skip-slave-start                                             FALSE
    2785. slave-allow-batching                                         FALSE
    2786. slave-checkpoint-group                                       512
    2787. slave-checkpoint-period                                      300
    2788. slave-compressed-protocol                                    FALSE
    2789. slave-exec-mode                                              STRICT
    2790. slave-load-tmpdir                                            /tmp
    2791. slave-max-allowed-packet                                     1073741824
    2792. slave-net-timeout                                            60
    2793. slave-parallel-type                                          LOGICAL_CLOCK
    2794. slave-parallel-workers                                       4
    2795. slave-pending-jobs-size-max                                  134217728
    2796. slave-preserve-commit-order                                  TRUE
    2797. slave-rows-search-algorithms                                 INDEX_SCAN,HASH_SCAN
    2798. slave-skip-errors                                            (No default value)
    2799. slave-sql-verify-checksum                                    TRUE
    2800. slave-transaction-retries                                    10
    2801. slave-type-conversions                                       
    2802. slow-launch-time                                             2
    2803. slow-query-log                                               FALSE
    2804. slow-query-log-file                                          /app/mysql/data/vm1-slow.log
    2805. socket                                                       /tmp/mysql.sock
    2806. sort-buffer-size                                             262144
    2807. source-verify-checksum                                       FALSE
    2808. sporadic-binlog-dump-fail                                    FALSE
    2809. sql-mode                                                     ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION
    2810. sql-require-primary-key                                      FALSE
    2811. ssl                                                          TRUE
    2812. ssl-ca                                                       (No default value)
    2813. ssl-capath                                                   (No default value)
    2814. ssl-cert                                                     (No default value)
    2815. ssl-cipher                                                   (No default value)
    2816. ssl-crl                                                      (No default value)
    2817. ssl-crlpath                                                  (No default value)
    2818. ssl-fips-mode                                                OFF
    2819. ssl-key                                                      (No default value)
    2820. stored-program-cache                                         256
    2821. stored-program-definition-cache                              256
    2822. super-large-pages                                            FALSE
    2823. super-read-only                                              FALSE
    2824. symbolic-links                                               FALSE
    2825. sync-binlog                                                  1
    2826. sync-master-info                                             10000
    2827. sync-relay-log                                               10000
    2828. sync-relay-log-info                                          10000
    2829. sync-source-info                                             10000
    2830. sysdate-is-now                                               FALSE
    2831. table-definition-cache                                       2000
    2832. table-encryption-privilege-check                             FALSE
    2833. table-open-cache                                             4000
    2834. table-open-cache-instances                                   16
    2835. tablespace-definition-cache                                  256
    2836. tc-heuristic-recover                                         OFF
    2837. temptable-max-mmap                                           1073741824
    2838. temptable-max-ram                                            1073741824
    2839. temptable-use-mmap                                           TRUE
    2840. terminology-use-previous                                     NONE
    2841. thread-cache-size                                            10
    2842. thread-handling                                              one-thread-per-connection
    2843. thread-stack                                                 1048576
    2844. tls-ciphersuites                                             (No default value)
    2845. tls-version                                                  TLSv1,TLSv1.1,TLSv1.2,TLSv1.3
    2846. tmp-table-size                                               16777216
    2847. tmpdir                                                       /tmp
    2848. transaction-alloc-block-size                                 8192
    2849. transaction-isolation                                        REPEATABLE-READ
    2850. transaction-prealloc-size                                    4096
    2851. transaction-read-only                                        FALSE
    2852. transaction-write-set-extraction                             XXHASH64
    2853. updatable-views-with-limit                                   YES
    2854. upgrade                                                      AUTO
    2855. validate-config                                              FALSE
    2856. validate-user-plugins                                        TRUE
    2857. verbose                                                      TRUE
    2858. wait-timeout                                                 28800
    2859. windowing-use-high-precision                                 TRUE

    2860. To see what values a running MySQL server is using, type
    2861. 'mysqladmin variables' instead of 'mysqld --verbose --help'.

    2862. [END] 2021/12/15 16:10:59
    复制代码



    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    运维联盟俱乐部 ( 冀ICP备19036648号 )

    GMT+8, 2024-4-29 06:15 , Processed in 0.073010 second(s), 22 queries , Gzip On.

    Powered by Discuz! X3.4

    © 2001-2023 Discuz! Team.

    快速回复 返回顶部 返回列表