WAMP错误:找不到主机。虚拟机设置

时间:2015-10-23 20:42:53

标签: php mysql apache wamp vhosts

我已在本地运行WAMP大约一年了,似乎无缘无故,我正试图进入我的项目主页(使用我的vhost“cevans.local”,引用此文件夹C:/ wamp / www / healthsnap /)并收到此错误:

  

拨tcp:lookup cevans.local:没有这样的主机

我今天在网上搜索了几个小时试图解决这个问题。我没有触及与我的vhosts设置相关的任何内容:

主机

127.0.0.1       localhost 
127.0.0.1       cevans.local

的httpd.conf

Listen 0.0.0.0:80

..............

# Virtual hosts
Include conf/extra/httpd-vhosts.conf

httpd-vhosts.conf

<VirtualHost *:80> 
    DocumentRoot "C:/wamp/www/healthsnap/" 
    ServerName cevans.local 
    ServerAlias cevans.local 
    <Directory "C:/wamp/www/healthsnap/"> 
        Order Deny,Allow
        Deny from all
        Allow from 127.0.0.1
    </Directory>
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot "C:/wamp/www"
    ServerName localhost
    ServerAlias localhost
    <Directory  "C:/wamp/www">
        Order Deny,Allow
        Deny from all
        Allow from 127.0.0.1
    </Directory>
</VirtualHost>

我相信发生的事情是我的vhosts设置有问题,而vhost用于我项目的配置文件以引用数据库凭据。这些相同的凭据在phpMyAdmin和另一个MySQL客户端上运行良好。

另外,我不是网络开发人员。

1 个答案:

答案 0 :(得分:0)

我有一个活动的VPN连接导致了这个问题。当我关闭VPN连接时,它开始工作。