How to disable webmin start on boot on Ubuntu?

9,546

Solution 1

You can disable Webmin starting at boot from the Webmin interface, in the Webmin Configuration module. At the bottom of the module window is the option to set when Webmin starts. You can invoke Webmin to start via command-line sudo service webmin start when configured not to start at boot.

Solution 2

You can either manually edit the scripts but the best way is to run

sudo update-rc.d webmin enable

and all the required entries will be made cleanly - less risk of breakage of essential startup scripts.

and the reverse to disable

sudo update-rc.d webmin disable
Share:
9,546

Related videos on Youtube

vinsa
Author by

vinsa

Updated on September 18, 2022

Comments

  • vinsa
    vinsa almost 2 years

    How to disable Webmin starts on boot on Ubuntu 14? Due security reasons, I want to run it manualy when I really will use it.

    • heemayl
      heemayl over 9 years
      Possible duplicate of How to enable or disable services?. Also please mention the correct release of Ubuntu.
    • vinsa
      vinsa over 9 years
      I dont see the answere there.I tried with /etc/rc.local to add service webmin stop but it didn't work.