centos php 5.4 安裝教學

2020-10-12 12:01:11

centos php5.4安裝方法:首先通過「yum install gcc -y yum install libicu-devel -y」等命令安裝php5.4依賴;然後使用命令「make install」安裝php5.4即可。

推薦:《》

centos7 安裝php5.4.45

安裝php5.4.45依賴

yum install gcc -y
yum install libicu-devel -y 
yum install glibc-headers -y
yum install gcc-c++  -y
yum install -y epel-release
yum  install  php-mcrypt  libmcrypt  libmcrypt-devel

兩個不能一起安裝,因為CentOs6預設的yum源沒有 libmcrypt-devel這個包,只能藉助epel的yum源,所以先安裝epel,再安裝

libmcrypt。

./configure --prefix=/usr/local/php54 --with-config-file-path=/usr/local/php54/etc --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-iconv-dir --with-freetype-dir=/usr/local/freetype --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-mbstring --with-mcrypt --enable-ftp --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --with-gettext --disable-fileinfo --enable-intl --with-xsl

make clean && make && make install

以上就是centos php 5.4 安裝教學的詳細內容,更多請關注TW511.COM其它相關文章!