下載php源碼包
http://www.php.net/downloads.php
安裝php
tar -xvf php-5.5.13.tar.bz2 cd php-5.5.13 ./configure --prefix=/usr/local/php --with-config-file-path=/etc --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-opcache --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-gettext --enable-mbstring --with-iconv --with-mcrypt --with-mhash --with-openssl --enable-bcmath --enable-soap --with-libxml-dir --enable-pcntl --enable-shmop --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-sockets --with-curl --with-zlib --enable-zip --with-bz2 --with-readline --without-sqlite3 --without-pdo-sqlite --with-pear
可能出現的錯誤
出現錯誤: congigure
可能出現的錯誤出現錯誤: congigure error :1.執行指令:sudo yum install libxml2-devel
find / -name "xml2-config"
yum install openssl openssl-devel ln -s /usr/lib64/libssl.so /usr/lib/
yum install bzip2 bzip2-devel
出現錯誤:
configure: error: mcrypt.h not found. Please rell libmcrypt.出現錯誤:
configure: error: Please reinstall readline - I cannot find readline.h
解決方法:
yum -y install curl-devel
5 ake 時出現錯誤make: *** [ext/fileinfo/libmagic/apprentice.lo] Error 1
解決方法:這是由於記憶體小於1G所導致.Disable fileinfo support 禁用infoinfo這是由於記憶體小於1G所導致.Disable fileinfo support 停用加上選項:
sudo yum install libmcrypt libmcrypt-devel mcrypt mhash
加入PHP 指令到環境變數
sudo yum install readline-devel
查看環境變數
make make install
--disable-fileinfo
PHP 5.5.13 (cli) (built: Jun 20 2014 11:11:26)
, Engpy20 2019-11:11:26) 🟎 5.0, Copyright (c) 1998-2014 Zend Technologies
設定啟動php-fpm
vim /etc/profile
PATH=$PATH:/usr/local/php/bin export PATH
/default.conf)
. /etc/profile 或 source /etc/profile
重啟nginx
echo $PATH
以上就介紹了centos安裝php php-fpm 以及 配置nginx,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。