Home >Database >Mysql Tutorial >How Can I Identify the MySQL Configuration File in Use?
Identifying the MySQL Configuration File in Use
For MySQL 5.0, a simple command can identify the configuration file that the server is currently using.
Command:
/usr/sbin/mysqld --verbose --help | grep -A 1 "Default options"
Example Output:
Default options are read from the following files in the given order: /etc/mysql/my.cnf ~/.my.cnf /usr/etc/my.cnf
Explanation:
The output shows the configuration files in the order in which they are read:
The above is the detailed content of How Can I Identify the MySQL Configuration File in Use?. For more information, please follow other related articles on the PHP Chinese website!