vote up 1 vote down star

Under high traffic my mysql 5.0.45 server /Apache2/ CentOS 5 is getting "Error establishing mySQL database connection". I need to find the root cause.

I would very much appreciate any pointer to information about the procedure I should take to find the cause (memory limit, thread limits, CPU load, slow queries etc, large dataset, wrong keys ...) I would assume it involves looking at relevant log files etc....

Thank you.

flag

50% accept rate

2 Answers

vote up 2 vote down

That particular error message sounds like it's being generated by your application, and not by a system library. MySQL has functionality to report the specific errors that are occurring, so your best bet would be to utilize that in some way.

For instance, if you were using PHP, there is a function called mysql_error() that returns specifics about the last error encountered (too many connections, etc). You would put in some error handling near your connection call, and log the mysql_error() results if it failed.

You didn't mention what language you were using, but the MySQL libraries would provide the same functionality to whichever you are using. I'd suggest modifying your application code to take advantage of it.

link|flag
Thanks ! I'm using PHP5 and a library called ezsql woyano.com/jv/ezsql I'll try to output the mysql errors per your advice (the error happens occasionally). Isn't there a log that mysql keeps of such errors? – Nir Jun 18 at 17:08
I get "Can't create a new thread (errno 12); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug" about 70% of the errors and "Can't create UNIX socket (12)" about 25%, and occasional "Lost connection to MySQL server at 'reading initial communication packet'". It does not seem to be a memory problem since the 'Top' command shows 600M Free (which is similar to low traffic situations) – Nir Jun 18 at 17:57
1  
Hmm, interesting. You'll probably have to do some googling to get some help with those specific errors. MySQL has a page on tuning server parameters as well, at dev.mysql.com/doc/refman/…, it might be worth a look. – zombat Jun 18 at 18:05
vote up 1 vote down

I'm willing to bet this is because you're hitting the max user limit allowed by the mysql server but in general, do print the mysql errors, if not to the screen but at least to the log, or email.

link|flag
I get "Can't create a new thread (errno 12); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug" about 70% of the errors and "Can't create UNIX socket (12)" about 25%, and occasional "Lost connection to MySQL server at 'reading initial communication packet'". It does not seem to be a memory problem since the 'Top' command shows 600M Free (which is similar to low traffic situations) – Nir Jun 19 at 20:05
Nir, the first error seems more common while the latter is almost impossible to find any info on. I would recommend adjusting some settings, for ex mentioned at bugs.mysql.com/bug.php?id=5656. It is most likely related to OS running out of resources - perhaps your ulimit is set too low for something. Run ulimit -a. Also try vmstat -a 1 and see what your RAM and swap are doing. Do you have free swap? – Artem Russakovskii Jun 20 at 0:48

Your Answer

Get an OpenID
or

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