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

服务器mysql允许远程连接

时间:2016-12-20 23:52:27      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:操作   关闭   sql   cal   命令   mysql   允许   参考   通过   

首先登录: mysql -u root -h localhost -p

use mysql                #打开mysql数据库

 

#将host设置为%表示任何ip都能连接mysql,当然您也可以将host指定为某个ip

     update user set host=‘%‘ where user=‘root‘ and host=‘localhost‘;

     flush privileges;        #刷新权限表,使配置生效

     然后我们就能远程连接我们的mysql了。

3、如果您想关闭远程连接,恢复mysql的默认设置(只能本地连接),您可以通过以下步骤操作:

     use mysql                #打开mysql数据库

     #将host设置为localhost表示只能本地连接mysql

     update user set host=‘localhost‘ where user=‘root‘;

     flush privileges;        #刷新权限表,使配置生效

备注:您也可以添加一个用户名为yuancheng,密码为123456,权限为%(表示任意ip都能连接)的远程连接用户。命令参考如下:

     grant all on *.* to ‘yuancheng‘@‘%‘ identified by ‘123456‘;

     flush privileges;

服务器mysql允许远程连接

标签:操作   关闭   sql   cal   命令   mysql   允许   参考   通过   

原文地址:http://www.cnblogs.com/hellodemo/p/6204695.html

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