CentOS安装php
时间:2015-04-11 02:40 来源:linux.it.net.cn 作者:IT
php依赖
01.yum install -y libxml2-devel openssl-devel libcurl-devel libjpeg-devel libpng-devel libicu-devel openldap-devel
下载:php-5.5.23.tar.gz
01../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
(责任编辑:IT)
php依赖 01.yum install -y libxml2-devel openssl-devel libcurl-devel libjpeg-devel libpng-devel libicu-devel openldap-devel 下载:php-5.5.23.tar.gz 01../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 (责任编辑:IT) |