摘要:问题一、 is not allowed to connect to this mysql server 原因:修改帐号不允许从远程登陆。 解决:登入MySQL后,更改 "mysql" 数据库的 "user" 表的 "host"项,从"localhost"改称"%" ① mysql -u root -
阅读全文
摘要:1、登录MySQL mysql -uroot -p 2、进入 名为"mysql"的数据库 use mysql 3、修改user表的host update user set host = '%' where user = 'root'; select host, user from user; 4、刷
阅读全文