1. ホーム
  2. マイスル

[解決済み】自作のmysqlをインストールする場合、my.cnfはどこにあるのでしょうか?

2022-03-28 06:02:41

質問

自作のmysqlをインストールする場合、my.cnfはどこにあるのでしょうか?インストールされるのでしょうか?

解決方法は?

デフォルトでは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 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を起動する際に読み込む他のファイルを指定するオプションも用意されています。