I have installed the YaCy P2P search engine following these instructions (adding the YaCy repo to my sources and installing from there): http://www.yacy-websuche.de/wiki/index.php/En:DebianInstall
That page includes instructions on starting/stopping the YaCy daemon:
sudo /etc/init.d/yacy stop
sudo /etc/init.d/yacy start
sudo /etc/init.d/yacy restart
I can stop YaCy right now, but it starts again the next time I boot up. How can I stop it doing that, and only start when I tell it to (with sudo /etc/init.d/yacy start
)?
This Upstart technique to permanently disable a service (accepted answer at How to enable or disable services?) does not work (YaCy still starts next time I boot):
sudo sh -c "echo 'manual' > /etc/init/yacy.override"
#doesn't work