首頁 >後端開發 >php教程 >centos安裝php php-fpm 以及 設定nginx

centos安裝php php-fpm 以及 設定nginx

WBOY
WBOY原創
2016-08-08 09:25:001083瀏覽

下載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

2.查看是否成功: 

find / -name "xml2-config"

出現錯誤: congigure error: Cannot findrSSL's出現錯誤: configure: error: Please reinstall the BZip2 distribution

解決方法:


yum install openssl openssl-devel

ln -s /usr/lib64/libssl.so /usr/lib/

出現錯誤: configure: error: Please reinstall the libcurl ? /

解決方法:


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
rr

查看環境變數

make 

make install 

查看php版本


--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
啟動php-fpm
PATH=$PATH:/usr/local/php/bin

export PATH

/default.conf)

. /etc/profile 或 source /etc/profile

重啟nginx

echo $PATH

在web根目錄下創建index.php

//註:依照自己的配置修改web根目錄即可,如我的為/usr/share/nginx/html。

如果啟動php-fpm出現錯誤: can not get uid for www,修改php-fpm.conf中user為nginx group為nginx

以上就介紹了centos安裝php php-fpm 以及 配置nginx,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn