1

Where can I set services apache2 and mysql to do not start automatically? Or start when asked for it instead?

EDIT

BootUp-Manager worked for me very well disabling autostart of both services.

Esamo
  • 1,542

1 Answers1

1

Ubuntu uses both sysvinit as well as upstart for runlevel.

What you can do for apache2 as I think apache2 doesnot have upstart configuration is:

update-rc.d -f apache2 remove

and for mysql. You need to edit /etc/init/mysql.conf

Search for line start on and comment it with #

#start on runlevel [2345]

Basically scripts and configuration which are started are located on

/etc/init.d/

/etc/init/

/etc/init/ is for upstart configuration

Also you can use BootUp-Manager [Graphical Application] to disable services of /etc/init.d/ but I donot think it works for /etc/init/

Just do:

sudo apt-get install bum

sagarchalise
  • 24,306