vote up 0 vote down star

Can not find a command that displays the current configuration of mysql from within the database.

I know I could look at /etc/mysql/my.cnf but that is not what I need.

flag

54% accept rate

2 Answers

vote up 1 vote down

What you are looking for is:

SHOW VARIABLES

You can modify it further like any query:

SHOW VARIABLES LIKE '%max%'
link|flag
vote up 0 vote down

Use SHOW VARIABLES:

show variables like 'version';

link|flag

Your Answer

Get an OpenID
or

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