LAMP+LNMP(四)PHP安裝實踐

1、PHP簡介

PHP是一種PHP(外文名:PHP: Hypertext Preprocessor,中文名:「超文本預處理器」)是一種通用開源腳本語言。語法吸取了C語言、Java和Perl的特色,利於學習,使用普遍,主要適用於Web開發領域。PHP的官網是www.PHP.com 。當前主流的版本是5.6與7.1,企業經常使用的是5版本的PHP,最新的是PHP7,在性能上比PHP5有很大提高,具體選擇哪一個主要是看業務程序的兼容性。php

2、安裝PHP5

一、下載php程序包

cd /usr/local/src
wget http://cn2.php.net/distributions/php-5.6.30.tar.bz2mysql

LAMP+LNMP(四)PHP安裝實踐

二、解壓程序包

tar jxvf php-5.6.30.tar.bz2sql

三、生成編譯文件

cd php-5.6.30
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exifapache

這一步時你會遇到無數的問題,好比下面這樣,編譯停下來了,這是你就須要根據紅框中的關鍵字,找相應的庫
LAMP+LNMP(四)PHP安裝實踐php7

yum list |grep xml2
LAMP+LNMP(四)PHP安裝實踐
這時咱們安裝libxml2-devel這個包就好了。socket

相同的問題還會出現不少次,每次出現時最好都去搜索下,可以增加排錯經驗。
這裏咱們把須要安裝的庫列在下面,一併安裝上就能夠正常編譯了。ide

yum install -y libxml2-devel openssl-devel bzip2-devel libpng freetype-devel epel-release libmcrypt-devel
libjpeg-turbo-devel libpng-devel性能

看到這個就完成了:
LAMP+LNMP(四)PHP安裝實踐學習

四、make & make install

make && make install測試

這一步要花費很長時間,大概五分鐘左右,隨機器信能不一樣,性能越好越快。

LAMP+LNMP(四)PHP安裝實踐

看到這個就ok了

五、複製配置文件

cp -v php.ini-production /usr/local/php/etc/php.ini #若是是測試環境能夠用php.ini-development

LAMP+LNMP(四)PHP安裝實踐

補充一些php操做命令

/usr/local/php/bin/php -m

LAMP+LNMP(四)PHP安裝實踐

php5不須要像myaql、apache同樣須要啓動,他自己做爲apache的一個模塊工做。模塊的路徑是/usr/local/apache2.4/modules/libphp5.so,apache經過這個模塊與mysql交換數據,若是刪掉該模塊會使網站,好比論壇沒法工做。
LAMP+LNMP(四)PHP安裝實踐

2、安裝PHP7

一、下載源碼包

cd /usr/local/src
wget http://cn2.php.net/distributions/php-7.1.6.tar.bz2

LAMP+LNMP(四)PHP安裝實踐

二、解壓源碼包

tar xvf php-7.1.6.tar.bz2

三、編譯php7

cd php-7.1.6/
./configure --prefix=/usr/local/php7 --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php7/etc --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif

LAMP+LNMP(四)PHP安裝實踐

四、安裝php7

make
make install

LAMP+LNMP(四)PHP安裝實踐
建議每一步後都用echo $?查看一下執行是否正確

LAMP+LNMP(四)PHP安裝實踐

五、查看apache目錄中的php7模塊

ls /usr/local/apache2.4/modules/libphp7.so

六、拷貝php7的配置文件

cp -v php.ini-production /usr/local/php7/etc/php.ini

兩種php能夠共存,在httpd中要進行相關配置

相關文章
相關標籤/搜索