linux伺服器PHP升級到7
PHP安裝
本文以php7.0.30為例,下載地址:http://cn2.php.net/get/php-7.0.30.tar.gz/from/this/mirror
tar -zxvf php-7.0.30.tar.gz
cd php-7.0.30
安裝依賴包,有安裝就不需要
yum install libxml2 libxml2-devel openssl openssl-devel bzip2 bzip2-devel libcurl libcurl-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel gmp gmp-devel libmcrypt libmcrypt-devel readline readline-devel libxslt libxslt-devel
編譯安裝PHP
./configure --prefix=/alidata/server/php-7.0.30 --with-openssl --with-config-file-path=/alidata/server/php-7.0.30/etc --with-mysqli --with-pdo-mysql --with-gd --with-iconv=/usr/local/libiconv --with-zlib --enable-zip --enable-inline-optimization --enable-xml --enable-bcmath --enable-shmop --enable-sysvsem --enable-mbregex --enable-mbstring --enable-ftp --enable-gd-native-ttf --enable-pcntl --enable-sockets --with-xmlrpc --enable-soap --without-pear --with-gettext --enable-session --with-curl --with-jpeg-dir --with-freetype-dir --enable-opcache --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx --without-gdbm --with-pcre-regex --with-png-dir --enable-fileinfo
make && make install
軟連結
ln -s /alidata/service/php-7.0.30 /alidata/service/php
配置php-fpm
cp php.ini-production /alidata/service/php/etc/php.ini
cp /alidata/service/php/etc/php-fpm.conf.default /alidata/service/php/etc/php-fpm.conf
cp /alidata/service/php/etc/php-fpm.d/www.conf.default /alidata/service/php/etc/php-fpm.d/www.conf
cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
chmod +x /etc/init.d/php-fpm
啟動php-fpm
/etc/init.d/php-fpm start
PHP擴充套件安裝
以 memcache 為例
wget https://github.com/websupport-sk/pecl-memcache/archive/php7.zip
unzip pecl-memcache-php7.zip
cd pecl-memcache-php7
/alidata/service/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install
修改 /alidata/service/php/etc/php.ini
extension_dir = "/alidata/server/php-7.0.30/lib/php/extensions/no-debug-non-zts-20151012/"
.....
extension=memcache.so
相關文章
- Centos 7升級 PHP7 到 PHP8CentOSPHP
- PHP版本升級:從php7.1升級到php7.2PHP
- Mac 升級 PHP 到 7.4 版本MacPHP
- CentOS 7 升級到 CentOS 8CentOS
- 升級 PHP7 過程記錄PHP
- MacOS下PHP7.1升級到PHP7.4.15MacPHP
- Linux平滑編譯升級php至5.5.0Linux編譯PHP
- Centos7 升級openssh到最高版本CentOS
- win7如何升級到win10系統版本 win7免費升級到win10Win7Win10
- Linux 核心準備升級到 Rust 1.77LinuxRust
- Centos7 openssh升級到7.9p1CentOS
- 升級php7.3PHP
- Homestead 升級PHP版本PHP
- LearnKu 伺服器已升級 PHP8 和 Ubuntu 20伺服器PHPUbuntu
- centos7 openssl升級版本到OpenSSL 1.1.1nCentOS
- windows7怎麼升級到win10 2022年win7還能升級win10嗎WindowsWin10Win7
- Linux升級GCCLinuxGC
- Linux核心升級Linux
- oracle 10 rac 升級 10.2.0.1升級到10.2.0.5Oracle
- windows7升級到win10會變流暢嗎 win7升級win10怎麼操作WindowsWin10Win7
- Mac brew 升級 PHP版本MacPHP
- 升級mac的PHP版本MacPHP
- 使用webtatic源升級phpWebPHP
- Linux伺服器下 php7安裝redis的方法Linux伺服器PHPRedis
- 電腦win7怎麼升級到win10 win7怎麼升級win10系統版本Win7Win10
- win7系統升級到win10方法_WIN7怎麼升級WIN10系統Win7Win10
- ccproject升級到1135Project
- 從 PHP5.2 升級到 PHP7.1 遇到的函式引數問題PHP函式
- mongodb單機從3.2升級到4.0.4升級MongoDB
- kali linux升級記Linux
- Linux openssh升級8.0Linux
- centos7 核心升級CentOS
- CentOS 7核心升級教程。CentOS
- 伺服器 升級OpenSSL伺服器
- php5.6 升級至7.2.7PHP
- SpringCloud升級之路2020.0.x版-7.從Bean到SpringCloudSpringGCCloudBean
- 藍寶石留言本php版升級到v9.7了PHP
- 在Mac上使用Homebrew升級到PHP為最新版本MacPHP