为了账号安全,请及时绑定邮箱和手机立即绑定

Windows平台下载、安装、配置Apache全攻略

标签:
深度学习

本文介绍了如何在windows平台进行apache服务器的下载、安装和配置过程。

1.下载

首先进入apache for windows的官方下载地址[猛戳这里],依次在下列页面进行下载操作:

https://img1.sycdn.imooc.com//5be597ca0001c26906360330.jpg

https://img1.sycdn.imooc.com//5be597d90001fc7005720253.jpg

https://img1.sycdn.imooc.com//5be597e10001846607890240.jpg

我这里下载的安装包名称为:httpd-2.4.18-x64-vc11-r2.zip。

2.安装

将下载好的文件解压到磁盘目录下,比如:D:\Programs\Apache24,然后接下来进行配置工作。

3.配置

进入D:\Programs\Apache24\conf目录,找到httpd.conf文件,进行如下配置工作:

1)修改Apache程序的位置

将SRVROOT修改为你具体放置的位置,具体如下:

## ServerRoot: The top of the directory tree under which the server's# configuration, error, and log files are kept.## Do not add a slash at the end of the directory path.  If you point# ServerRoot at a non-local disk, be sure to specify a local disk on the# Mutex directive, if file-based mutexes are used.  If you wish to share the# same ServerRoot for multiple httpd daemons, you will need to change at# least PidFile.#Define SRVROOT "D:/Programs/Apache24"ServerRoot "${SRVROOT}"

2)修改email地址

ServerAdmin的email修改为你的邮件地址

ServerAdmin admin@iwwenbo.com

3)修改域名

将ServerName修改为你自己的域名

ServerName www.iwwenbo.com:80

4)修改网站根目录

将DocumentRoot修改为你自己的目录位置

DocumentRoot "${SRVROOT}/htdocs"

4.启动

打开cmd窗口,进入apache的bin目录,执行如下图所示命令,进行服务安装:

https://img1.sycdn.imooc.com//5be597eb000172f306050110.jpg

其中,Errors reported here must be corrected before the service can be started.意思是,若该句话后面有错误信息,则表示服务安装失败,需要先改正错误。若没有,则成功。

然后,执行下图所示命令httpd -k start ,或者直接运行bin目录下的ApacheMonitor.exe,然后点击start按钮进行启动:

https://img1.sycdn.imooc.com//5be597f30001ca7804120067.jpg

5.测试

打开浏览器,输入http://localhost,如果出现如下页面说明安装成功。

https://img1.sycdn.imooc.com//5be597fb0001e17113400700.jpg

6.失败原因分析

1)运行apache服务失败,提示443端口被占用

此种情况的解决方法是,搜索conf/httpd.conf文件中的一下内容:

<IfModule ssl_module>#Include conf/extra/httpd-ssl.conf
Include conf/extra/httpd-ahssl.conf
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin</IfModule><IfModule http2_module>
    ProtocolsHonorOrder On
    Protocols h2 h2c http/1.1</IfModule>

从上面的文件中可以看到,ssl启动的是httpd-ahssl.conf文件的配置,则到该文件中对端口进行修改,比如改为446

Listen 446 https

2)运行apache服务失败,提示80端口被占用

对httpd.conf文件中的80端口进行修改。

3)运行apache服务,提示计算机中丢失 MSVCR110.dll

此种情形的解决方法是到微软官方下载对vc进行支持的程序,具体地址点击[这里],下载针对你自己平台的程序进行安装即可。

原文出处:https://www.itfeichai.com/windows-apache-install-config/  

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消