在開發過程中尤其實在開發web程序時,我們經常需要測試web程序是否運行·正常或者測試結果是否正確,因此我們需要有一個可以運行web程序的服務器。大家也都知道web服務器的種類很多,可以根據不同的需求來選擇不同的web server。但是長用的莫過于Apache和Nginx了。對于這兩個服務器我們都可以到對應的官方站點進行下載安裝。
直接安裝下載好的二進制包的確很方便和簡單,但是有時候現成的安裝包可能無法提供我們需要的一些特定的功能,那么怎么辦呢?今天我們就分享一下在linux下如何通過源碼來編譯安裝Apache和所需的模塊。具體步驟,如下:
一、安裝apache
1、安裝apache
#tar -zxvf httpd-2.2.22.tar.gz
#cd httpd-2.2.22
#./configure --enable-moudle=so --prefix=/usr/local/apache
出現錯誤 apr not found 錯誤:
解決辦法:
1.下載所需軟件包:
wget //archive.apache.org/dist/apr/apr-1.4.5.tar.gz
wget //archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz
wget //jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip
a:解決apr not found問題>>>>>>
[root@xt test]# tar -zxf apr-1.4.5.tar.gz
[root@xt test]# cd apr-1.4.5
[root@xt apr-1.4.5]# ./configure --prefix=/usr/local/apr
[root@xt apr-1.4.5]# make && make install
b:解決APR-util not found問題>>>>
[root@xt test]# tar -zxf apr-util-1.3.12.tar.gz
[root@xt test]# cd apr-util-1.3.12
[root@xt apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/bin/apr-1-config
[root@xt apr-util-1.3.12]# make && make install
c:解決pcre問題>>>>>>>>>
[root@xt test]#unzip -o pcre-8.10.zip
[root@xt test]#cd pcre-8.10
[root@xt pcre-8.10]#./configure --prefix=/usr/local/pcre
[root@xt pcre-8.10]#make && make install
2、#./configure --enable-moudle=so --prefix=/usr/local/apache --with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util \
--with-pcre=/usr/local/pcre
3、 make && make install
4、
添加:exportPATH添加:export PATH=/usr/local/apache/bin:$PATH
啟動:httpd -k start
停止:httpd -k stop
重啟:httpd -k restart
5、修改/usr/local/apache/conf/httpd.conf文件,
設置:ServerName localhost:80
二、安裝php
1、解壓配置
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs \
--with-mysql=/usr(如果是使用apt-get 安裝的mysql) --with-mysqli=/usr/bin/mysql_config \
--with-pear --with-libxml-dir --disable-fileinfo
出現錯誤,提示缺少 libxm12
apt-get install -y libxml2 libxml2-dev
2、make
make: *** [ext/fileinfo/libmagic/apprentice.lo] Error 1
編譯PHP5.5 make 時出現錯誤
make: *** [ext/fileinfo/libmagic/apprentice.lo] Error 1
解決辦法
這是由于內存小于1G所導致.
在./configure加上選項:
--disable-fileinfo
Disable fileinfo support 禁用 fileinfo
3、make install
4、 將php源碼包中的php.ini-development 復制到/usr/local/lib/中
cp php-5.6.13/php.ini-development /usr/local/lib/php.ini
5、修改Apache配置文件(/usr/local/apache/conf/httpd.conf)以支持對PHP的解析。
如果httpd.conf中沒有下列語句,就將它們分別添加到LoadModule和AddType項的后面。
LoadModule php5_module modules/libphp5.so
AddType application/x-httpd-php .php
在DirectoryIndex index.html index.html.var一行后加入index.php,即改為:
DirectoryIndex index.html index.html.var index.php
重啟Apache服務器:
#/usr/local/apache2/bin/apachectl restart
6、測試
在Apache服務器的文件根目錄(/usr/local/apache2/htdocs/)下新建一個PHP文件test.php,并輸入以下內容:
phpinfo();
?>
在瀏覽器中輸入//localhost/test.php。