查找用于 Homebrew MySQL 安装的 my.cnf
对于使用 Homebrew 安装 MySQL,默认配置文件 my.cnf 可能不存在。这是因为 Homebrew 没有安装默认的 my.cnf。因此,MySQL 将以默认设置启动。
如果您希望创建自定义 my.cnf 来覆盖默认设置,则应将其放置在 /etc/my.cnf 目录中。或者,您可以访问 MySQL 的帮助页面来查看可能的配置位置列表。
以下命令将输出配置文件位置:
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. As you can see, there are also various options to bypass the configuration files or specify additional files to be read when invoking MySQL from the command line.
以上是Homebrew MySQL 安装的 my.cnf 位于哪里?的详细内容。更多信息请关注PHP中文网其他相关文章!