#不要問我為什麼要升級,我不是維運。如果你也不是運維的話,而且是公司的伺服器的話,那你還是要慎重啊,我他麼的就這樣填了一天的坑,簡單記錄一下這坑爹的一天
備份之前的php7.0(這很重要,非常重要)
如果這一步沒有做的話,直接升級,我敢確定90% 你伺服器就掛了,至於為什麼呢,因為你之前的配置都沒有了唄,而新安裝的php7.1 配置是新的,沒有了各種擴展,你伺服器怎麼跑起來。當然如果你什麼擴充都沒有安裝,恭喜你,你可以不用備份
cp -P /usr/local/php /usr/local/php70
看php7.0的configure
既然升級,當然
configure
只能比以前多而不能少了,如果你忘了以前的configure
(肯定沒人記得),請查看phpinfo
php -i | grep configure
取代一下就可以得到之前的configure
指令
php -i | grep configure | sed -e "s/Configure Command => //; s/'//g"
下載php7.1原始碼
cd /usr/local/src wget -c http://cn2.php.net/get/php-7.1.0.tar.gz/from/this/mirror -O php-7.1.0.tar.gz tar -zxvf php-7.1.0.tar.gz cd php-7.1.0/
開始安裝7.1cd php-7.1.0
./configure --prefix=/usr/local/php --exec-prefix=/usr/local/php --bindir=/usr/local/php/bin --sbindir=/usr/local/php/sbin --includedir=/usr/local/php/include --libdir=/usr/local/php/lib/php --mandir=/usr/local/php/php/man --with-config-file-path=/usr/local/php/etc --with-mhash --with-openssl --with-mcrypt --enable-mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-gd --with-iconv --with-zlib --enable-zip --enable-inline-optimization --enable-shared --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 --enable-opcache --enable-fpm
make
make install
這樣基本上就安裝完成了,簡單吧,是很簡單,但是坑來了
#開始填坑既然是升級,配置當然和以前一樣就好了
cp /usr/local/php70/etc/php.ini /usr/local/php/etc/php.ini cp /usr/local/php70/etc/php-fpm.conf /usr/local/php/etc/php-fpm.conf cp /usr/local/php70/etc/php-fpm.d/www.conf /usr/local/php/etc/php-fpm.d/www.conf
擴展的坑,以前裝了什麼擴展,現在都要重新安裝了,而且
不能在以前的擴充包資料夾下安裝,必須是新的擴充包資料夾,這很重要,不然你一直執行
都有類似下面的問題
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/php7/lib/php/extensions/no-debug-non-zts-20160303/memcached.so' - /usr/local/php7/lib/php/extensions/no-debug-non-zts-20160303/memcached.so: cannot open shared object file: No such file or directory in Unknown on line 0
如果忘記安裝了什麼擴展,看一下擴展目錄有什麼就行了:
[root]$ /usr/local/php/bin/php-config --extension-dir /usr/local/php7/lib/php/extensions/no-debug-non-zts-20160303 [root]$ ls /usr/local/php7/lib/php/extensions/no-debug-non-zts-20160303
其中
opcache.a opcache.so 是自帶的,其他的都是新增的。其他擴充功能怎麼裝,就不告訴你了,如果你其他擴充的很多的話,那恭喜你,你又可以好好練一遍了重新啟動php-fpm
systemctl restart php-fpm