Ubuntu 16.04 安装 PHP 7 并支持 MysqL_connect
sudo apt-get install PHP7.0 PHP7-MysqL
因为我原有机器上有MysqL 5.5,PHP7 要求MysqL 5.7,会自动升级,但升级脚本有问题,后处理时会告成中断,需要修改几处配置文件
/etc/systemd/system/MysqL.servcie
原来的
ExecStop=/usr/bin/MysqLadmin --default-file=/etc/MysqL/debian.cnf shutdown
要改成
ExecStop=/usr/bin/MysqLadmin --defaults-file=/etc/MysqL/debian.cnf shutdown
修改/etc/MysqL/debian.cnf 文件的权限
sudo chmod +r /etc/MysqL/debian.cnf