Google Chrome无法连接到localhost


0

我正在使用OS X Mountain Lion 10.8.4。我尝试了这些步骤 在Mac OS X上安装Apache,PHP和MySQL 设置我的开发环境,但我无法打开我创建的虚拟主机 - 或者 localhost 对于这个问题。

cURL给了我这个错误:

curl:(7)无法连接到主机

对于那些感兴趣的人,这是我的 httpd-vhosts.conf 文件,

<VirtualHost *:80>
    DocumentRoot "/Library/WebServer/Documents"
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot "/Users/AnkurKaushal/Documents/workspace/dev"
    ServerName ankur.local
    ErrorLog "/private/var/log/apache2/ankur.local-error_log"
    CustomLog "/private/var/log/apache2/ankur.local-access_log" common

    <Directory "/Users/AnkurKaushal/Documents/workspace/dev">
        Options Indexes FollowSymLinks
        AllowOverride All
        Order allow, deny
        Allow from all
    </Directory>
</VirtualHost>

和我的 /etc/hosts 文件:

127.0.0.1       localhost
255.255.255.255 broadcasthost
::1             localhost
fe80::1%lo0     localhost
127.0.0.1       ankur.local

我可能会在这里失踪什么?


好吧,我修正了自己的问题,那些有这样问题的人。只需要做sudo apachectl -t,这将帮助您解决Apache配置的任何问题。就我而言,它只是httpd-vhosts.conf文件中的一个简单空间,导致了这个问题。
Ankur

1
干得好,为了帮助我们管理这个地方,请在答案中进行处理,以便将其标记为已完成。
Buscar웃

Answers:


1

做就是了 sudo apachectl -t,这将帮助您解决Apache配置的任何问题。

在那种情况下,它只是一个简单的空间 httpd-vhosts.conf 导致问题的文件。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.