【Linux】Linux下配置apache

來源:互聯網
上載者:User

標籤:des   style   http   io   ar   os   使用   sp   檔案   

一.擷取軟體: http://httpd.apache.org/   httpd-2.4.10.tar.gz

二.安裝步驟:

解壓源檔案:

        1) tar zvxf  httpd-2.4.10.tar.gz 

        2) cd httpd-2.4.10

        3) ./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite 

        4) make

        5) make install

運行./configure 命令進行編譯原始碼,

--prefix=/usr/local/apach2 是設定編譯安裝到的系統目錄,

--enable-s  參數是使httpd服務能夠動態載入模組功能,

--enable-rewrite  是使httpd服務具有網頁地址修正功能。

三.啟動apache:

/usr/local/apache2/bin/apachectl start


四,驗證是否安裝成功

       瀏覽器中直接輸入:http://localhost

       在/var/www/html 中添加testp.php檔案然後在瀏覽器中輸入:http://localhost/test.php


五,將apache加入到系統服務,用service命令來控制apache的啟動和停止


 首先以apachectl指令碼為模板產生Apache服務控制指令碼:
  grep -v "#" /usr/local/apache2/bin/apachectl  > /etc/init.d/apache

用vi編輯Apache服務控制指令碼/etc/init.d/apache:
  vi /etc/init.d/apache

在檔案最前面插入下面的行,使其支援chkconfig命令:
  #!/bin/sh              
  # chkconfig: 2345 85 15              
  # description: Apache is a World Wide Web server.


儲存後退出vi編輯器,執行下面的命令增加Apache服務控制指令碼執行許可權:    
  chmod  +x  /etc/init.d/apache


執行下面的命令將Apache服務加入到系統服務:    
  chkconfig --add apache


執行下面的命令檢查Apache服務是否已經生效:    
  chkconfig --list apache              


命令輸出類似下面的結果:              
  apache          0:off 1:off 2:on 3:on 4:on 5:on 6:off       


  表明apache服務已經生效,在2、3、4、5運行層級隨系統啟動而自動啟動,以後可以使用service命令控制Apache的啟動和停止。  


啟動Apache服務:   service apache start   
停止Apache服務:        service apache stop   
執行下面的命令關閉開機自啟動:      chkconfig apache off

【Linux】Linux下配置apache

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.