Ubuntu 16.04 安装 php 7 并支持 mysql_connect

前端之家收集整理的这篇文章主要介绍了Ubuntu 16.04 安装 php 7 并支持 mysql_connect前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

修改MysqL配置文件,注释掉 myisam_recover=BACKUP项目

后执行 sudo apt-get install -f

原文链接:https://www.f2er.com/ubuntu/355866.html

猜你在找的Ubuntu相关文章