1.mysql -uroot -p
2.输入密码:
3.update mysql.user set authentication_string=password('123456') where user='oneuser' and Host = '%';
4.grant all privileges on onetable.* to oneuser@'%' identified by '123456';
5.flush privileges;
然后外部连接数据库。
本文转自phpervip 51CTO博客,原文链接:http://blog.51cto.com/phpervip/1939902,如需转载请自行联系原作者