Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近安装了 lighttpd 但我无法运行它,因为有一个启动 Apache2 服务器的守护进程。我从系统中删除了 Apache 2,但仍有一个服务器在运行。我该如何停止这个,以便我可以启动 lighttpd?
/etc/init.d/apache2 stop大多数情况下都可以在 linux 操作系统上运行。
/etc/init.d/apache2 stop
还 using ps aux,查找进程 ID 并使用kill -9 id(不是 100% 发送的优雅终止信号)
ps aux
kill -9 id
/etc/init.d/httpd stop如果上面的评论不起作用,请尝试。当然,这取决于发行版。
/etc/init.d/httpd stop
还要在重新启动后停止 apache 重新启动,您需要运行:
update-rc.d -f apache2 remove