linux下apache 的安裝,php安裝過程____linux

來源:互聯網
上載者:User
linux下apache 的安裝
1、進入work目錄下:cd /usr/local/work
(如沒有則自己建立,命令:mkdir /usr/local/work)
 
2、在work目錄下從網站下載apache並解壓:
wget http://dev.xiaonei.com/apache-mirror/httpd/httpd-2.0.63.tar.gz
解壓:tar zxvf httpd-2.0.63.tar.gz
 
3、進入httpd-2.0.63目錄:cd httpd-2.0.63
 
4、建立makefile,並將Apache安裝到/usr/local/apache2目錄下:
./configure -prefix=/usr/local/apache2 -enable-module=so   (/configure前有一個點“.”的)
 
5、開始編譯:make
 
6、開始安裝Apache到work目錄中:
make install
 
7、至此Apache的安裝工作完成,可以在每次啟動系統時通過如下命令啟動或重新啟動Apache服務:
/usr/local/apache2/bin/apachectl start
/usr/local/apache2/bin/apachectl restart
 
8、開啟瀏覽器,在地址欄輸入“http://localhost”出現“It works!”或apache表徵圖的漂亮介面,說明apache安裝成功。




//////////////PHP 安裝////


1.擷取安裝檔案: http://www.php.net/downloads.php   http://cn2.php.net/distributions/php-5.5.4.tar.gz
wget http://cn2.php.net/distributions/php-5.5.4.tar.gz


擷取安裝php需要的支援檔案:http://xmlsoft.org/sources/libxml2-2.9.1.tar.gz
wget http://xmlsoft.org/sources/libxml2-2.9.1.tar.gz


2.安裝libxml2


 tar zxvf libxml2-2.9.1.tar.gz 
 cd libxml2-2.9.1.
 ./configure --prefix=/usr/local/libxml2 
 make
 make install




如果安裝成功以後,在/usr/local/libxml2/目錄下將產生bin、include、lib、man和share五個目錄。在後面安裝PHP5原始碼包的配置時,會通過在configure命令的選項中加上"--with-libxml-dir=/usr/ local/libxml2"選項,用於指定安裝libxml2庫檔案的位置。






3.安裝php5




#tar zvxf php-5.5.4.tar.gz 
#cd php-5.5.4
#./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-libxml-dir=/usr/local/libxml2
#make 
#make install 


4.重新設定apache2讓他支援php


配置 httpd.conf 讓apache支援PHP:
  # vi /usr/local/apache2/conf/httpd.conf


  找到 AddType application/x-gzip .gz .tgz 在其下添加如下內容


     AddType application/x-httpd-php .php      (.前面有空格)


  AddType application/x-httpd-php-source .phps        (.前面有空格)


然後CPOPY PHP的設定檔
  cp php-5.5.4/php.ini.dist /usr/local/php/lib/php.ini 


    (如果沒有php.ini.dist 則把php.ini-development php.ini-production中的任何一個重新命名為php.ini.dist即可。)


  修改php.ini檔案 增加 register_globals = On


重啟apache
  service apache restart


5.測試php是否成功安裝


寫一個php測試頁info.php,放到apache2/htdocs中。


<?php 


 phpinfo(); 


?>; 


在瀏覽器中輸入:伺服器位址/info.php


如果能正常顯示出php的資訊,則說明Apche+Mysql+PHP安裝成功。






今日編譯apache時出錯://////////////////////////////////


#./configure --prefix……檢查編輯環境時出現:


checking for APR... no
configure: error: APR not found .  Please read the documentation


解決辦法:


1.下載所需軟體包:


wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz  
wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz  
wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip   
2.編譯安裝:


yum remove apr-util-devel apr apr-util-mysql apr-docs apr-devel apr-util apr-util-docs 
具體步驟如下:


  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 
4.最後編譯Apache時加上:


--with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.