6

我的应用程序在我的 Mac 上通过 nginx 在 localhost 端口 80 上运行了很长一段时间。最近我做了一些软件更新,并试图在不同的端口上运行其他应用程序,现在我无法在 localhost:80 上运行我的第一个应用程序。

我对从哪里开始感到非常困惑,但认为这是基于以下内容的防火墙问题:

Tims-MacBook-Pro-2:html TimPeterson$ telnet localhost 80
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying fe80::1...
telnet: connect to address fe80::1: Connection refused
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
telnet: Unable to connect to remote host 

指向浏览器http://localhost给出这个Oops! Google Chrome could not connect to localhost

想法?

4

2 回答 2

4

你可能想跑

apachectl configtest

第一的。

于 2016-03-27T03:58:55.170 回答
-1

对我有用的是在我的 /etc/hosts 文件中取消注释以下行:

::1    localhost
于 2016-08-27T22:26:52.147 回答