MySQL/Percona: Show the order of configuration files
Show which files the database server uses and the order they are read.
- Get the server binary location
- # which mysqld
/usr/sbin/mysqld - Get the configuration file locations and order
- # /usr/sbin/mysqld --verbose --help | grep -A 1 "Default options"
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
Comments