标签:5.7 9.4 sign gen enable this cer bin long
Chapter 5 MySQL Server Administration
Table of Contents
5.1.2 Server Configuration Defaults
5.1.3 Server Option and Variable Reference
5.1.11 Server Response to Signals
5.1.12 The Server Shutdown Process
5.4.1 Selecting General Query and Slow Query Log Output Destinations
5.5.1 Installing and Uninstalling Plugins
5.5.2 Obtaining Server Plugin Information
5.5.3 MySQL Enterprise Thread Pool
5.5.4 The Rewriter Query Rewrite Plugin
5.6 Running Multiple MySQL Instances on One Machine
5.6.1 Setting Up Multiple Data Directories
5.6.2 Running Multiple MySQL Instances on Windows
5.6.3 Running Multiple MySQL Instances on Unix
5.6.4 Using Client Programs in a Multiple-Server Environment
5.7 Tracing mysqld Using DTrace
5.7.1 mysqld DTrace Probe Reference
MySQL Server (mysqld) is the main program that does most of the work in a MySQL installation. This chapter provides an overview of MySQL Server and covers general server administration:
For additional information on administrative topics, see also:
5.1.2 Server Configuration Defaults
5.1.3 Server Option and Variable Reference
5.1.11 Server Response to Signals
5.1.12 The Server Shutdown Process
mysqld is the MySQL server. The following discussion covers these MySQL server configuration topics:
For listings of MySQL server variables and options that have been added, deprecated, or removed in MySQL 5.7, see Section 1.5, "Server and Status Variables and Options Added, Deprecated, or Removed in MySQL 5.7".
Note
Not all storage engines are supported by all MySQL server binaries and configurations. To find out how to determine which storage engines your MySQL server installation supports, see Section 13.7.5.16, "SHOW ENGINES Syntax".
The MySQL server, mysqld, has many command options and system variables that can be set at startup to configure its operation. To determine the command option and system variable values used by the server, execute this command:
shell> mysqld --verbose --help
The command produces a list of all mysqld options and configurable system variables. Its output includes the default option and variable values and looks something like this:
abort-slave-event-count 0
allow-suspicious-udfs FALSE
archive ON
auto-increment-increment 1
auto-increment-offset 1
autocommit TRUE
automatic-sp-privileges TRUE
avoid-temporal-upgrade FALSE
back-log 80
basedir /home/jon/bin/mysql-5.7/
...
tmpdir /tmp
transaction-alloc-block-size 8192
transaction-isolation REPEATABLE-READ
transaction-prealloc-size 4096
transaction-read-only FALSE
transaction-write-set-extraction OFF
updatable-views-with-limit YES
validate-user-plugins TRUE
verbose TRUE
wait-timeout 28800
To see the current system variable values used by the server as it runs, connect to it and execute this statement:
mysql> SHOW VARIABLES;
To see some statistical and status indicators for a running server, execute this statement:
mysql> SHOW STATUS;
System variable and status information also is available using the mysqladmin command:
shell> mysqladmin variables
shell> mysqladmin extended-status
For a full description of all command options, system variables, and status variables, see these sections:
More detailed monitoring information is available from the Performance Schema; see Chapter 25, MySQL Performance Schema.
MySQL uses algorithms that are very scalable, so you can usually run with very little memory. However, normally better performance results from giving MySQL more memory.
When tuning a MySQL server, the two most important variables to configure are key_buffer_size andtable_open_cache. You should first feel confident that you have these set appropriately before trying to change any other variables.
The following examples indicate some typical variable values for different runtime configurations.
If there are very many simultaneous connections, swapping problems may occur unless mysqld has been configured to use very little memory for each connection. mysqld performs better if you have enough memory for all connections.
Or even this:
shell> mysqld_safe --key_buffer_size=512K --sort_buffer_size=16K \
--table_open_cache=32 --read_buffer_size=8K \
--net_buffer_length=1K &
If you are performing GROUP BY or ORDER BY operations on tables that are much larger than your available memory, increase the value of read_rnd_buffer_size to speed up the reading of rows following sorting operations.
If you specify an option on the command line for mysqld or mysqld_safe, it remains in effect only for that invocation of the server. To use the option every time the server runs, put it in an option file. See Section 4.2.6, "Using Option Files".
5.1.2 Server Configuration Defaults
The MySQL server has many operating parameters, which you can change at server startup using command-line options or configuration files (option files). It is also possible to change many parameters at runtime. For general instructions on setting parameters at startup or runtime, see Section 5.1.4, "Server Command Options", andSection 5.1.5, "Server System Variables".
Before MySQL 5.7.5, on Unix platforms, mysql_install_db creates a default option file named my.cnf in the base installation directory. This file is created from a template included in the distribution package named my-default.cnf. You can find the template in or under the base installation directory. When started usingmysqld_safe, the server uses my.cnf file by default. If my.cnf already exists, mysql_install_db assumes it to be in use and writes a new file named my-new.cnf instead.
Note
As of MySQL 5.7.18, my-default.cnf is no longer included in or installed by distribution packages.
With one exception, the settings in the default option file are commented and have no effect. The exception is that the file sets the sql_mode system variable to NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES. This setting produces a server configuration that results in errors rather than warnings for bad data in operations that modify transactional tables. See Section 5.1.8, "Server SQL Modes".
On Windows, MySQL Installer interacts with the user and creates a file named my.ini in the base installation directory as the default option file. If you install on Windows from a Zip archive, you can copy the my-default.ini template file in the base installation directory to my.ini and use the latter as the default option file.
Note
As of MySQL 5.7.18, my-default.ini is no longer included in or installed by distribution packages.
Note
On Windows, the .ini or .cnf option file extension might not be displayed.
On any platform, after completing the installation process, you can edit the default option file at any time to modify the parameters used by the server. For example, to use a parameter setting in the file that is commented with a #character at the beginning of the line, remove the #, and modify the parameter value if necessary. To disable a setting, either add a # to the beginning of the line or remove it.
For additional information about option file format and syntax, see Section 4.2.6, "Using Option Files".
5.1.3 Server Option and Variable Reference
For a version of this table that is specific to NDB Cluster, see Section 21.3.2.5, "NDB Cluster mysqld Option and Variable Reference".
Table 5.1 Option/Variable Summary
Name | Cmd-Line | Option File | System Var | Status Var | Var Scope | Dynamic |
Yes | Yes |
|
|
|
| |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
| Yes |
| Both | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
|
| Yes |
| Both | No | |
|
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | No | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
|
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
| Both | Yes | |
- Variable: big_tables |
|
| Yes |
| Both | Yes |
Yes | Yes |
|
| Global | No | |
- Variable: bind_address |
|
| Yes |
| Global | No |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
| Both | Yes | |
- Variable: binlog_format |
|
| Yes |
| Both | Yes |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | Yes | |
|
| Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
|
|
| |
- Variable: binlog_rows_query_log_events |
|
|
|
|
|
|
|
| Yes |
| Both | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Both | Yes | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
| Yes |
| Both | Yes | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
Yes | Yes |
|
| Both | Yes | |
- Variable: character_set_filesystem |
|
| Yes |
| Both | Yes |
|
| Yes |
| Both | Yes | |
Yes | Yes |
|
| Both | Yes | |
- Variable: character_set_server |
|
| Yes |
| Both | Yes |
|
| Yes |
| Global | No | |
Yes | Yes |
|
| Global | No | |
- Variable: character_sets_dir |
|
| Yes |
| Global | No |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
Yes | Yes |
|
| Both | Yes | |
- Variable: collation_server |
|
| Yes |
| Both | Yes |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
Yes | Yes | Yes |
| Both | Yes | |
|
|
| Yes | Session | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Both | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
|
| Yes |
| Session | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
| Both | Yes | |
- Variable: default_storage_engine |
|
| Yes |
| Both | Yes |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes |
|
|
|
|
| |
Yes |
|
|
|
|
| |
Yes |
|
|
|
|
| |
Yes | Yes |
|
| Global | Yes | |
- Variable: delay_key_write |
|
| Yes |
| Global | Yes |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Session | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
- Variable: named_pipe |
|
|
|
|
|
|
|
| Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Varies | |
Yes | Yes | Yes |
| Global | Varies | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Session | No | |
Yes | Yes |
|
| Global | Yes | |
- Variable: event_scheduler |
|
| Yes |
| Global | Yes |
Yes | Yes |
|
|
|
| |
- Variable: executed_gtids_compression_period |
|
|
|
|
|
|
|
| Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
|
|
| |
- Variable: skip_external_locking |
|
|
|
|
|
|
|
| Yes |
| Session | No | |
Yes | Yes |
|
|
|
| |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
| Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
| Global | Yes | |
- Variable: general_log |
|
| Yes |
| Global | Yes |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
| Yes |
| Varies | No | |
Yes | Yes |
|
|
|
| |
- Variable: gtid_executed_compression_period |
|
|
|
|
|
|
|
| Yes |
| Global | Yes | |
Yes | Yes |
|
| Global | Varies | |
- Variable: gtid_mode |
|
| Yes |
| Global | Varies |
|
| Yes |
| Global | Varies | |
|
| Yes |
| Session | Yes | |
|
| Yes |
| Both | No | |
|
| Yes |
| Global | Yes | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | Yes | |
|
| Yes |
| Global | No | |
|
| Yes |
| Session | Yes | |
Yes | Yes |
|
| Global | No | |
- Variable: ignore_builtin_innodb |
|
| Yes |
| Global | No |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
| Global | No | |
- Variable: init_file |
|
| Yes |
| Global | No |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Varies | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Session | Yes | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Session | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
| Yes |
| Session | Yes | |
Yes |
|
|
|
|
| |
Yes |
|
|
|
|
| |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
Yes | Yes |
|
| Global | No | |
- Variable: large_pages |
|
| Yes |
| Global | No |
|
| Yes |
| Session | Yes | |
|
|
| Yes | Session | No | |
|
|
| Yes | Session | No | |
Yes | Yes |
|
| Both | Yes | |
- Variable: lc_messages |
|
| Yes |
| Both | Yes |
Yes | Yes |
|
| Global | No | |
- Variable: lc_messages_dir |
|
| Yes |
| Global | No |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | Yes | |
Yes |
|
|
|
|
| |
Yes | Yes | Yes |
| Both | Yes | |
|
|
| Yes | Global | No | |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | No | |
Yes | Yes |
|
| Global | Yes | |
- Variable: log_bin_trust_function_creators |
|
| Yes |
| Global | Yes |
Yes | Yes |
|
| Global | No | |
- Variable: log_bin_use_v1_row_events |
|
| Yes |
| Global | No |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
| Global | No | |
- Variable: log_error |
|
| Yes |
| Global | No |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
| Global | Yes | |
- Variable: log_output |
|
| Yes |
| Global | Yes |
Yes | Yes |
|
| Global | Yes | |
- Variable: log_queries_not_using_indexes |
|
| Yes |
| Global | Yes |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
| Global | No | |
- Variable: log_slave_updates |
|
| Yes |
| Global | No |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | Yes | |
|
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
| Global | Yes | |
- Variable: log_warnings |
|
| Yes |
| Global | Yes |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
| Both | Yes | |
- Variable: low_priority_updates |
|
| Yes |
| Both | Yes |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
- Variable: master_info_repository |
|
|
|
|
|
|
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
- Variable: master_verify_checksum |
|
|
|
|
|
|
|
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
Yes | Yes | Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
| Yes |
| Both | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
- Variable: locked_in_memory |
|
|
|
|
|
|
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
- Variable: myisam_recover_options |
|
|
|
|
|
|
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
Mysqlx_crud_modify_view |
|
|
| Yes | Both | No |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
Mysqlx_errors_unknown_message_type |
|
|
| Yes | Both | No |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
Yes | Yes |
|
|
|
| |
|
|
| Yes | Both | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Both | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Both | No | |
Yes | Yes |
|
|
|
| |
|
|
| Yes | Both | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes |
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
| Global | Yes | |
- Variable: ndb_default_column_format |
|
| Yes |
| Global | Yes |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
| Both | Yes | |
- Variable: ndb_deferred_constraints |
|
| Yes |
| Both | Yes |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
| Global | Yes | |
- Variable: ndb_distribution |
|
| Yes |
| Global | Yes |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Session | No | |
Yes | Yes |
|
| Global | No | |
- Variable: ndb_log_apply_status |
|
| Yes |
| Global | No |
Yes | Yes | Yes |
| Global | No | |
Yes |
| Yes |
| Both | Yes | |
Yes |
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
| Both | Yes | |
- Variable: ndb_log_exclusive_reads |
|
| Yes |
| Both | Yes |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
| Global | No | |
- Variable: ndb_log_orig |
|
| Yes |
| Global | No |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
| Global | No | |
- Variable: ndb_log_transaction_id |
|
| Yes |
| Global | No |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
- Variable: ndb_recv_thread_activation_threshold |
|
|
|
|
|
|
|
|
|
|
|
| |
Yes | Yes |
|
|
|
| |
- Variable: ndb_recv_thread_cpu_mask |
|
|
|
|
|
|
|
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Session | Yes | |
|
| Yes |
| Session | Yes | |
Yes |
|
|
|
|
| |
|
| Yes |
| Both | No | |
|
| Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | No | |
Yes |
| Yes |
| Both | Yes | |
Yes |
| Yes |
| Both | Yes | |
|
| Yes |
| Global | Yes | |
Yes |
| Yes |
| Both | Yes | |
Yes |
| Yes |
| Both | Yes | |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes |
|
|
|
|
| |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
| Both | Yes | |
- Variable: old_alter_table |
|
| Yes |
| Both | Yes |
|
| Yes |
| Both | Yes | |
Yes | Yes |
|
|
|
| |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
| Global | No | |
- Variable: open_files_limit |
|
| Yes |
| Global | No |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
performance-schema-consumer-events-transactions-history-long | Yes | Yes |
|
|
|
|
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
|
|
| |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
| Global | No | |
- Variable: pid_file |
|
| Yes |
| Global | No |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Both | Yes | |
|
|
| Yes | Global | No | |
Yes |
|
|
|
|
| |
|
| Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
|
| Yes |
| Global | No | |
|
| Yes |
| Session | No | |
|
| Yes |
| Session | Yes | |
|
| Yes |
| Session | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Both | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
|
|
| Yes | Both | No | |
|
| Yes |
| Session | Yes | |
|
| Yes |
| Session | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
|
| Yes |
| Session | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
| Global | No | |
- Variable: relay_log |
|
| Yes |
| Global | No |
|
| Yes |
| Global | No | |
Yes | Yes |
|
| Global | No | |
- Variable: relay_log_index |
|
| Yes |
| Global | No |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
- Variable: relay_log_info_file |
|
|
|
|
|
|
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
- Variable: relay_log_info_repository |
|
|
|
|
|
|
|
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
- Variable: relay_log_recovery |
|
|
|
|
|
|
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes |
|
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
| Global | No | |
- Variable: report_host |
|
| Yes |
| Global | No |
Yes | Yes |
|
| Global | No | |
- Variable: report_password |
|
| Yes |
| Global | No |
Yes | Yes |
|
| Global | No | |
- Variable: report_port |
|
| Yes |
| Global | No |
Yes | Yes |
|
| Global | No | |
- Variable: report_user |
|
| Yes |
| Global | No |
Yes | Yes | Yes |
| Global | Yes | |
|
| Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
| Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
| Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
| Yes |
| Global | Yes | |
|
| Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
| Yes |
| Global | Yes | |
|
| Yes |
| Global | Yes | |
|
| Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
| Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
| Global | Yes | |
- Variable: secure_auth |
|
| Yes |
| Global | Yes |
Yes | Yes |
|
| Global | No | |
- Variable: secure_file_priv |
|
| Yes |
| Global | No |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
Yes | Yes |
|
| Global | Yes | |
- Variable: server_id |
|
| Yes |
| Global | Yes |
Yes | Yes |
|
| Global | No | |
- Variable: server_id_bits |
|
| Yes |
| Global | No |
Yes | Yes | Yes |
| Global | No | |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | No | |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
- Variable: concurrent_insert |
|
|
|
|
|
|
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
| Global | No | |
- Variable: skip_name_resolve |
|
| Yes |
| Global | No |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
| Global | No | |
- Variable: skip_networking |
|
| Yes |
| Global | No |
skip-new | Yes | Yes |
|
|
|
|
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
| Global | No | |
- Variable: skip_show_database |
|
| Yes |
| Global | No |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
- Variable: slave_checkpoint_group |
|
|
|
|
|
|
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
- Variable: slave_checkpoint_period |
|
|
|
|
|
|
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
| Global | No | |
- Variable: slave_load_tmpdir |
|
| Yes |
| Global | No |
Yes | Yes |
|
|
|
| |
- Variable: slave_max_allowed_packet |
|
|
|
|
|
|
|
| Yes |
| Global | Yes | |
Yes | Yes |
|
| Global | Yes | |
- Variable: slave_net_timeout |
|
| Yes |
| Global | Yes |
|
|
| Yes | Global | No | |
Yes | Yes |
|
|
|
| |
- Variable: slave_parallel_type |
|
|
|
|
|
|
|
| Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
- Variable: slave_parallel_workers |
|
|
|
|
|
|
Yes |
| Yes |
| Global | Yes | |
Yes |
|
|
|
|
| |
- Variable: slave_pending_jobs_size_max |
|
|
|
|
|
|
|
| Yes |
| Global | Yes | |
Yes |
| Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
|
|
| |
- Variable: slave_rows_search_algorithms |
|
|
|
|
|
|
|
| Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
| Global | No | |
- Variable: slave_skip_errors |
|
| Yes |
| Global | No |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Both | No | |
Yes | Yes | Yes |
| Global | Yes | |
|
|
| Yes | Both | No | |
Yes | Yes |
|
| Global | Yes | |
- Variable: slow_query_log |
|
| Yes |
| Global | Yes |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Session | Yes | |
|
| Yes |
| Both | Yes | |
Yes | Yes |
|
| Both | Yes | |
- Variable: sql_mode |
|
| Yes |
| Both | Yes |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Global | Yes | |
|
| Yes |
| Both | Yes | |
Yes | Yes |
|
|
|
| |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
| Global | No | |
- Variable: ssl_ca |
|
| Yes |
| Global | No |
|
|
| Yes | Global | No | |
Yes | Yes |
|
| Global | No | |
- Variable: ssl_capath |
|
| Yes |
| Global | No |
Yes | Yes |
|
| Global | No | |
- Variable: ssl_cert |
|
| Yes |
| Global | No |
|
|
| Yes | Both | No | |
Yes | Yes |
|
| Global | No | |
- Variable: ssl_cipher |
|
| Yes |
| Global | No |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
| Global | No | |
- Variable: ssl_crl |
|
| Yes |
| Global | No |
Yes | Yes |
|
| Global | No | |
- Variable: ssl_crlpath |
|
| Yes |
| Global | No |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
| Global | No | |
- Variable: ssl_key |
|
| Yes |
| Global | No |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
| Yes |
| Global | Yes | |
|
|
| Yes | Both | No | |
|
| Yes |
| Global | No | |
|
|
| Yes | Both | No | |
|
|
| Yes | Both | No | |
Yes | Yes |
|
|
|
| |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Global | Yes | |
Yes | Yes | Yes |
| Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | Yes | |
|
| Yes |
| Session | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
|
| Yes |
| Session | Yes | |
Yes | Yes |
|
| Both | Yes | |
- Variable: tx_isolation |
|
| Yes |
| Both | Yes |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes |
|
| Both | Yes | |
- Variable: tx_read_only |
|
| Yes |
| Both | Yes |
Yes |
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
|
| Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | Yes | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
Yes | Yes |
|
|
|
| |
Yes | Yes |
|
|
|
| |
Yes | Yes | Yes |
| Global | Yes | |
|
| Yes |
| Global | Varies | |
|
|
| Yes | Global | No | |
|
|
| Yes | Global | No | |
|
| Yes |
| Global | Yes | |
|
| Yes |
| Global | Yes | |
|
| Yes |
| Global | Yes | |
|
| Yes |
| Global | Yes | |
|
| Yes |
| Global | Yes | |
|
| Yes |
| Global | No | |
Yes | Yes |
|
|
|
| |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
|
| Yes |
| Global | No | |
Yes | Yes | Yes |
| Both | Yes | |
Yes | Yes | Yes |
| Both | No | |
Yes | Yes | Yes |
| Both | Yes | |
|
| Yes |
| Session | No |
[a] This option is dynamic, but only the server should set this information. You should not set the value of this variable manually.
[b] This option is dynamic, but only the server should set this information. You should not set the value of this variable manually.
When you start the mysqld server, you can specify program options using any of the methods described inSection 4.2.3, "Specifying Program Options". The most common methods are to provide options in an option file or on the command line. However, in most cases it is desirable to make sure that the server uses the same options each time it runs. The best way to ensure this is to list them in an option file. See Section 4.2.6, "Using Option Files". That section also describes option file format and syntax.
mysqld reads options from the [mysqld] and [server] groups. mysqld_safe reads options from the[mysqld], [server], [mysqld_safe], and [safe_mysqld] groups. mysql.server reads options from the[mysqld] and [mysql.server] groups.
An embedded MySQL server usually reads options from the [server], [embedded], and [xxxxx_SERVER]groups, where xxxxx is the name of the application into which the server is embedded.
mysqld accepts many command options. For a brief summary, execute this command:
mysqld --help
To see the full list, use this command:
mysqld --verbose --help
Some of the items in the list are actually system variables that can be set at server startup. These can be displayed at runtime using the SHOW VARIABLES statement. Some items displayed by the preceding mysqldcommand do not appear in SHOW VARIABLES output; this is because they are options only and not system variables.
Some options control the size of buffers or caches. For a given buffer, the server might need to allocate internal data structures. These structures typically are allocated from the total memory allocated to the buffer, and the amount of space required might be platform dependent. This means that when you assign a value to an option that controls a buffer size, the amount of space actually available might differ from the value assigned. In some cases, the amount might be less than the value assigned. It is also possible that the server will adjust a value upward. For example, if you assign a value of 0 to an option for which the minimal value is 1024, the server will set the value to 1024.
Values for buffer sizes, lengths, and stack sizes are given in bytes unless otherwise specified.
Some options take file name values. Unless otherwise specified, the default file location is the data directory if the value is a relative path name. To specify the location explicitly, use an absolute path name. Suppose that the data directory is /var/mysql/data. If a file-valued option is given as a relative path name, it will be located under/var/mysql/data. If the value is an absolute path name, its location is as given by the path name.
You can also set the values of server system variables at server startup by using variable names as options. To assign a value to a server system variable, use an option of the form --var_name=value. For example, --sort_buffer_size=384M sets the sort_buffer_size variable to a value of 384MB.
To restrict the maximum value to which a system variable can be set at runtime with the SET statement, specify this maximum by using an option of the form --maximum-var_name=value at server startup.
You can change the values of most system variables at runtime with the SET statement. See Section 13.7.4.1, "SET Syntax for Variable Assignment".
Section 5.1.5, "Server System Variables", provides a full description for all variables, and additional information for setting them at server startup and runtime. For information on changing system variables, see Section 5.1.1, "Configuring the Server".
Command-Line Format | --help |
Command-Line Format | --allow-suspicious-udfs | |
Permitted Values | Type | boolean |
Default | FALSE |
Command-Line Format | --ansi |
Command-Line Format | --basedir=dir_name | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values | Type | directory name |
Command-Line Format | --big-tables | |
System Variable | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values | Type | boolean |
Default | OFF |
Command-Line Format | --bind-address=addr | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values | Type | string |
Default | * |
Command-Line Format | --binlog-format=format | |
System Variable | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values (<= 5.7.6) | Type | enumeration |
Default | STATEMENT | |
Valid Values | ROW | |
STATEMENT | ||
MIXED | ||
Permitted Values (>= 5.7.7) | Type | enumeration |
Default | ROW | |
Valid Values | ROW | |
STATEMENT | ||
MIXED |
Deprecated | 5.7.6 |
Command-Line Format | --bootstrap |
Command-Line Format | --character-sets-dir=dir_name | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values | Type | directory name |
Command-Line Format | --character-set-client-handshake | |
Permitted Values | Type | boolean |
Default | TRUE |
Command-Line Format | --character-set-filesystem=name | |
System Variable | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values | Type | string |
Default | binary |
Command-Line Format | --character-set-server | |
System Variable | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values | Type | string |
Default | latin1 |
Command-Line Format | --chroot=dir_name | |
Permitted Values | Type | directory name |
Command-Line Format | --collation-server | |
System Variable | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values | Type | string |
Default | latin1_swedish_ci |
Command-Line Format | --console |
Platform Specific | Windows |
Command-Line Format | --core-file | |
Permitted Values | Type | boolean |
Default | OFF |
Introduced | 5.7.6 | |
Command-Line Format | --daemonize[={OFF|ON}] | |
Permitted Values | Type | boolean |
Default | OFF |
Command-Line Format | --datadir=dir_name | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values | Type | directory name |
Command-Line Format | --debug[=debug_options] | |
System Variable | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values (Unix) | Type | string |
Default | d:t:i:o,/tmp/mysqld.trace | |
Permitted Values (Windows) | Type | string |
Default | d:t:i:O,\mysqld.trace |
Command-Line Format | --debug-sync-timeout[=#] | |
Permitted Values | Type | integer |
Removed | 5.7.2 | |
Command-Line Format | --default-authentication-plugin=plugin_name | |
Permitted Values | Type | enumeration |
Default | mysql_native_password | |
Valid Values | mysql_native_password | |
sha256_password |
Command-Line Format | --default-storage-engine=name | |
System Variable | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values | Type | enumeration |
Default | InnoDB |
Command-Line Format | --default-time-zone=name | |
Permitted Values | Type | string |
For additional information about this option, see Section 4.2.7, "Command-Line Options that Affect Option-File Handling".
This must be the first option on the command line if it is used, except that if the server is started with the --defaults-file and --install (or --install-manual) options, --install (or --install-manual) must be first.
For additional information about this option, see Section 4.2.7, "Command-Line Options that Affect Option-File Handling".
Read not only the usual option groups, but also groups with the usual names and a suffix of str. For example,mysqld normally reads the [mysqld] group. If the --defaults-group-suffix=_other option is given, mysqldalso reads the [mysqld_other] group.
For additional information about this option, see Section 4.2.7, "Command-Line Options that Affect Option-File Handling".
Command-Line Format | --delay-key-write[=name] | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | Yes | |
Permitted Values | Type | enumeration |
Default | ON | |
Valid Values | ON | |
OFF | ||
ALL |
Deprecated | 5.7.6 |
Command-Line Format | --des-key-file=file_name |
Introduced | 5.7.17 |
Deprecated | 5.7.17 |
Command-Line Format | --disable-partition-engine-check |
Introduced | 5.7.11 | |
Command-Line Format | --early-plugin-load=plugin_list | |
Permitted Values (5.7.11) | Type | string |
Default | keyring_file plugin library file name | |
Permitted Values (>= 5.7.12) | Type | string |
Default | empty string |
Command-Line Format | --enable-named-pipe |
Platform Specific | Windows |
Command-Line Format | --event-scheduler[=value] | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | Yes | |
Permitted Values | Type | enumeration |
Default | OFF | |
Valid Values | ON | |
OFF | ||
DISABLED |
Command-Line Format | --exit-info[=flags] | |
Permitted Values | Type | integer |
Command-Line Format | --external-locking | |
Permitted Values | Type | boolean |
Default | FALSE |
Command-Line Format | --flush | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | Yes | |
Permitted Values | Type | boolean |
Default | OFF |
Command-Line Format | --gdb | |
Permitted Values | Type | boolean |
Default | FALSE |
Command-Line Format | --general-log | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | Yes | |
Permitted Values | Type | boolean |
Default | OFF |
5.7.16 | ||
Command-Line Format | --ignore-db-dir | |
Permitted Values | Type | directory name |
Introduced | 5.7.6 | |
Command-Line Format | --initialize | |
Permitted Values | Type | boolean |
Default | OFF |
Introduced | 5.7.6 | |
Command-Line Format | --initialize-insecure | |
Permitted Values | Type | boolean |
Default | OFF |
Command-Line Format | --init-file=file_name | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values | Type | file name |
Set an option for the InnoDB storage engine. The InnoDB options are listed in Section 14.14, "InnoDB Startup Options and System Variables".
Command-Line Format | --install [service_name] |
Platform Specific | Windows |
Command-Line Format | --install-manual [service_name] |
Platform Specific | Windows |
Deprecated | 5.6.1, by lc-messages-dir | |
Command-Line Format | --language=name | |
System Variable | Name | language |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values | Type | directory name |
Default | /usr/local/mysql/share/mysql/english/ |
Command-Line Format | --large-pages | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Platform Specific | Linux | |
Permitted Values (Linux) | Type | boolean |
Default | FALSE |
Command-Line Format | --lc-messages=name | |
System Variable | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values | Type | string |
Default | en_US |
Command-Line Format | --lc-messages-dir=dir_name | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values | Type | directory name |
Command-Line Format | --local-service |
Command-Line Format | --log-error[=file_name] | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values | Type | file name |
Command-Line Format | --log-isam[=file_name] | |
Permitted Values | Type | file name |
Command-Line Format | --log-output=name | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | Yes | |
Permitted Values | Type | set |
Default | FILE | |
Valid Values | TABLE | |
FILE | ||
NONE |
Command-Line Format | --log-queries-not-using-indexes | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | Yes | |
Permitted Values | Type | boolean |
Default | OFF |
Command-Line Format | --log-raw[=value] | |
Permitted Values | Type | boolean |
Default | OFF |
For more information, see Section 6.1.2.3, "Passwords and Logging".
Command-Line Format | --log-short-format | |
Permitted Values | Type | boolean |
Default | FALSE |
Removed | 5.7.1 | |
Command-Line Format | --log-slow-admin-statements (5.7.0) | |
Permitted Values | Type | boolean |
Default | OFF |
Command-Line Format | --log-tc=file_name | |
Permitted Values | Type | file name |
Default | tc.log |
Command-Line Format | --log-tc-size=# | |
Permitted Values (32-bit platforms) | Type | integer |
Default | 24576 | |
Max Value | 4294967295 | |
Permitted Values (64-bit platforms) | Type | integer |
Default | 24576 | |
Max Value | 18446744073709551615 |
Deprecated | 5.7.2 | |
Command-Line Format | --log-warnings[=#] | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | Yes | |
Permitted Values (32-bit platforms, <= 5.7.1) | Type | integer |
Default | 1 | |
Min Value | 0 | |
Max Value | 4294967295 | |
Permitted Values (32-bit platforms, >= 5.7.2) | Type | integer |
Default | 2 | |
Min Value | 0 | |
Max Value | 4294967295 | |
Permitted Values (64-bit platforms, <= 5.7.1) | Type | integer |
Default | 1 | |
Min Value | 0 | |
Max Value | 18446744073709551615 | |
Permitted Values (64-bit platforms, >= 5.7.2) | Type | integer |
Default | 2 | |
Min Value | 0 | |
Max Value | 18446744073709551615 |
Command-Line Format | --low-priority-updates | |
System Variable | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values | Type | boolean |
Default | FALSE |
Command-Line Format | --min-examined-row-limit=# | |
System Variable | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values (32-bit platforms) | Type | integer |
Default | 0 | |
Min Value | 0 | |
Max Value | 4294967295 | |
Permitted Values (64-bit platforms) | Type | integer |
Default | 0 | |
Min Value | 0 | |
Max Value | 18446744073709551615 |
Command-Line Format | --memlock | |
Permitted Values | Type | boolean |
Default | FALSE |
Command-Line Format | --myisam-block-size=# | |
Permitted Values | Type | integer |
Default | 1024 | |
Min Value | 1024 | |
Max Value | 16384 |
Command-Line Format | --myisam-recover-options[=name] | |
Permitted Values | Type | enumeration |
Default | OFF | |
Valid Values | OFF | |
DEFAULT | ||
BACKUP | ||
FORCE | ||
QUICK |
Option | Description |
OFF | No recovery. |
DEFAULT | Recovery without backup, forcing, or quick checking. |
BACKUP | If the data file was changed during recovery, save a backup of the tbl_name.MYD file astbl_name-datetime.BAK. |
FORCE | Run recovery even if we would lose more than one row from the .MYD file. |
QUICK | Do not check the rows in the table if there are not any delete blocks. |
Do not read any option files. If program startup fails due to reading unknown options from an option file, --no-defaults can be used to prevent them from being read. This must be the first option on the command line if it is used.
For additional information about this option, see Section 4.2.7, "Command-Line Options that Affect Option-File Handling".
Command-Line Format | --old-alter-table | |
System Variable | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values | Type | boolean |
Default | OFF |
Command-Line Format | --old-style-user-limits | |
Permitted Values | Type | boolean |
Default | FALSE |
Command-Line Format | --open-files-limit=# | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values | Type | integer |
Default | 5000, with possible adjustment | |
Min Value | 0 | |
Max Value | platform dependent |
Deprecated | 5.7.16 | |
Command-Line Format | --partition | |
Disabled by | skip-partition | |
Permitted Values | Type | boolean |
Default | ON |
Configure a Performance Schema option. For details, see Section 25.13, "Performance Schema Command Options".
Command-Line Format | --pid-file=file_name | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values | Type | file name |
Specifies an option that pertains to a server plugin. For example, many storage engines can be built as plugins, and for such engines, options for them can be specified with a --plugin prefix. Thus, the --innodb_file_per_table option for InnoDB can be specified as --plugin-innodb_file_per_table.
For boolean options that can be enabled or disabled, the --skip prefix and other alternative formats are supported as well (see Section 4.2.5, "Program Option Modifiers"). For example, --skip-plugin-innodb_file_per_table disables innodb_file_per_table.
The rationale for the --plugin prefix is that it enables plugin options to be specified unambiguously if there is a name conflict with a built-in server option. For example, were a plugin writer to name a plugin "sql" and implement a "mode" option, the option name might be --sql-mode, which would conflict with the built-in option of the same name. In such cases, references to the conflicting name are resolved in favor of the built-in option. To avoid the ambiguity, users can specify the plugin option as --plugin-sql-mode. Use of the --plugin prefix for plugin options is recommended to avoid any question of ambiguity.
Command-Line Format | --plugin-load=plugin_list | |
Permitted Values | Type | string |
Command-Line Format | --plugin-load-add=plugin_list | |
Permitted Values | Type | string |
Command-Line Format | --port=# | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values | Type | integer |
Default | 3306 | |
Min Value | 0 | |
Max Value | 65535 |
Command-Line Format | --port-open-timeout=# | |
Permitted Values | Type | integer |
Default | 0 |
Print the program name and all options that it gets from option files. Password values are masked. This must be the first option on the command line if it is used, except that it may be used immediately after --defaults-fileor --defaults-extra-file.
For additional information about this option, see Section 4.2.7, "Command-Line Options that Affect Option-File Handling".
Command-Line Format | --remove [service_name] |
Platform Specific | Windows |
Command-Line Format | --safe-user-create | |
Permitted Values | Type | boolean |
Default | FALSE |
Deprecated | 5.7.5 | |
Command-Line Format | --secure-auth | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | Yes | |
Permitted Values (<= 5.7.4) | Type | boolean |
Default | ON | |
Valid Values | OFF | |
ON | ||
Permitted Values (>= 5.7.5) | Type | boolean |
Default | ON | |
Valid Values | ON |
Command-Line Format | --secure-file-priv=dir_name | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values (<= 5.7.5) | Type | string |
Default | empty | |
Valid Values | empty | |
dirname | ||
Permitted Values (>= 5.7.6) | Type | string |
Default | platform specific | |
Valid Values | empty | |
dirname | ||
NULL |
Command-Line Format | --shared-memory[={0,1}] | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Platform Specific | Windows | |
Permitted Values | Type | boolean |
Default | FALSE |
Command-Line Format | --shared-memory-base-name=name | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Platform Specific | Windows | |
Permitted Values | Type | string |
Default | MYSQL |
Turn off the ability to select and insert at the same time on MyISAM tables. (This is to be used only if you think you have found a bug in this feature.) See Section 8.11.3, "Concurrent Inserts".
Command-Line Format | --skip-event-scheduler |
| --disable-event-scheduler |
This option causes the server to start without using the privilege system at all, which gives anyone with access to the server unrestricted access to all databases. You can cause a running server to start using the grant tables again by executing mysqladmin flush-privileges or mysqladmin reload command from a system shell, or by issuing a MySQL FLUSH PRIVILEGES statement after connecting to the server.
This option also causes the server to suppress during its startup sequence the loading of user-defined functions (UDFs), scheduled events, and plugins that were installed with the INSTALL PLUGIN statement. To cause plugins to be loaded anyway, use the --plugin-load option. --skip-grant-tables also causes thedisabled_storage_engines system variable to have no effect.
FLUSH PRIVILEGES might be executed implicitly by other actions performed after startup. For example,mysql_upgrade flushes the privileges during the upgrade procedure.
Disable use of the internal host cache for faster name-to-IP resolution. In this case, the server performs a DNS lookup every time a client connects. See Section 8.12.5.2, "DNS Lookup Optimization and the Host Cache".
Use of --skip-host-cache is similar to setting the host_cache_size system variable to 0, buthost_cache_size is more flexible because it can also be used to resize, enable, or disable the host cache at runtime, not just at server startup.
If you start the server with --skip-host-cache, that does not prevent changes to the value ofhost_cache_size, but such changes have no effect and the cache is not re-enabled even if host_cache_sizeis set larger than 0.
Disable the InnoDB storage engine. In this case, because the default storage engine is InnoDB, the server will not start unless you also use --default-storage-engine and --default-tmp-storage-engine to set the default to some other engine for both permanent and TEMPORARY tables.
As of MySQL 5.7.5, the InnoDB storage engine can no longer be disabled, and the --skip-innodb option is deprecated and has no effect. Its use results in a warning. This option will be removed in a future MySQL release.
Do not resolve host names when checking client connections. Use only IP addresses. If you use this option, allHost column values in the grant tables must be IP addresses. See Section 8.12.5.2, "DNS Lookup Optimization and the Host Cache".
Depending on the network configuration of your system and the Host values for your accounts, clients may need to connect using an explicit --host option, such as --host=127.0.0.1 or --host=::1.
An attempt to connect to the host 127.0.0.1 normally resolves to the localhost account. However, this fails if the server is run with the --skip-name-resolve option, so make sure that an account exists that can accept a connection. For example, to be able to connect as root using --host=127.0.0.1 or --host=::1, create these accounts:
CREATE USER ‘root‘@‘127.0.0.1‘ IDENTIFIED BY ‘root-password‘;
Do not listen for TCP/IP connections at all. All interaction with mysqld must be made using named pipes or shared memory (on Windows) or Unix socket files (on Unix). This option is highly recommended for systems where only local clients are permitted. See Section 8.12.5.2, "DNS Lookup Optimization and the Host Cache".
Deprecated | 5.7.16 |
Command-Line Format | --skip-partition |
| --disable-partition |
Options that begin with --ssl specify whether to permit clients to connect using SSL and indicate where to find SSL keys and certificates. See Section 6.4.2, "Command Options for Encrypted Connections".
Command-Line Format | --standalone |
Platform Specific | Windows |
Command-Line Format | --super-large-pages | |
Platform Specific | Solaris | |
Permitted Values (Solaris) | Type | boolean |
Default | FALSE |
Command-Line Format | --symbolic-links | |
Permitted Values | Type | boolean |
Default | ON |
Command-Line Format | --skip-show-database | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No |
Command-Line Format | --skip-stack-trace |
Command-Line Format | --slow-query-log | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | Yes | |
Permitted Values | Type | boolean |
Default | OFF |
Command-Line Format | --slow-start-timeout=# | |
Permitted Values (Windows) | Type | integer |
Default | 15000 |
Command-Line Format | --socket={file_name|pipe_name} | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values (Windows) | Type | string |
Default | MySQL | |
Permitted Values (Other) | Type | string |
Default | /tmp/mysql.sock |
Command-Line Format | --sql-mode=name | |
System Variable | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values (<= 5.7.4) | Type | set |
Default | NO_ENGINE_SUBSTITUTION | |
Valid Values | ALLOW_INVALID_DATES | |
ANSI_QUOTES | ||
ERROR_FOR_DIVISION_BY_ZERO | ||
HIGH_NOT_PRECEDENCE | ||
IGNORE_SPACE | ||
NO_AUTO_CREATE_USER | ||
NO_AUTO_VALUE_ON_ZERO | ||
NO_BACKSLASH_ESCAPES | ||
NO_DIR_IN_CREATE | ||
NO_ENGINE_SUBSTITUTION | ||
NO_FIELD_OPTIONS | ||
NO_KEY_OPTIONS | ||
NO_TABLE_OPTIONS | ||
NO_UNSIGNED_SUBTRACTION | ||
NO_ZERO_DATE | ||
NO_ZERO_IN_DATE | ||
ONLY_FULL_GROUP_BY | ||
PAD_CHAR_TO_FULL_LENGTH | ||
PIPES_AS_CONCAT | ||
REAL_AS_FLOAT | ||
STRICT_ALL_TABLES | ||
STRICT_TRANS_TABLES | ||
Permitted Values (>= 5.7.5, <= 5.7.6) | Type | set |
Default | ONLY_FULL_GROUP_BY STRICT_TRANS_TABLES NO_ENGINE_SUBSTITUTION | |
Valid Values | ALLOW_INVALID_DATES | |
ANSI_QUOTES | ||
ERROR_FOR_DIVISION_BY_ZERO | ||
HIGH_NOT_PRECEDENCE | ||
IGNORE_SPACE | ||
NO_AUTO_CREATE_USER | ||
NO_AUTO_VALUE_ON_ZERO | ||
NO_BACKSLASH_ESCAPES | ||
NO_DIR_IN_CREATE | ||
NO_ENGINE_SUBSTITUTION | ||
NO_FIELD_OPTIONS | ||
NO_KEY_OPTIONS | ||
NO_TABLE_OPTIONS | ||
NO_UNSIGNED_SUBTRACTION | ||
NO_ZERO_DATE | ||
NO_ZERO_IN_DATE | ||
ONLY_FULL_GROUP_BY | ||
PAD_CHAR_TO_FULL_LENGTH | ||
PIPES_AS_CONCAT | ||
REAL_AS_FLOAT | ||
STRICT_ALL_TABLES | ||
STRICT_TRANS_TABLES | ||
Permitted Values (5.7.7) | Type | set |
Default | ONLY_FULL_GROUP_BY STRICT_TRANS_TABLES NO_AUTO_CREATE_USER NO_ENGINE_SUBSTITUTION | |
Valid Values | ALLOW_INVALID_DATES | |
ANSI_QUOTES | ||
ERROR_FOR_DIVISION_BY_ZERO | ||
HIGH_NOT_PRECEDENCE | ||
IGNORE_SPACE | ||
NO_AUTO_CREATE_USER | ||
NO_AUTO_VALUE_ON_ZERO | ||
NO_BACKSLASH_ESCAPES | ||
NO_DIR_IN_CREATE | ||
NO_ENGINE_SUBSTITUTION | ||
NO_FIELD_OPTIONS | ||
NO_KEY_OPTIONS | ||
NO_TABLE_OPTIONS | ||
NO_UNSIGNED_SUBTRACTION | ||
NO_ZERO_DATE | ||
NO_ZERO_IN_DATE | ||
ONLY_FULL_GROUP_BY | ||
PAD_CHAR_TO_FULL_LENGTH | ||
PIPES_AS_CONCAT | ||
REAL_AS_FLOAT | ||
STRICT_ALL_TABLES | ||
STRICT_TRANS_TABLES | ||
Permitted Values (>= 5.7.8) | Type | set |
Default | ONLY_FULL_GROUP_BY STRICT_TRANS_TABLES NO_ZERO_IN_DATE NO_ZERO_DATE ERROR_FOR_DIVISION_BY_ZERO NO_AUTO_CREATE_USER NO_ENGINE_SUBSTITUTION | |
Valid Values | ALLOW_INVALID_DATES | |
ANSI_QUOTES | ||
ERROR_FOR_DIVISION_BY_ZERO | ||
HIGH_NOT_PRECEDENCE | ||
IGNORE_SPACE | ||
NO_AUTO_CREATE_USER | ||
NO_AUTO_VALUE_ON_ZERO | ||
NO_BACKSLASH_ESCAPES | ||
NO_DIR_IN_CREATE | ||
NO_ENGINE_SUBSTITUTION | ||
NO_FIELD_OPTIONS | ||
NO_KEY_OPTIONS | ||
NO_TABLE_OPTIONS | ||
NO_UNSIGNED_SUBTRACTION | ||
NO_ZERO_DATE | ||
NO_ZERO_IN_DATE | ||
ONLY_FULL_GROUP_BY | ||
PAD_CHAR_TO_FULL_LENGTH | ||
PIPES_AS_CONCAT | ||
REAL_AS_FLOAT | ||
STRICT_ALL_TABLES | ||
STRICT_TRANS_TABLES |
Command-Line Format | --sysdate-is-now | |
Permitted Values | Type | boolean |
Default | FALSE |
Command-Line Format | --tc-heuristic-recover=name | |
Permitted Values | Type | enumeration |
Default | COMMIT | |
Valid Values | COMMIT | |
ROLLBACK |
Deprecated | 5.7.18 | |
Command-Line Format | --temp-pool | |
Permitted Values (Linux) | Type | boolean |
Default | TRUE | |
Permitted Values (Other) | Type | boolean |
Default | FALSE |
Command-Line Format | --transaction-isolation=name | |
System Variable (>= 5.7.20) | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values | Type | enumeration |
Default | REPEATABLE-READ | |
Valid Values | READ-UNCOMMITTED | |
READ-COMMITTED | ||
REPEATABLE-READ | ||
SERIALIZABLE |
Command-Line Format | --transaction-read-only | |
System Variable (>= 5.7.20) | Name | |
Variable Scope | Global, Session | |
Dynamic Variable | Yes | |
Permitted Values | Type | boolean |
Default | OFF |
Command-Line Format | --tmpdir=dir_name | |
System Variable | Name | |
Variable Scope | Global | |
Dynamic Variable | No | |
Permitted Values | Type | directory name |
Command-Line Format | --user=name | |
Permitted Values | Type | string |
The MySQL server maintains many system variables that indicate how it is configured. Each system variable has a default value. System variables can be set at server startup using options on the command line or in an option file. Most of them can be changed dynamically at runtime using the SET statement, which enables you to modify operation of the server without having to stop and restart it. Setting the global value of a system variable requires the SUPER privilege. For some system variables, setting the session value also requires the SUPER privilege; if so, it is indicated in the variable description. You can also use system variable values in expressions.
There are several ways to see the names and values of system variables:
This section includes a table that lists all system variables and following the table provides a description of each one. Variables with no version indicated are present in all MySQL 5.7 releases. For more information about manipulation of system variables, see Section 5.1.6, "Using System Variables".
Table 5.2 System Variable Summary
Name | Cmd-Line | Option File | System Var | Var Scope | Dynamic |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Both | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Both | No | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes |
|
| Yes | |
- Variable: big_tables |
|
| Yes | Both | Yes |
Yes | Yes |
|
| No | |
- Variable: bind_address |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: binlog_format |
|
| Yes | Both | Yes |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: character_set_filesystem |
|
| Yes | Both | Yes |
|
| Yes | Both | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: character_set_server |
|
| Yes | Both | Yes |
|
| Yes | Global | No | |
Yes | Yes |
|
| No | |
- Variable: character_sets_dir |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: collation_server |
|
| Yes | Both | Yes |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Session | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: default_storage_engine |
|
| Yes | Both | Yes |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: delay_key_write |
|
| Yes | Global | Yes |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Session | No | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes | Yes | Global | Varies | |
Yes | Yes | Yes | Global | Varies | |
|
| Yes | Both | Yes | |
|
| Yes | Session | No | |
Yes | Yes |
|
| Yes | |
- Variable: event_scheduler |
|
| Yes | Global | Yes |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Session | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes |
|
| Yes | |
- Variable: general_log |
|
| Yes | Global | Yes |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Varies | No | |
|
| Yes | Global | Yes | |
Yes | Yes |
|
| Varies | |
- Variable: gtid_mode |
|
| Yes | Global | Varies |
|
| Yes | Global | Varies | |
|
| Yes | Session | Yes | |
|
| Yes | Both | No | |
|
| Yes | Global | Yes | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | Yes | |
|
| Yes | Global | No | |
|
| Yes | Session | Yes | |
Yes | Yes |
|
| No | |
- Variable: ignore_builtin_innodb |
|
| Yes | Global | No |
|
| Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes |
|
| No | |
- Variable: init_file |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Varies | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Session | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Session | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Session | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
Yes | Yes |
|
| No | |
- Variable: large_pages |
|
| Yes | Global | No |
|
| Yes | Session | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: lc_messages |
|
| Yes | Both | Yes |
Yes | Yes |
|
| No | |
- Variable: lc_messages_dir |
|
| Yes | Global | No |
|
| Yes | Both | Yes | |
|
| Yes | Global | No | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
Yes | Yes |
|
| Yes | |
- Variable: log_bin_trust_function_creators |
|
| Yes | Global | Yes |
Yes | Yes |
|
| No | |
- Variable: log_bin_use_v1_row_events |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes |
|
| No | |
- Variable: log_error |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: log_output |
|
| Yes | Global | Yes |
Yes | Yes |
|
| Yes | |
- Variable: log_queries_not_using_indexes |
|
| Yes | Global | Yes |
Yes | Yes |
|
| No | |
- Variable: log_slave_updates |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: log_warnings |
|
| Yes | Global | Yes |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: low_priority_updates |
|
| Yes | Both | Yes |
|
| Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes |
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: ndb_default_column_format |
|
| Yes | Global | Yes |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: ndb_deferred_constraints |
|
| Yes | Both | Yes |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: ndb_distribution |
|
| Yes | Global | Yes |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes |
|
| No | |
- Variable: ndb_log_apply_status |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | No | |
Yes |
| Yes | Both | Yes | |
Yes |
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: ndb_log_exclusive_reads |
|
| Yes | Both | Yes |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes |
|
| No | |
- Variable: ndb_log_orig |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | No | |
Yes | Yes |
|
| No | |
- Variable: ndb_log_transaction_id |
|
| Yes | Global | No |
|
| Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Session | Yes | |
|
| Yes | Session | Yes | |
|
| Yes | Both | No | |
|
| Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | No | |
Yes |
| Yes | Both | Yes | |
Yes |
| Yes | Both | Yes | |
|
| Yes | Global | Yes | |
Yes |
| Yes | Both | Yes | |
Yes |
| Yes | Both | Yes | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes |
|
| Yes | |
- Variable: old_alter_table |
|
| Yes | Both | Yes |
|
| Yes | Both | Yes | |
Yes | Yes |
|
| No | |
- Variable: open_files_limit |
|
| Yes | Global | No |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes |
|
| No | |
- Variable: pid_file |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Global | No | |
|
| Yes | Session | No | |
|
| Yes | Session | Yes | |
|
| Yes | Session | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Session | Yes | |
|
| Yes | Session | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Session | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes |
|
| No | |
- Variable: relay_log |
|
| Yes | Global | No |
|
| Yes | Global | No | |
Yes | Yes |
|
| No | |
- Variable: relay_log_index |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes |
|
| No | |
- Variable: report_host |
|
| Yes | Global | No |
Yes | Yes |
|
| No | |
- Variable: report_password |
|
| Yes | Global | No |
Yes | Yes |
|
| No | |
- Variable: report_port |
|
| Yes | Global | No |
Yes | Yes |
|
| No | |
- Variable: report_user |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: secure_auth |
|
| Yes | Global | Yes |
Yes | Yes |
|
| No | |
- Variable: secure_file_priv |
|
| Yes | Global | No |
Yes | Yes |
|
| Yes | |
- Variable: server_id |
|
| Yes | Global | Yes |
Yes | Yes |
|
| No | |
- Variable: server_id_bits |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes |
|
| No | |
- Variable: skip_name_resolve |
|
| Yes | Global | No |
Yes | Yes |
|
| No | |
- Variable: skip_networking |
|
| Yes | Global | No |
Yes | Yes |
|
| No | |
- Variable: skip_show_database |
|
| Yes | Global | No |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes |
|
| No | |
- Variable: slave_load_tmpdir |
|
| Yes | Global | No |
|
| Yes | Global | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: slave_net_timeout |
|
| Yes | Global | Yes |
|
| Yes | Global | Yes | |
Yes |
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
Yes |
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
Yes | Yes |
|
| No | |
- Variable: slave_skip_errors |
|
| Yes | Global | No |
|
| Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: slow_query_log |
|
| Yes | Global | Yes |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Session | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: sql_mode |
|
| Yes | Both | Yes |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes |
|
| No | |
- Variable: ssl_ca |
|
| Yes | Global | No |
Yes | Yes |
|
| No | |
- Variable: ssl_capath |
|
| Yes | Global | No |
Yes | Yes |
|
| No | |
- Variable: ssl_cert |
|
| Yes | Global | No |
Yes | Yes |
|
| No | |
- Variable: ssl_cipher |
|
| Yes | Global | No |
Yes | Yes |
|
| No | |
- Variable: ssl_crl |
|
| Yes | Global | No |
Yes | Yes |
|
| No | |
- Variable: ssl_crlpath |
|
| Yes | Global | No |
Yes | Yes |
|
| No | |
- Variable: ssl_key |
|
| Yes | Global | No |
|
| Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | No | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Global | Yes | |
Yes | Yes | Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Session | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Session | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: tx_isolation |
|
| Yes | Both | Yes |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes |
|
| Yes | |
- Variable: tx_read_only |
|
| Yes | Both | Yes |
Yes |
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
|
| Yes | Both | Yes | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Global | Yes | |
|
| Yes | Global | Varies | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | Yes | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
|
| Yes | Global | No | |
Yes | Yes | Yes | Both | Yes | |
Yes | Yes | Yes | Both | No | |
Yes | Yes | Yes | Both | Yes | |
|
| Yes | Session | No |
[a] This option is dynamic, but only the server should set this information. You should not set the value of this variable manually.
[b] This option is dynamic, but only the server should set this information. You should not set the value of this variable manually.
Chapter 5 MySQL Server Administration_1
标签:5.7 9.4 sign gen enable this cer bin long
原文地址:http://www.cnblogs.com/djinmusic/p/7469987.html