Non c'è my.cnf per impostazione predefinita. In quanto tale, MySQL inizia con tutte le impostazioni predefinite. Se vuoi creare il tuo my.cnf per sovrascrivere eventuali impostazioni predefinite, mettilo in /etc/my.cnf.
Inoltre, puoi eseguire mysql --help
e cerca le posizioni conf elencate.
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.
Come puoi vedere, ci sono anche alcune opzioni per bypassare i file conf o specificare altri file da leggere quando invochi mysql dalla riga di comando.