默认情况下没有my.cnf。因此,MySQL从所有默认设置开始。如果要创建自己的my.cnf来覆盖所有默认值,请将其放在/etc/my.cnf中。
另外,您可以运行
mysql --help并在其中查找列出的conf位置。
Default options are read from the following files in the given order:/etc/my.cnf /etc/mysql/my.cnf /usr/etc/my.cnf ~/.my.cnf The following groups are read: mysql clientThe following options may be given as the first argument:--print-defaults Print the program argument list and exit.--no-defaultsDon't read default options from any option file.--defaults-file=# only read default options from the given file #.--defaults-extra-file=# Read this file after the global files are read.
如您所见,还有一些选项可以绕过conf文件,或者指定在命令行上调用mysql时要读取的其他文件。



