在安装LAMP架构时,我们常用php-5.3的版本

 

现进行php-5.4/5.5的编译安装演示:

 

[root@localhost ~]# cd /usr/local/src
[root@localhost src]# wget http://cn2.php.net/distributions/php-5.4.36.tar.bz2    (5.5地址 http://cn2.php.net/distributions/php-5.5.22.tar.bz2)
[root@localhost src]# tar jxvf php-5.4.36.tar.bz2
[root@localhost src]# cd php-5.4.36

[root@localhost php-5.4.36]# yum install -y epel-release
[root@localhost php-5.4.36]# yum install libxml2-devel  libjpeg-*  libpng-devel freetype-devel gd-devel libmcrypt-devel openssl-devel
[root@localhost php-5.4.36]# ./configure   --prefix=/usr/local/php   --with-apxs2=/usr/local/apache2/bin/apxs   --with-config-file-path=/usr/local/php/etc   --with-mysql=/usr/local/mysql   --with-libxml-dir   --with-gd   --with-jpeg-dir   --with-png-dir   --with-freetype-dir   --with-iconv-dir   --with-zlib-dir   --with-bz2   --with-openssl   --with-mcrypt   --enable-soap   --enable-gd-native-ttf   --enable-mbstring   --enable-sockets   --enable-exif   --disable-ipv6
[root@localhost php-5.4.36]# make && make install 

  

相关文章:

  • 2022-12-23
  • 2021-11-20
  • 2021-10-30
  • 2022-12-23
  • 2021-10-07
  • 2021-08-21
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-03
  • 2022-02-14
  • 2021-06-10
  • 2022-12-23
  • 2021-09-01
  • 2022-12-23
  • 2021-12-26
相关资源
相似解决方案