本文共 1432 字,大约阅读时间需要 4 分钟。
mysql> mysql>use mysql; mysql>select 'host' from user where user='root'; #查看mysql库中的user表的host值(即可进行连接访问的主机/IP名称) mysql>update user set host = '%' where user ='root'; #修改host值(以通配符%的内容增加主机/IP地址,当然也可以直接增加某个特定IP地址,如果执行update语句时出现ERROR 1062 (23000): Duplicate entry '%-root' for key 'PRIMARY' 错误,需要select host from user where user = 'root'; |
mysql>flush privileges; mysql>select host,user from user where user='root'; mysql>quit |
转载地址:http://fawno.baihongyu.com/