Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to programmatically (via. the SQL interface, a CLI tool, etc) check the values of options that are normally set in a MySQL server's my.cnf file?

I have a suspicion that the server I'm using is reading the incorrect configuration file, and I'd like to be able to check what the values are actually set to.

share|improve this question

1 Answer

up vote 4 down vote accepted

You can access them via SELECT statements since they are exposed as global system variables.

SELECT @@key_buffer_size;
SELECT @@innodb_buffer_pool_size;

-- With a column alias you can use when fetching an associative array in PHP
mysql> SELECT @@key_buffer_size as keybufsize;
+------------+
| keybufsize |
+------------+
|    8388608 |
+------------+

You can, obviously, do this via PHP or the CLI, or whatever.

share|improve this answer
Just what I couldn't find, thanks! (also, "show global variables;" is useful) – Alan Storm Nov 1 '11 at 23:45
2  
Or show variables like '%key_buffer_size%'; – sonassi Mar 13 '12 at 23:47

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.