【Linux】Linux下配置apache

來源:互聯網
上載者:User

標籤:退出   style   tracking   儲存   bsp   art   figure   stop   lin   

一.擷取軟體: 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.