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

开启mysql远程连接

时间:2015-02-04 18:35:57      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

mysql默认只允许本地连接,也就是说,在安装完mysql后会存在两个root账户,他们的host分别是localhost和127.0.0.1
use mysql;
update user set host=‘%‘ where user=‘root‘
flush privileges;
这样的就可以了

然后再对表给予相应的操作
grant 权限 on 数据库.* to 用户名@登录主机 identified by "密码"; 
例如:
grant all privileges on testDB.* to root@***-vuldb.localhost identified by ‘1234‘;

开启mysql远程连接

标签:

原文地址:http://www.cnblogs.com/longzhongren/p/4272836.html

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