标题: 连接MySQL报错,is not allowed to connect to this MySQL server [打印本页] 作者: 宝塔山 时间: 2024-10-10 22:15 标题: 连接MySQL报错,is not allowed to connect to this MySQL server
题目描述:
本机装的MySQL数据库,本机可以正常连接,其他呆板访问报错,is not allowed to connect to this MySQL server,防火墙等其他策略均设置没题目。
1。 改表法。可能是你的帐号不答应从远程登陆,只能在localhost。这个时间只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%"
Sql代码 复制代码
1. mysql -u root -pvmwaremysql>use mysql;
2. mysql>update user set host = '%' where user = 'root';
3. mysql>select host, user from user;
2. 授权法。例如,你想myuser使用mypassword从任何主机连接到mysql服务器的话。
Sql代码 复制代码
1. GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword' WITH
GRANT OPTION;
2.FLUSH PRIVILEGES;