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 中国語 Web サイトの他の関連記事を参照してください。