码迷,mamicode.com
首页 > 数据库 > 详细

远程连接mysql

时间:2016-10-07 13:42:02      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

win系统下,连接别人的mysql或者让别人链接自己的mysql:

打开命令行cmd

进入mysql:

mysql -u root -p

mysql>use mysql;  
mysql>select host from user where user=‘root‘;  
mysql>GRANT ALL PRIVILEGES ON *.* TO root@‘%‘ IDENTIFIED BY ‘0000‘; (这个是别人连接你的mysql的密码,我写的是0000)
mysql>flush privileges;  
mysql>select host from user where user=‘root‘; 

 

然后就可以连接了

用SQLyog这个软件来说

 技术分享

 

点击连接就行了

远程连接mysql

标签:

原文地址:http://www.cnblogs.com/lurensang/p/5935660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!