I am new to MySQL DBA, i have a doubt, Is there any command for finding my.cnf configuration file variables and its respective value which is mention in my.cnf file in mysql prompt itself. like we will see the global variable which are there in mysql in below format mysql> show variable like'xxxx';
Similar kind of command is there for seeing all parameter present in my.cnf.
-
Are you using MySQL for Linux or Windows ???RolandoMySQLDBA– RolandoMySQLDBA2013年07月30日 17:43:29 +00:00Commented Jul 30, 2013 at 17:43
2 Answers 2
You could use this reference: MySQL Documentation.
For example:
mysql> SHOW VARIABLES;
+---------------------------------+-------------------------------------+
| Variable_name | Value |
+---------------------------------+-------------------------------------+
| auto_increment_increment | 1 |
| auto_increment_offset | 1 |
| automatic_sp_privileges | ON |
| back_log | 50 |
...
To obtain the row for a specific variable, use a LIKE clause as shown:
SHOW VARIABLES LIKE '%size%';
SHOW GLOBAL VARIABLES LIKE '%size%';
-
Am using Linux OS.By using show command am not getting below parameter vaule through mysql prompt. Replicate_Wild_Do_Tableuser2635016– user26350162013年08月01日 14:49:53 +00:00Commented Aug 1, 2013 at 14:49
By using below command we can read the my.cnf or any file content through prompt.
mysql>/! cat /etc/my.cnf