Ubuntu安裝Apache2
Apache安裝
1.安裝
#apt-get install apache2
如果提示未找到安裝包,請執行
#apt-get update
再執行上述命令
安裝成功後執行命令
#apache2ctl -v
可以檢視版本資訊
2.檢視apache2相關的目錄
#dpkg -L apache2
可以看到所有apache2相關的目錄
要重點關注的是:
/var/www/html/
/var/log/apache2
/etc/apache2/
這幾個目錄
/var/www/html/為預設的html頁面放置的目錄,在/etc/apache2/目錄下的配置檔案可以重新配置
/var/log/apache2記錄了apache2的執行日誌
/etc/apache2/存放所有apache2的配置檔案
3.啟動、檢視狀態和停止apache2
/etc/init.d/apache2 start
/etc/init.d/apache2 status
/etc/init.d/apache2 stop
(如果啟動失敗,請檢視tcp 80埠是否被別的程序佔用,停掉別的程序再啟動apache2)
4.安裝apache2-dev
(後面需要的apxs命令會用到)
#apt-get install apache2-dev
5.配置apache2
Ubuntu下的apache配置跟其他系統如centos不一樣的是它沒有http.conf檔案,http.conf
被拆分成了若干個檔案,主檔案是/etc/apache2/apache2.conf,其他檔案結構為:
# /etc/apache2/
# |-- apache2.conf
# | `-- ports.conf
# |-- mods-enabled
# | |-- *.load
# | `-- *.conf
# |-- conf-enabled
# | `-- *.conf
# `-- sites-enabled
# `-- *.conf
配置方法同http.conf