my_print_defaults显示存在于选项文件的选项组中的选项。输出指示读取指定选项组的程序使用了哪些选项。例如,
mysqlcheck程序读取
[mysqlcheck]
和[client]
选项组。要查看标准选项文件中这些组中存在哪些选项,请像这样调用
my_print_defaults:
$> my_print_defaults mysqlcheck client
--user=myusername
--password=password
--host=localhost
输出由选项组成,每行一个,以它们将在命令行上指定的形式出现。
my_print_defaults支持以下选项。
--help
,-?
显示帮助信息并退出。
--config-file=
, ,file_name
--defaults-file=
file_name
-c
file_name
只读给定的选项文件。
--debug=
,debug_options
-#
debug_options
写调试日志。典型的
debug_options
字符串是 . 默认值为 。d:t:o,
file_name
d:t:o,/tmp/my_print_defaults.trace
--defaults-extra-file=
, ,file_name
--extra-file=
file_name
-e
file_name
在全局选项文件之后但(在 Unix 上)在用户选项文件之前读取此选项文件。
有关此选项和其他选项文件选项的其他信息,请参阅第 4.2.2.3 节,“影响选项文件处理的命令行选项”。
--defaults-group-suffix=
,suffix
-g
suffix
除了在命令行上命名的组之外,读取具有给定后缀的组。
有关此选项和其他选项文件选项的其他信息,请参阅第 4.2.2.3 节,“影响选项文件处理的命令行选项”。
--login-path=
,name
-l
name
Read options from the named login path in the
.mylogin.cnf
login path file. A “login path” is an option group containing options that specify which MySQL server to connect to and which account to authenticate as. To create or modify a login path file, use the mysql_config_editor utility. See Section 4.6.6, “mysql_config_editor — MySQL Configuration Utility”. This option was added in MySQL 5.6.6.For additional information about this and other option-file options, see Section 4.2.2.3, “Command-Line Options that Affect Option-File Handling”.
--no-defaults
,-n
返回一个空字符串。
有关此选项和其他选项文件选项的其他信息,请参阅第 4.2.2.3 节,“影响选项文件处理的命令行选项”。
--show
,-s
从 MySQL 5.6.25 开始,my_print_defaults 默认屏蔽密码。使用此选项以明文形式显示密码。
--verbose
,-v
详细模式。打印有关程序功能的更多信息。
--version
,-V
显示版本信息并退出。