对于自制mysql安装,my.cnf在哪里?是否安装一个?
默认情况下没有my.cnf。因此,MySQL从所有默认设置开始。如果要创建自己的my.cnf来覆盖所有默认值,请将其放在/etc/my.cnf中。
另外,您可以运行mysql --help并在其中查找列出的conf位置。
mysql --help
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 client The following options may be given as the first argument: --print-defaults Print the program argument list and exit. --no-defaults Don'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时要读取的其他文件。