我尝试通过以下方式删除 Apache2:
sudo apt-get remove apache2
下一个 :
sudo apt-get autoremove
此后,http://localhost
仍然出现以下文字:
It works!
This is the default web page for this server.
The web server software is running but no content has been added, yet.
为什么删除 Apache2 后仍然出现上述文本?
答案1
它可能仍在运行;尝试ps aux | grep -E 'httpd|apache'
;如果有一个进程,那么是因为你没有停止它。
如果它没有运行,请通过执行以下操作查看绑定到该端口的内容lsof -Pni :80
。