您好,登錄后才能下訂單哦!
如何安裝apache并使工作模式為work?這個問題可能是我們日常工作經常見到的。通過這個問題,希望你能收獲更多。下面是解決這個問題的步驟內容。
一、apache模式的查看
如果apache已經安裝,我們可以用 httpd -l 命令查看當前模式(只可能有一種),如果找到 prefork.c 則表示當前工作在prefork模式,同理出現worker.c則工作在worker模式。
如果apache還未安裝,我們在編譯的時候可以加入--with-pem=(prefork|worker)
選項決定啟用什么模式。
當然如果你安裝過了(筆者模式為prefork) 也可以使用以下命令來切換
mv httpd httpd.prefork
mv httpd.worker httpd
重啟之后,模式就會改變。
二、安裝apche
由于Apache依賴于APR、APR-Util和PCRE,所以需要下載:
APR + APR-Util:http://apr.apache.org/download.cgi
PCRE:http://sourceforge.net/projects/pcre/files/pcre/
1、安裝 apr
tar zxvf apr-1.5.1.tar.gz (解壓文件到目錄/home/gaoqing/software/apache下)
./configure--prefix=/home/gaoqing/software/apache/apr 配置安裝目錄
make
make install
2、安裝apr-util
./configure--prefix=/home/gaoqing/software/apache/apr-util --with-apr=/home/gaoqing/software/apache/apr
make && make install
3、安裝 pcre
./configure --prefix=/home/gaoqing/software/apache/pcre
4、安裝apache,并指定工作模式為work
下載地址:http://httpd.apache.org/
./configure --prefix=/home/gaoqing/software/apache/apache --with-apr=/home/gaoqing/software/apache/apr --with-apr-util=/home/gaoqing/software/apache/apr-util --with-pcre=/home/gaoqing/software/apache/pcre --with-mpm=worker
make && make install
三、配置
修改配置文件,否則會出現問題:
AH00558: httpd: Could notreliably determine the server's fully qualified domain name, using 127.0.1.1.Set the 'ServerName' directive globally to suppress this message
解決方法:修改conf/httpd.conf 把:
# ServerNamewww.example.com:80
改為:
ServerNamelocalhost:80
四:apache服務的啟動、停止、重啟
假設你的apahce安裝目錄為/usr/local/apache2,這些方法適合任何情況
apahce啟動命令:
推薦/usr/local/apache2/bin/apachectl start apaceh啟動
apache停止命令
/usr/local/apache2/bin/apachectl stop 停止
apache重新啟動命令:
/usr/local/apache2/bin/apachectl restart 重啟
要在重啟 Apache 服務器時不中斷當前的連接,則應運行:
/usr/local/sbin/apachectl graceful
service httpd start 啟動
service httpd restart 重新啟動
servicehttpd stop 停止服務
關于編譯安裝apache的知識就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。