web-dev-qa-db-ja.com

MySQL 5.7 my.cnfファイルはどこにありますか?

Ubuntuでは、/etc/my.cnfにMySQL 5.6のmy.cnfファイルがありました。しかし、MySQL 5.7の同じファイルが見つかりません。どこから見つけることができますか?

/(ルート)全体を検索しました。しかし、私はどこにもそれを見つけることができませんでした。手がかりはありますか?

Max_connections値を設定しようとしています。

13
Bee

mysql --helpは以下に出力されます。

Default options are read from the following files in the given order:
/etc/my.cnf /etc/mysql/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,
                        except for login file.
--defaults-file=#       Only read default options from the given file #.
--defaults-extra-file=# Read this file after the global files are read.
--defaults-group-suffix=#
                        Also read groups with concat(group, suffix)
--login-path=#          Read this path from the login file.
9
Bee

MySQL 5.7では、デフォルトのcnfは次の場所にあります。

/etc/mysql/mysql.conf.d/mysqld.cnf
26
neobie