I’ve recently installed lighttpd but I can’t run it because there’s a daemon that starts an Apache2 server. I removed Apache 2 from the system but there’s still a server running. How do I stop this so I can start lighttpd?
I’ve recently installed lighttpd but I can’t run it because there’s a daemon that
Share
/etc/init.d/apache2 stopwill work in most cases on linux operating systems.also using
ps aux, finding the process ID and usingkill -9 id(not 100% of what signal to send for a graceful termination)