一聚教程网:一个值得你收藏的教程网站

热门教程

CentOS6安装配置php全过程

时间:2022-06-30 21:19:39 编辑:袖梨 来源:一聚教程网

php依赖
 
 
yum install -y libxml2-devel openssl-devel libcurl-devel libjpeg-devel libpng-devel libicu-devel openldap-devel 

 
下载:php-5.5.23.tar.gz


./configure --prefix=/root/tools/php5.5 --with-config-file-path=/root/tools/php5.5/etc --enable-fpm --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-fpm --enable-mbstring --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --enable-opcache --with-pdo-mysql --enable-maintainer-zts --disable-fileinfo 
 
cp /root/tools/php-5.5.23/php.ini-production /root/tools/php5.5/php.ini

修改php.ini文件 register_globals = On

make: *** [ext/fileinfo/libmagic/apprentice.lo] Error 1

编译PHP5.5 make 时出现错误

make: *** [ext/fileinfo/libmagic/apprentice.lo] Error 1

解决办法

这是由于内存小于1G所导致.

在./configure加上选项:

--disable-fileinfo
Disable fileinfo support 禁用 fileinfo

配置php:
 
cp php.ini-production /usr/local/php-5.5.0/etc/php.ini
cp /usr/local/php-5.5.0/etc/php-fpm.conf.default /usr/local/php-5.5.0/etc/php-fpm.conf
/usr/local/php-5.5.0/sbin/php-fpm

通过端口判断是PHP否启动
 
# netstat -lnt | grep 9000
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN

热门栏目