天天看點

centos安裝php php-fpm,centos安裝php php-fpm

一、下載下傳php源碼包php

http://www.php.net/downloads.phphtml

2 、安裝phpmysql

tar -xvf php-5.5.13.tar.bz2linux

cd php-5.5.13nginx

./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-pearweb

出現錯誤: congigure error: xml2-config not found.sql

解決辦法:vim

執行指令: sudo yum install libxml2-develapi

檢視是否成功: find / -name "xml2-config"浏覽器

出現錯誤: congigure error: Cannot find OpenSSL's

解決辦法:

yum install openssl openssl-devel

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

出現錯誤: configure: error: Please reinstall the BZip2 distribution

解決辦法:yum install bzip2 bzip2-devel

出現錯誤: configure: error: Please reinstall the libcurl distribution -easy.h should be in /include/curl/

解決辦法:yum -y install curl-devel

configure: error: mcrypt.h not found. Please reinstall libmcrypt.

sudo yum install libmcrypt libmcrypt-devel mcrypt mhash

configure: error: Please reinstall readline - I cannot find readline.h

sudo yum install readline-devel

make

make install

若是出現有提示make: *** [ext/fileinfo/libmagic/apprentice.lo] Error 1錯誤。的/configure 後面加上--disable-fileinfo, 再次./configure便可。

若是出現make: *** [sapi/cli/php] Error 1 修改Makefile  在EXTRA_LIBS = 最後加 -liconv 而後從新再次 make 便可。

添加 PHP 指令到環境變量

vim /etc/profile

在末尾加入

PATH=$PATH:/usr/local/php/bin

export PATH

要使改動當即生效執行

. /etc/profile 或 source /etc/profile

檢視環境變量

echo $PATH

檢視php版本

php -v

PHP 5.5.13 (cli) (built: Jun 20 2014 11:11:26)

Copyright (c) 1997-2014 The PHP Group

Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies

配置php-fpm

cd /usr/local/php/etc

cp php-fpm.conf.default php-fpm.conf

啟動php-fpm

sudo /usr/local/php/sbin/php-fpm

修改nginx的配置檔案(/etc/nginx/conf.d/default.conf)

location / {

root web根目錄;

index index.html index.htm index.php;

}

location ~ \.php$ {

root html;

fastcgi_pass 127.0.0.1:9000;

fastcgi_index index.php;

fastcgi_param SCRIPT_FILENAME web根目錄$fastcgi_script_name;

include fastcgi_params;

}

重新開機nginx

/etc/init.d/nginx restart

在web根目錄下建立index.php

在浏覽器中輸入http://ip/index.php查當作功便可。

//注:根據本身的配置修改web根目錄便可,如個人為/usr/share/nginx/html。

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