MySQL Forums
Forum List  »  Newbie

Re: MySQL Socket Error
Posted by: Rick James
Date: October 12, 2010 08:09AM

Try not to stop mysqld abruptly. It will leave behind the 'sock' file. This confuses the next attempt to run mysqld into thinking that mysqld is still running.

Normally (on *nix), /tmp/ is cleared out on reboot. Take advantage of that by putting the sock file in /tmp/. Then, if you do have an unexpected reboot, the sock file will be removed and mysqld can start.

Disk full is unlikely to cause "too many connections". The usual cause for this is your application failing to disconnect.

SHOW VARIABLES LIKE 'max_connections';
SHOW GLOBAL VARIABLES LIKE 'wait_timeout';

Options: ReplyQuote


Subject
Written By
Posted
October 10, 2010 11:27PM
Re: MySQL Socket Error
October 12, 2010 08:09AM
October 12, 2010 08:13AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.