mysql更改root密码及root远程登录

1.更改root密码

1 use mysql;
2 update user set password=password('petecc') where user='root';

2.root远程登录

1 update user set host='%' where host='localhost';
2 flush privileges; 

  

posted @ 2014-08-04 16:12  smstars_test  阅读(243)  评论(0编辑  收藏  举报