0

The specific programs that I needed to disable were nginx and postgresql.

I have tried the flagship post for this question, which suggests I create a manual override file for upstart, and it does not work for me. Why?

However, the approach described here, using update-rc.d, does work for me.

I read that systemctl is the suggested approach going forward, but that tool does not exist on my version.

  • systemd for systemctl was introduced in ubuntu 15.04. 14.04 didn't have it yet and used initctl or service. – Ziazis Jun 27 '16 at 08:39

1 Answers1

1

Typically those services are started in any of these folders : /etc/init , /etc/init.d , or /etc/rc.2.d , or /etc/rcS .

Find the file corresponding to the service, and rename it or move to another directory where it won't run.

Sergiy Kolodyazhnyy
  • 105,154
  • 20
  • 279
  • 497