By agushalim
Hi my droplet just restarted by DO support with suddenly and i receive message that the mysqld not able to run with this error message “Another MySQL daemon already running with the same unix socket.” in this situation i need to login to my server and run for this command
mv /var/lib/mysql/mysql.sock /var/lib/mysql/mysql.sock.bak
service mysqld start
how to put this code auto run when the server is starting? i’m using centos 6 thanks
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!
If you like to run those commands on reboot/boot you can create a script and let Sys-V run it. To do so, create a script in /etc/init.d and call it anything you like. For example I’ll use runmysql.sh
In that script paste your lines and then save it. Then run the following command to get it running on boot:
update-rc.d <scriptname> defaults
So here it would be update-rc.d runmysql.sh defaults
But I suggest rather than trying to bypass the error with a script, to fix the error. You can use this script fix ofcourse temp. , but its better to try to find out why it doesn’t run at boot and fix this. Hope this will help you
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.