欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Windows Apache2.4 VC9(ApacheHaus)詳細安裝配置教程

 更新時間:2017年09月03日 18:17:16   投稿:mdxy-dxy  
這篇文章主要介紹了Windows Apache2.4 VC9(ApacheHaus)詳細安裝配置教程,需要的朋友可以參考下

1,Apache下載

選擇一個版本,點擊Download

點擊File For Microsoft Windows

由于Apache HTTP Server官方不提供二進制(可執(zhí)行)的發(fā)行版,所以我們選擇一些貢獻者編譯完成的版本,我們選擇第一個ApacheHaus

點擊ApacheHaus,進入下載頁

選擇其中一個版本,如果你的Windows還沒安裝對應(yīng)的VC環(huán)境的話,選擇對應(yīng)的VCRedistribute版本下載安裝。我選擇Apache 2.4VC9版,因為我的電腦中已經(jīng)安裝了VC9的環(huán)境。

點擊JumpLinks下第一行的某一個版本,下載對應(yīng)壓縮包。

2,配置Apache之一--httpd.conf

解壓后進入里面Apache22(最后兩位數(shù)字可能不同)文件夾,使用文本編輯器(推薦ultraedit)打開conf文件夾中的httpd.conf配置文件

找到ServerRoot選項,設(shè)置Apache目錄,大約在35行左右,將其改成你的Apache程序的文件夾,例:

ServerRoot "C:/Users/myPC/Downloads/httpd-2.2.31-x86-r3/Apache22"

找到Listen選項,設(shè)置端口,大約46行,一般不修改,使用默認80,在開啟服務(wù)器前請保證80端口未被占用

找到DocumentRoot選項,修改服務(wù)器根目錄,例:

DocumentRoot "F:/"

請保證此目錄存在,否則服務(wù)器無法正常啟動

修改Directory,保證其與服務(wù)器根目錄相同,只修改下面的第一行中引號部分

<Directory "F:/">
  #
  # Possible values for the Options directive are "None", "All",
  # or any combination of:
  #  Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
  #
  # Note that "MultiViews" must be named *explicitly* --- "Options All"
  # doesn't give it to you.
  #
  # The Options directive is both complicated and important. Please see
  # http://httpd.apache.org/docs/2.2/mod/core.html#options
  # for more information.
  #
  Options Indexes FollowSymLinks

  #
  # AllowOverride controls what directives may be placed in .htaccess files.
  # It can be "All", "None", or any combination of the keywords:
  #  Options FileInfo AuthConfig Limit
  #
  AllowOverride None

  #
  # Controls who can get stuff from this server.
  #
  Order allow,deny
  Allow from all

</Directory>

找到ScriptAlias選項,設(shè)置服務(wù)器腳本目錄,大約326行,一般將其設(shè)置為Apache目錄下的cgi-bin文件夾

ScriptAlias /cgi-bin/ "C:/Users/myPC/Downloads/httpd-2.2.31-x86-r3/Apache22/cgi-bin"

找到隨后的Directory選項,設(shè)置腳本目錄,大約342行,需要將其設(shè)置為和前面的ScriptAlias目錄相同

<Directory "C:/Users/myPC/Downloads/httpd-2.2.31-x86-r3/Apache22/cgi-bin">
  AllowOverride None
  Options None
  Order allow,deny
  Allow from all
</Directory>

3,配置Apache之二--ssl配置

如果你這使啟動服務(wù),一般會出現(xiàn)下面的消息對話框:

提示

Windows不能在本地計算機啟動Apache2.2。有關(guān)更多信息,查閱系統(tǒng)日志文件。如果這是非Microsoft服務(wù),請與廠商聯(lián)系,并參考特定服務(wù)器錯誤代碼1。

確定此問題的原因:

右鍵 計算機,點擊管理->Windows日志->應(yīng)用程序,顯示如下

這是由于SSL配置不正確所產(chǎn)生的,下面說一下解決辦法。

打開Apache程序目錄下的conf/extra/httpd-ahssl.conf文件,配置VirtualHost選項,有三處名為VirtualHost的選項,均需修改。

第一個在107行左右。

在110行左右,將其中的SSLCertificateFile改為:Apache所在目錄/conf/ssl/server.crt

在111行左右,將SSLCertificateKeyFile改為:Apache所在目錄/conf/ssl/server.key

在112行左右,將DocumentRoot改為你的服務(wù)器根目錄

在126行左右,將CustomLog改為:Apache所在目錄/logs/ssl_request.log,這個不改的話也會錯。一般會出現(xiàn)如下錯誤:

Apache2.2服務(wù)由于下列服務(wù)特定錯誤而終止:函數(shù)不正確。

改成的效果:

<VirtualHost _default_:443>
 SSLEngine on
 ServerName localhost:443
 SSLCertificateFile C:/Users/myPC/Downloads/httpd-2.2.31-x86-r3/Apache22/conf/ssl/server.crt
 SSLCertificateKeyFile C:/Users/myPC/Downloads/httpd-2.2.31-x86-r3/Apache22/conf/ssl/server.key
 DocumentRoot F:/

# openssl req -new > server.csr
# openssl rsa -in privkey.pem -out server.key
# openssl x509 -in server.csr -out server.crt -req -signkey server.key -days 2048
<FilesMatch "\.(cgi|shtml|phtml|php)$">
  SSLOptions +StdEnvVars
</FilesMatch>
<Directory "/Apache22/cgi-bin">
  SSLOptions +StdEnvVars
</Directory>
BrowserMatch "MSIE [2-5]" \
     nokeepalive ssl-unclean-shutdown \
     downgrade-1.0 force-response-1.0
CustomLog "C:/Users/myPC/Downloads/httpd-2.2.31-x86-r3/Apache22/logs/ssl_request.log" \
     "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</virtualhost>

主要改上文四處地方

在130行和152行還有另外兩個VirtualHost,均需修改上述的四個選項

例:

130行

<VirtualHost *:443>
 SSLEngine on
 ServerName serverone.tld:443
 SSLCertificateFile C:/Users/myPC/Downloads/httpd-2.2.31-x86-r3/Apache22/conf/ssl/serverone.crt
 SSLCertificateKeyFile C:/Users/myPC/Downloads/httpd-2.2.31-x86-r3/Apache22/conf/ssl/serverone.key
 DocumentRoot F:/
# openssl req -new > serverone.csr
# openssl rsa -in privkey.pem -out serverone.key
# openssl x509 -in serverone.csr -out serverone.crt -req -signkey serverone.key -days 2048
<FilesMatch "\.(cgi|shtml|phtml|php)$">
  SSLOptions +StdEnvVars
</FilesMatch>
<Directory "/Apache22/cgi-bin">
  SSLOptions +StdEnvVars
</Directory>
BrowserMatch "MSIE [2-5]" \
     nokeepalive ssl-unclean-shutdown \
     downgrade-1.0 force-response-1.0
CustomLog "C:/Users/myPC/Downloads/httpd-2.2.31-x86-r3/Apache22/logs/ssl_request.log" \
     "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" env=HTTPS
</virtualhost> 

第152行

<VirtualHost *:443>
 SSLEngine on
 ServerName servertwo.tld:443
 SSLCertificateFile C:/Users/myPC/Downloads/httpd-2.2.31-x86-r3/Apache22/conf/ssl/servertwo.crt
 SSLCertificateKeyFile C:/Users/myPC/Downloads/httpd-2.2.31-x86-r3/Apache22/conf/ssl/servertwo.key
 DocumentRoot F:/
# openssl req -new > servertwo.csr
# openssl rsa -in privkey.pem -out servertwo.key
# openssl x509 -in servertwo.csr -out servertwo.crt -req -signkey servertwo.key -days 2048
<FilesMatch "\.(cgi|shtml|phtml|php)$">
  SSLOptions +StdEnvVars
</FilesMatch>
<Directory "/Apache22/cgi-bin">
  SSLOptions +StdEnvVars
</Directory>
BrowserMatch "MSIE [2-5]" \
     nokeepalive ssl-unclean-shutdown \
     downgrade-1.0 force-response-1.0
CustomLog "C:/Users/myPC/Downloads/httpd-2.2.31-x86-r3/Apache22/ssl_request.log" \
     "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</virtualhost> 

上述的兩個VirtualHost均需修改四處

這樣,Apache就算配置完了,如果還有問題,可能還需配置./conf/extra/httpd-ssl.conf,配置方法和配置VirtualHost的相似

4,啟動Apache HTTP Server

使用Windows命令行以管理員身份進入Apache程序的文件夾下的bin文件夾,輸入httpd -k install,完成Apache服務(wù)的安裝。

然后雙擊bin目錄下的ApacheMonitor.exe,點擊右邊的start啟動服務(wù)器,如果正常,如下圖:

測試一下:

5,其它

卸載Apache HTTP Server:

管理員身份進入bin目錄,使用httpd -k uninstall 移除服務(wù)

使用httpd -w -n "Apache2" -k start命令啟動服務(wù)器 可以顯示啟動過程中的日志,便于分析錯誤。

相關(guān)文章

  • VirtualBox 錯誤:This kernel requires the following features not present on the CPU

    VirtualBox 錯誤:This kernel requires the following features no

    這篇文章主要介紹了VirtualBox 錯誤:This kernel requires the following features not present on the CPU的相關(guān)資料,希望通過本文能幫助到大家,解決這樣的問題,需要的朋友可以參考下
    2017-10-10
  • Deepin中安裝與使用virtualenv的教程

    Deepin中安裝與使用virtualenv的教程

    這篇文章主要介紹了Deepin中安裝與使用virtualenv的教程,本文給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-02-02
  • 基于linux命令提取文件夾內(nèi)特定文件路徑

    基于linux命令提取文件夾內(nèi)特定文件路徑

    這篇文章主要介紹了基于linux命令提取文件夾內(nèi)特定文件路徑,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2020-05-05
  • linux服務(wù)器磁盤空間擴充方法

    linux服務(wù)器磁盤空間擴充方法

    大家好,本篇文章主要講的是linux服務(wù)器磁盤空間擴充方法,感興趣的同學趕快來看一看吧,對你有幫助的話記得收藏一下哦,方便下次瀏覽
    2021-12-12
  • 阿里云 CentOS7.4 安裝 Python3.6的方法講解

    阿里云 CentOS7.4 安裝 Python3.6的方法講解

    下面小編就為大家分享一篇阿里云 CentOS7.4 安裝 Python3.6的方法講解,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2018-01-01
  • Bash中尖括號的更多使用方法

    Bash中尖括號的更多使用方法

    這篇文章主要給大家介紹了關(guān)于Bash中尖括號的更多使用方法,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面來一起學習學習吧
    2019-02-02
  • Linux密碼安全防護操作詳解

    Linux密碼安全防護操作詳解

    這篇文章主要為大家詳細介紹了一些Linux密碼的安全防護操作,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-04-04
  • Centos7 mysql數(shù)據(jù)庫安裝及配置實現(xiàn)教程

    Centos7 mysql數(shù)據(jù)庫安裝及配置實現(xiàn)教程

    這篇文章主要介紹了Centos7 mysql數(shù)據(jù)庫安裝及配置實現(xiàn)教程,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2020-08-08
  • CentOS 7忘記密碼解決方案過程圖解

    CentOS 7忘記密碼解決方案過程圖解

    這篇文章主要介紹了CentOS 7忘記密碼解決方案過程圖解,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2020-08-08
  • php-fpm 占用CPU過高,100%的解決方法

    php-fpm 占用CPU過高,100%的解決方法

    這篇文章主要介紹了php-fpm 占用CPU過高,100%的解決方法,需要的朋友可以參考下
    2016-09-09

最新評論