1.獲取軟體: httpd-2.2.21.tar.gz
2.安裝步驟:
解壓原始檔:
執行./configure 命令進行編譯源**,
--prefix=/usr/local/apach2 是設定編譯安裝到的系統目錄,
--enable-s 引數是使httpd服務能夠動態載入模組功能,
--enable-rewrite 是使httpd服務具有網頁位址重寫功能。
3.啟動apache:
/usr/local/apache2/bin/apachectl start
4.將apache加入到系統服務,用service命令來控制apache的啟動和停止
grep -v "#" /usr/local/apache2/bin/apachectl > /etc/init.d/apache
vi /etc/init.d/apache
#!/bin/sh
# chkconfig: 2345 85 15
# description: apache is a world wide web server.
chmod +x /etc/init.d/apache
chkconfig --add 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的啟動和停止。
Linux安裝配置apache
1.獲取軟體 httpd 2.2.21.tar.gz 2.安裝步驟 解壓原始檔 執行.configure 命令進行編譯源 prefix usr local apach2 是設定編譯安裝到的系統目錄,enable s 引數是使httpd服務能夠動態載入模組功能,enable rewrite 是使htt...
Linux安裝配置apache
1.獲取軟體 httpd 2.2.21.tar.gz 2.安裝步驟 解壓原始檔 執行.configure 命令進行編譯源 prefix usr local apach2 是設定編譯安裝到的系統目錄,enable s 引數是使httpd服務能夠動態載入模組功能,enable rewrite 是使htt...
Linux 下安裝配置Apache
實習過程中需要手動配置apache伺服器,並且需要手動配置apache文件,在摸索了一天後,終於解決了apache的安裝與配置,寫下來分享給大家。作業系統 red hat enterprise linux 5.5 一 安裝apache 方法一 手動安裝httpd 2.2.16.tar.gz包 3.在...