Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a MySQL command to locate the my.cnf configuration file, similar to how PHP's phpinfo() locates its php.ini?

share|improve this question

7 Answers

up vote 26 down vote accepted

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.

  • /etc/my.cnf
  • /etc/mysql/my.cnf
  • $MYSQL_HOME/my.cnf
  • [datadir]/my.cnf
  • ~/.my.cnf

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 --defaults-file parameter can override the whole thing, so... basically, it's a huge pain in the butt.

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: SHOW VARIABLES, but you'll need the permissions to do so.)

share|improve this answer

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:

$ mysqld --help --verbose

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:

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

Or, on Windows:

Default options are read from the following files in the given order:
C:\Windows\my.ini
C:\Windows\my.cnf
C:\my.ini
C:\my.cnf
C:\Program Files\MySQL\MySQL Server 5.5\my.ini
C:\Program Files\MySQL\MySQL Server 5.5\my.cnf

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 /usr/share/mysql/*.cnf files and use whichever is appropriate for you - copy it to /etc/my.cnf and then modify as needed).

Also, note that there is also a command line option --defaults-file which may define custom path to my.cnf or my.ini file. For example, this is the case for MySQL 5.5 on Windows - it points to a my.ini file in the data directory, which is not normally listed with mysqld --help --verbose. On Windows - see service properties to find out if this is the case for you.

Finally, check the http://dev.mysql.com/doc/refman/5.5/en/option-files.html - it is described there in more details.

share|improve this answer
Looked promising but on my distro (opencsw.org), there is not mysqld. It runs mysqld_safe. "mysqld_safe --verbose --help" is not recognized. – lsiden Mar 28 '12 at 14:24
when I ran it, I got this: Default options are read from the following files in the given order: /etc/mysql/my.cnf /etc/my.cnf ~/.my.cnf -- I expected the first 2 files in reverse order. – yitwail Feb 28 at 22:57

You could always run find in a terminal.

find / -name my.cnf
share|improve this answer
it's the hard way :( Is there any mysql command like the phpinfo() to know the config file location ? – robinmag Mar 20 '10 at 18:13
find / -name my.cnf is your best bet, but you could also check your home directory and /etc/mysql/my.conf You can also see if your MYSQL_HOME is set by typing echo $MYSQL_HOME in a terminal – Dyllon Mar 20 '10 at 20:58
3  
Wow, that would take forever on most machines. Most modern linuxes have locate installed and so long as updatedb is run regularly you can do a: locate my.cnf | less – Dark Castle Mar 21 '10 at 2:36
This only shows what files are named my.cnf. It doesn't tell you which on the mysqld process found and opened. – lsiden Mar 28 '12 at 14:21

This might work:

strace mysql ";" 2>&1  | grep cnf

on my machine this outputs:

stat64("/etc/my.cnf", 0xbf9faafc)       = -1 ENOENT (No such file or directory)
stat64("/etc/mysql/my.cnf", {st_mode=S_IFREG|0644, st_size=4271, ...}) = 0
open("/etc/mysql/my.cnf", O_RDONLY|O_LARGEFILE) = 3
read(3, "# /etc/mysql/my.cnf: The global "..., 4096) = 4096
stat64("/home/xxxxx/.my.cnf", 0xbf9faafc) = -1 ENOENT (No such file or directory)

So it looks like /etc/mysql/my.cnf is the one since it stat64() and read() were successful.

share|improve this answer
why does it stat the home one if the etc existed? – Janus Troelsen Apr 30 '12 at 13:58

Another option is to use the whereis command.

E.g. whereis my.cnf

share|improve this answer
You'd probably be better with 'locate' if the system supports it. – drobert Apr 9 at 14:04

You can use :

locate my.cnf
whereis my.cnf
find - -name my.cnf
share|improve this answer
Great mine was at /etc/mysql/my.cnf in Ubuntu 12.0.1 on EC2 – Maziyar May 28 at 2:02

I don't know how you've setup MySQL on your Linux environment but have you checked?

  • /etc/my.cnf
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.