Hello! While running a PHP script I’ve encountered an error that says the MySQL server has gone away and it’s really getting annoying.
I’ve tried the following things with no success. Add these to /etc/mysql/my.cnf
wait_timeout = 28800
interactive_timeout = 28800
max_allowed_packet = 256M
I’ve tried adding this to php.ini as well.
mysql.connect_timeout = 240
Nothing seems to work.
Thank you!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
where put this mysql.connect_timeout = 300 default_socket_timeout = 300 lines ?
Hi, what about if the error is in this line?
$link->ssl_set(‘client-key.pem’, ‘client-cert.pem’, ‘ca.pem’, NULL, NULL);
Hi @matthew6d
You shouldn’t need to change anything in MySQL - it’s by default set to some ridiculous high timeout. But PHP has normally a timeout on 30 or 60 seconds for most things. Can you set the following two PHP configurations (300 seconds = 5 minutes):
mysql.connect_timeout = 300
default_socket_timeout = 300
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.