I want to prevent MySQL from starting in Ubuntu 10.04

I have used

update-rc.d -f mysql remove

and confirmed that there is no link to the /etc/inid.d/mysql script from any of the rc?.d directories.

I also ran sysv-rc-conf and it shows me that MySQL is NOT being called as part of the rc.d scripts.

It is still starting on boot. How do I disable it?

link|improve this question

mysqld is running under the mysql user account – bryan May 7 '10 at 4:33
feedback

2 Answers

up vote 16 down vote accepted

Ubuntu 10.04 has abandoned SysV init script approach to booting the system.

This link explains - http://www.linuxplanet.com/linuxplanet/tutorials/7033/1/

To prevent mysql from starting on boot

  • 1 go to the /etc/init directory
  • 2. open the mysql.conf file
  • 3. comment out the "start on" line near the top of the file, the "start on" might be spread across two lines, so comment out both

If you want to manually start mysql, use the following command -

  service mysql start
link|improve this answer
Link is 404. Use linuxplanet.com/linuxplanet/tutorials/7033/1 – Kevin M May 8 '10 at 15:46
The link is fixed, and the answer is correct. – bryan May 8 '10 at 18:17
feedback

run the command as follows:

root@user:~# gedit /etc/init/mysql.conf 

then comment out the starting lines, I think there should be two, and you are all set!

Happy Linuxing to All!

link|improve this answer
1  
/etc/init/ and /etc/init.d/ are NOT the same! I can't downvote this because I don't have the reputation, and I can't edit it because it's only a two-character change. – alberge Mar 16 at 0:38
@alberge - I made the edit. Waiting on peer review. – dave Mar 23 at 21:09
feedback

Your Answer

 
or
required, but never shown

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