sexevil 发表于 2018-12-14 08:58:05

Redhat 5.1 install PHP 5.3.6

  

  Redhat 5.1 install PHP 5.3.6
  
  现在各种版本的坑。。导致没有低版本的php
  可能是使用的问题导致。系统版本没有提升导致的没有包可用....
  


[*]  yum install gcc libxml2-devel bzip2-devel zlib-devel \
[*]  curl-devel libmcrypt-devel libjpeg-devel \
[*]  libpng-devel gd-devel mysql-develphp-pecl-zip
  

  download 软件包
  

  

  wget http://cn.php.net/get/php-5.3.6.tar.bz2/from/this/mirror
  tar -xjf php-5.3.6.tar.bz2
  cd php-5.3.6
  ./configure --prefix=/usr/local/php53 \
  --with-config-file-path=/etc/php53 \
  --with-config-file-scan-dir=/etc/php53/php.d \
  --enable-fpm \
  --with-fpm-user=apache \
  --with-fpm-group=apache \
  --with-libdir=lib64 \
  --with-mysql \
  --with-mysqli \
  --enable-mbstring \
  --disable-debug \
  --disable-rpath \
  --with-bz2 \
  --with-curl \
  --with-gettext \
  --with-iconv \
  --with-openssl \
  --with-gd \
  --with-mcrypt \
  --with-pcre-regex \
  --with-zlib
  

  

  

  make -j4 && sudo make install
  #make 中出现以下内容可用忽略。。进行安装即可
  

  

  WARNED TEST SUMMARY
  ---------------------------------------------------------------------
  via
  SQLite PDO Common: Bug #34630 (inserting streams as LOBs) (warn: XFAIL section but test passes)
  via
  SQLite2 PDO Common: Bug #34630 (inserting streams as LOBs) (warn: XFAIL section but test passes)
  Bug #39863 (file_exists() silently truncates after a null byte) (warn: XFAIL section but test passes)
  

  

  

  sudo mkdir /etc/php53
  sudo cp php.ini-production /etc/php53/php.ini
  

  sed -i -e 's#php_fpm_CONF=\${prefix}/etc/php-fpm.conf#php_fpm_CONF=/etc/php53/php-fpm.conf#'sapi/fpm/init.d.php-fpm
  

  cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
  chmod a+x /etc/init.d/php-fpm
  /sbin/chkconfig --add php-fpm
  /sbin/chkconfig php-fpm on
  

  sudo cp sapi/fpm/php-fpm.conf /etc/php53/
  

  

  

  编辑文件 /etc/php53/php-fpm.conf
  

  pid = run/php-fpm.pid
  listen = 127.0.0.1:9000
  pm.start_servers = 10
  pm.min_spare_servers = 5
  pm.max_spare_servers = 20
  

  

  

  启动起来瞧瞧...
  

  /etc/init.d/php-fpm start
  

  netstat -antpu | grep :9000
  

  

  netstat -anpo|grep php-fpm |wc -l
  

  ps -ef | grep php-fpm
  

  

  

  

  

  

  

  

  

  




页: [1]
查看完整版本: Redhat 5.1 install PHP 5.3.6