web-dev-qa-db-fra.com

Où se trouve le fichier MySQL 5.7 my.cnf?

Dans Ubuntu, j'avais le fichier my.cnf de MySQL 5.6 dans /etc/my.cnf. Mais je ne trouve pas le même fichier de MySQL 5.7. D'où puis-je trouver ça?

J'ai fait une recherche en entier/(root). Mais je ne l'ai trouvé nulle part. Des indices?

J'essaie de définir la valeur max_connections.

13
Bee

mysql --help imprimé ci-dessous.

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

Dans MySQL 5.7, le cnf par défaut est à:

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