QuestionQ219

Installation and Configuration

MySQL programs search for option files in standard locations.

Which method displays the option files and the sequence in which they are read?

  • A shell> mysqladmin --debug
  • B shell> mysql --print-defaults
  • C shell> mysqld --help --verbose
  • D mysql> SHOW GLOBAL VARIABLES;
Explanation

mysqld --help --verbose displays the server help information, including the option files it searches and the order in which they are processed. MySQL specifies that mysqld requires both --verbose and --help for this information.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!