You can check the default for any variable by running the following command in root SSH:
Code:
mysqladmin var | grep variablename
Replacing
variablename with the name of the variable. For example, if you run this command:
Code:
[email protected] [/]# mysqladmin var | grep max_user
| max_user_connections | 0
0 here means unlimited. Of note, this only works if you have not already set the variable in /etc/my.cnf file. If you have, take out the variable or comment it out in /etc/my.cnf and restart MySQL to see the default for the variable.