【前提】
使用Navicat连接服务器的mariadb/mysql时报错 access denied for user [email protected](using password:yes)
【原因】
mariadb/mysql没有提供root权限给除了localhost以外的主机进行访问
【解决】
#进入mariadb/mysql #此步骤设置了以root用户访问的任何IP都以‘root‘作为密码 > GRANT ALL PRIVILEGES ON *.* TO‘root‘@‘%‘ IDENTIFIED BY ‘root‘ WITH GRANT OPTION; > flush privileges;
原文地址:https://www.cnblogs.com/frankielf0921/p/8440874.html
时间: 2024-11-10 14:49:57