安装Apache:
IE默认时80端口,Apache也是80端口
1.把HTML网页源文件放到D:\apache\htdocs目录下
2.http://IP地址:端口号(默认80)//index.html
启动Apache Start时出现异常:
[color=red]Syntax error on line 198 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
ServerAdmin takes one argument, The email address of the server administrator[/color]
解决方法:
将
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. admin@your-domain.com
#
ServerAdmin
改为:
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g.
=================================================================================
还有一种常见的问题!
apache启动报错:[color=red]the requested operation has failed[/color]解决办法
原因一:80端口占用
例如IIS,另外就是迅雷。我的apache服务器就是被迅雷害得无法启用!
注:进入cmd -> 输入netstat -ano命令 查找占用端口的PID号码 去任务管理器中查找该PID所在的进程(查看选项卡选择列PID) 杀掉!!
原因二:软件冲突
装了某些软件会使apache无法启动如Dr.com 你打开网络连接->TcpIp属性->高级->WINS标签 把netbios的lmhosts对勾去掉,禁用tcp/ip的netbios. 然后再启动应该就可以了。
原因三:httpd.conf配置错误
如果apache的配置文件httpd.conf搞错了,在windows里启动它,会提示the requested operation has failed ,这是比较郁闷的事,因为查错要看个半天。
其实可以用命令行模式启动apache,并带上参数,apache会提示你哪句有误,然后就可以针对性的解决,命令如下: httpd.exe -w -n "Apache2" -k start
详细操作:
1.运行-> cmd 进入到apache的bin目录
2.输入httpd.exe -w -n "Apache" -k start会提示配置文件的具体那行出错。找起来就方便多了
注:命令里的"Apache"是系统服务里apache服务的名称。及时换成你的。
还有一种情况:
即使你这次启动了,下次你都有可能启动失败
在运行里输入:netsh winsock reset
一会儿cmd会提示你重启,不用理会,现在APACHE已经可以启动了。
其实就是一个winsock的修复
IE默认时80端口,Apache也是80端口
1.把HTML网页源文件放到D:\apache\htdocs目录下
2.http://IP地址:端口号(默认80)//index.html
启动Apache Start时出现异常:
[color=red]Syntax error on line 198 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
ServerAdmin takes one argument, The email address of the server administrator[/color]
解决方法:
将
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. admin@your-domain.com
#
ServerAdmin
改为:
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g.
=================================================================================
还有一种常见的问题!
apache启动报错:[color=red]the requested operation has failed[/color]解决办法
原因一:80端口占用
例如IIS,另外就是迅雷。我的apache服务器就是被迅雷害得无法启用!
注:进入cmd -> 输入netstat -ano命令 查找占用端口的PID号码 去任务管理器中查找该PID所在的进程(查看选项卡选择列PID) 杀掉!!
原因二:软件冲突
装了某些软件会使apache无法启动如Dr.com 你打开网络连接->TcpIp属性->高级->WINS标签 把netbios的lmhosts对勾去掉,禁用tcp/ip的netbios. 然后再启动应该就可以了。
原因三:httpd.conf配置错误
如果apache的配置文件httpd.conf搞错了,在windows里启动它,会提示the requested operation has failed ,这是比较郁闷的事,因为查错要看个半天。
其实可以用命令行模式启动apache,并带上参数,apache会提示你哪句有误,然后就可以针对性的解决,命令如下: httpd.exe -w -n "Apache2" -k start
详细操作:
1.运行-> cmd 进入到apache的bin目录
2.输入httpd.exe -w -n "Apache" -k start会提示配置文件的具体那行出错。找起来就方便多了
注:命令里的"Apache"是系统服务里apache服务的名称。及时换成你的。
还有一种情况:
即使你这次启动了,下次你都有可能启动失败
在运行里输入:netsh winsock reset
一会儿cmd会提示你重启,不用理会,现在APACHE已经可以启动了。
其实就是一个winsock的修复