apachectl无法访问!请各位大是指教!

apachectl无法访问!请各位大是指教!

各位大虾:
    昨天,我在网上下了一个apachectl2.2.4版的服务端。根据INSTALL文件的要求安装成功,但是在httpd.conf设置后,本机可以访问网页,但是在同一局域网内的计算机却无法访问。我的httpd.conf设置如下:



ServerRoot "/usr/httpd"
Listen 80
#Listen 192.168.1.201:80
#Listen 80
timeout 60
keepalive on
maxkeepaliverequests 100
MinSpareServer 5
MaxSpareServers 50
MaxClients 4000
MaxRequestPerChild 0
BindAddress *
port 80
User root
Group root
ServerAdmin 54934162@sina.com
ServerName 192.168.1.201:80
DocumentRoot "/usr/httpd/htdocs"
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>
<Directory "/usr/httpd/htdocs">
    Allow from all
   Order allow,deny
   

</Directory>
<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>
ErrorLog logs/error_log
<IfModule alias_module>
   
    ScriptAlias /cgi-bin/ "/usr/httpd/cgi-bin/"

</IfModule>

<IfModule cgid_module>
    #
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #
    #Scriptsock logs/cgisock
</IfModule>

<Directory "/usr/httpd/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>

DefaultType text/plain

<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>


请各位大虾指教,我安装好后只改了httpd.config的设置,其余的什么也没有动!
      
DocumentRoot "/usr/httpd/htdocs"
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow(把allow和deny换一下)//指定先执行allow(允许)访问规则,在执行(deny) 拒绝访问规则这主要是访问权限的设置问题.如改好之后就apachectl configtest检查语法是否正确.它会提示你是否正确还会提示哪行出错自己找到改回来就行.
    Deny from all      
User root
Group root


大哥看看你的用户和权限。都是root其他的用户怎么能访问呢。      
service iptables stop      
引用:
原帖由 Roc.Ken 于 2007-9-11 13:37 发表
service iptables stop
别stop啊,开放一下80就行了.