Is there a MySQL command to locate the my.cnf configuration file, similar to how PHP's phpinfo() locates its php.ini?
|
|
|
There is no internal MySQL command to trace this, it's a little too abstract. The file might be in 5 (or more?) locations, and they would all be valid because they load cascading.
Those are the default locations MySQL looks at. If it finds more than one, it will load each of them & values override each other (in the listed order, I think). Also, the But thanks to it being so confusing, there's a good chance it's just in /etc/my.cnf. (if you just want to see the values: |
|||
|
|
|
You can actually ask MySQL to show you the list of all locations where it searches for my.cnf (or my.ini on Windows). It is not an SQL command though. Rather, execute:
In the very first lines you will find a message with a list of all my.cnf locations it looks for. On my machine it is:
Or, on Windows:
Note however, that it might be that there is no my.cnf file at any of these locations. So, you can create the file on your own - use one of the sample config files provided with MySQL distribution (on Linux - see Also, note that there is also a command line option Finally, check the http://dev.mysql.com/doc/refman/5.5/en/option-files.html - it is described there in more details. |
|||||
|
|
You could always run find in a terminal.
|
|||||||||||
|
|
This might work:
on my machine this outputs:
So it looks like /etc/mysql/my.cnf is the one since it stat64() and read() were successful. |
|||
|
|
|
Another option is to use the whereis command. E.g. whereis my.cnf |
|||
|
|
|
You can use :
|
|||
|
|
|
I don't know how you've setup MySQL on your Linux environment but have you checked?
|
|||
|
|