Linux下安裝PHP環境

來源:互聯網
上載者:User
需要的安裝包都放在本人的下載資源裡面 : http://download.csdn.net/detail/javaxiaojian/8854311

一. 安裝Apache

本人提供 httpd-2.2.11.tar.gz

如果需要下載最新,請到官網http://httpd.apache.org/download.cgi

1.建立apache2目錄

mkdir/usr/local/apache2

2.將 httpd-2.2.11.tar.gz放到該目錄下

Cd /usr/local/apache2

tar -zxvf httpd-2.2.11.tar.gz

3. 配置

cd /usr/local/apache2

./configure --prefix=/usr/local/apache2 --enable-module=shared --with-included-apr
  如果在這一步出現錯誤,請聯絡me尋求協助
5、編譯    make    6、安裝    make install  7、啟動,重啟和停止 ,先切換到安裝完成後的目錄/usr/local/apache2/bin    ./apachectl -k start    ./apachectl -k restart    ./apachectl -k stop  
8、設定檔(滿足最基本的配置)     編輯 /usr/local/apache2/conf/httpd.conf 檔案          找到:    AddType  application/x-compress .Z    AddType application/x-gzip .gz .tgz    在後面添加:    AddType application/x-httpd-php .php(使Apcche支援PHP)    AddType application/x-httpd-php-source .php5   
    找到:        DirectoryIndex index.html        添加:        DirectoryIndex index.html index.php        
    找到:    #ServerName www.example.com:80    修改為:    ServerName 127.0.0.1:80或者ServerName localhost:80    記得要去掉前面的“#” 
   
9、測試
在瀏覽器裡輸入http://ip

如果出現It Works!說明成功。

一. 安裝PHP5.5

本人提供php-5.5.24.tar.gz,5.5屬於最穩當的版本

1. 建立mkdir /usr/local/php ,將 php-5.5.24.tar.gz放到該目錄下

2. tar -zxvf php-5.5.24.tar.gz

3. cd php-5.5.24

4. 配置

./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs

5、編譯
make
6、測試編譯
make test
7、安裝
make install

8.將/usr/local/php/php-5.5.24目錄下的 php.ini-development 拷貝到 /usr/local/php/lib 目錄下,並且改名為 php.ini

9.重啟apache

10. 測試

在apache的htdocs下建立一個php檔案test.php,裡面的內容如下:
phpinfo();
?>


著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

以上就介紹了Linux下安裝PHP環境,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.