apache2 在终端中没有响应

apache2 not responding in terminal

我在 Ubuntu 中遇到了 apache2 的一些问题,因此决定卸载并重新安装它。现在的问题是当我尝试

which apache2

甚至

sudo service apache2 start

我完全没有得到任何回应。我尝试检查我的 PHP 脚本之一的元素,并且 Failed to load resource: net::ERR_CONNECTION_REFUSED 出现在日志中。似乎有效的一个命令是

whereis apache2

哪个 returns apache2: /etc/apache2 /usr/share/apache2

有什么办法可以解决这个问题吗?

您确定您尝试了以下操作(也按照以下顺序)吗?

首先卸载 Apache

sudo apt-get --purge remove apache2
sudo apt-get autoremove

然后,正常安装...

sudo apt-get install apache2
sudo /etc/init.d/apache2 restart

然后转到终端并检查(就像我在终端中所做的那样):

andreas@ubuntu:~/Desktop$ ps -ALL |grep apache2
1564  1564 ?        00:00:00 apache2
...

最后从您的浏览器检查:

http://localhost