So I have followed the tutorial to Install Wordpress, Nginx, PHP, and Varnish on Ubuntu 12.04. The process was smooth and easily installed, so no problems there.
The issue is every few days the MySQL connect drops out and when I run the command: $ sudo service mysql start
I get a the following message: $ start: Job failed to start
The other issues is when it first happened, I looked into setting up a script to run in cron every 5 minutes.
# CHECK DATABASE STATUS
# launch-mysql.sh
ps auxw | grep mysql | grep -v grep > /dev/null
if [ $? != 0 ]
then
sudo service mysql start > /dev/null
fi
Then added this to $ cron -e
*/5 * * * * ~/launch-mysql.sh
But that is not working either, any thoughts or help would be greatly appreciated.
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!
Hello all,
When facing with an MySQL issue on your Droplet. Here’s a quick guide to help you troubleshoot the problem:
Check MySQL logs for errors:
Inspect the MySQL error logs for any issues or failures that may have occurred. Usually you can find the log at /var/log/mysql/error.log
. If there are any specific error messages, you can further act upon them
Check system logs for process termination:
Sometimes, the MySQL process may be killed by the system due to resource constraints. To check if this happened, inspect the system logs:
- grep -E 'oom|kill' /var/log/syslog
- grep -E 'oom|kill' /var/log/kern.log
If you find such messages, it’s an indication that your Droplet is running out of resources, and you may need to upgrade your Droplet or optimize your MySQL configuration.
Configure swap space:
If your Droplet is running out of memory, configuring swap space can help alleviate the issue. Swap space acts as a temporary storage location for data when your system runs out of RAM.
You can find more about how to add SWAP to your Droplet here:
https://www.digitalocean.com/community/tutorial_collections/how-to-add-swap-space
Hope that helps!
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.