Standardmäßig gibt es keine my.cnf. Daher startet MySQL mit allen Standardeinstellungen. Wenn Sie Ihre eigene my.cnf erstellen möchten, um alle Standardeinstellungen zu überschreiben, platzieren Sie sie unter /etc/my.cnf.
Außerdem können Sie mysql --help
ausführen und suchen Sie dort nach den aufgelisteten conf-Standorten.
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.
Wie Sie sehen können, gibt es auch einige Optionen zum Umgehen der conf-Dateien oder zum Angeben anderer Dateien, die gelesen werden sollen, wenn Sie mysql auf der Befehlszeile aufrufen.