LAMP架構四(PHP5.6的安裝)
四、Linux 6 下編譯安裝 PHP 5.6例項詳解
PHP(外文名:PHP: Hypertext Preprocessor,中文名:“超文字前處理器”)是一種通用開源指令碼語言。語法吸收了C語言、Java和Perl的特點,利於學習,使用廣泛,主要適用於Web開發領域。PHP以其開發原始碼,免費,快捷,跨平臺,高效,面向物件,強大的動態影象建立等功能深受廣大開發者的喜愛。
1、下載php安裝包
wget http://cn2.php.net/distributions/php-5.6.32.tar.bz2
2、安裝,安裝過程中可能需要依據提示不斷的安裝依賴包
# tar -jxvf php-5.6.32.tar.bz2
# cd php-5.6.32
./configure --prefix=/usr/local/php --with-apxs2=/usr/sbin/apxs --with-config-file-path=/usr/local/php/etc --with-mysql --with-pdo-mysql --with-mysqli --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif
報錯處理:
Sorry, I cannot run apxs. Possible reasons follow:
1. Perl is not installed
2. apxs was not found. Try to pass the path using --with-apxs2=/path/to/apxs
3. Apache was not built using --enable-so (the apxs usage page is displayed)
The output of /usr/local/apache/bin/apxs follows:./configure: line 6669: /usr/local/apache/bin/apxs:
No such file or directoryconfigure: error: Aborting
解決方法:根據英文提示我們可以看到如下幾點:perl沒有安裝,指定正確的apxs路徑
於是進行如下操作
#yum install -y perl*
#yum install -y httpd-devel
#find / -name apxs 得到的路徑是:/usr/sbin/apxs
於是修改--with-apsx2=/usr/sbin/apxs指定到正確路徑
最後正確執行
#make
#make test
#make install
如何檢視安裝完成?
httpd下新增了php模組
php需要service啟動嗎?
apache是利用apxs載入的模組,apxs 是一個為Apache HTTP伺服器編譯和安裝擴充套件模組的工具,用於編譯一個或多個源程式或目的碼檔案為動態共享物件,使之可以用由mod_so 提供的LoadModule 指令在執行時載入到Apache伺服器中。
顧php是apache的一個模組,不需要手動service啟動。