The /myfolder/my.cnf file has option set:
[mysqld]
skip-log-bin
/myfolder2/my.cnf has this option set:
[mysqld]
log-bin = /valid/path/to/mysqlbinlog
All mentioned paths are accessible to the account that you are currently using. Assume that any other options mentioned in either file are valid and legal option definitions.
You start an instance by using this command line:
mysqld —defaults-file=/myfolder/my.cnf —defaults-extra-file=/ myfolder2/my.cnf
What is the outcome?
A. MySQL starts and Binary Logging is enabled.
B. MySQL fails to start due to the conflicting options in the configuration files.
C. MySQL fails to start due to conflicting options on the command line.
D. MySQL starts but Binary Logging is disabled.
Answer: D
版权声明:本文为博主原创文章,未经博主允许不得转载。
MYSQL
- 上一篇:Mysql OCP 71题
- 下一篇:Mysql OCP 73题