摘要:
sudo apt-get install php7.2-mysql //版本号肯能不一样 sudo dpkg-reconfigure php7.2-mysql sudo /etc/init.d/mysql restart sudo /etc/init.d/apache2 restart 阅读全文
摘要:
原因:修改数据库账号时删除了默认的localhost root, 新建了% root 但没有赋予全部权限; 解决方法: 1.关闭数据库# mysqld stop 2.在my.cnf里加入skip-grant-tables 3.停止服务器进程 //没有找到停止的方法用ps -ef | grep mys 阅读全文
摘要:
重启mysql服务器后报:ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) 原因my.cnf配置文件加了 socket = /usr/local/mysql/mys 阅读全文