ubuntu 安裝apache和httpd伺服器

2021-08-04 07:33:18 字數 595 閱讀 3283

能上網的話sudo apt-get install apache2

1.解壓縮httpd-2.0.63.tar.gz到臨時目錄如~/httpd-2.0.63

2.進入~/httpd-2.0.63目錄,執行

#./configure --prefix=/usr/local/apache2 --enable-module=so 

#make

#make install

實際執行過程中可能要求你有root許可權,所以要求使用sudo.

如果需要mod_rewrite模組,需要加引數: –enable-rewrite

停止:sudo /usr/local/apache2/bin/httpd -k stop

4.讓ubuntu開機自動啟動apache.

1). 複製 /usr/local/apache2/bin/apachectl到/etc/init.d

2). 載入為服務

sudo update-rc.d apachectl defaults

開機重啟訪問http://localhost/如果顯示apache的網頁,就說明自動啟動成功了。

ubuntu 安裝部署apache

解壓出httpd 2.2.19資料夾 進入httpd 2.2.19資料夾 3.編譯檔案 設定引數及路徑 像以上這樣設定編譯後apache在modules資料夾將沒有乙個dso模組動態載入!使用.configure help檢視幫助!如下設定 enable mods shared most表示載入大多...

ubuntu中安裝和解除安裝apache2

ubuntu中安裝和解除安裝apache21.安裝apache2 安裝命令 sudo apt get install apache2 啟動 停止 重啟apache2 service apache2 start stop restart 解除安裝apache2 之前解除安裝重新安裝後找不到apache...

Ubuntu 12 04 安裝配置 Apache2

apache2安裝 1 我們使用root賬戶進行安裝,首先切換到root賬戶,輸入命令 sudo su 2 安裝 apache2 apt get install apache2 在瀏覽器輸入你伺服器ip位址列入,如檢視apache2是否工作,如果顯示 it works 說明已經工作。apache 在...