Ubuntu 16.04 PHP 7.2安裝筆記

把Ubuntu 16.04 上面預裝的 PHP 7.0 升級成 PHP 7.2筆記

由於我是使用nginx,所以先執行

先升級nginx
add-apt-repository ppa:ondrej/nginx
apt update
apt dist-upgrade
升級完後 nginx version: nginx/1.14.0

接著升級php
add-apt-repository ppa:ondrej/php
apt update
apt dist-upgrade

接下來調整 nginx conf檔
# PHP 7 socket location.
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;

改完後在重啟設定即可
/etc/init.d/nginx restart
/etc/init.d/php7.2-fpm restart



備註:裝完後我發現php版本可以共存
使用php7.2在nginx conf設定:fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
使用php7.0在nginx conf設定:fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
php7.0-xxx的程式記得不要移除

日期:2018.07.24

留言

熱門文章