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

解决不能访问远程mysql的问题

时间:2016-09-10 00:04:18      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

一般是没有给用户访问权限

给用户test_user授权,让他可以从外部登陆和本地登陆
注意:@左边是用户名,右边是域名、IP和%,表示可以访问mysql的域名和IP,%表示外部任何地址都能访问。

 
mysql> grant all privileges on *.* to ‘test_user‘@‘localhost‘ identified by ‘test_user‘;  
Query OK, 0 rows affected (0.00 sec)  
mysql> grant all privileges on *.* to ‘test_user‘@‘%‘ identified by ‘test_user‘;  
Query OK, 0 rows affected (0.00 sec)  
mysql> select user,host,password from mysql.user;  

解决不能访问远程mysql的问题

标签:

原文地址:http://www.cnblogs.com/yansum/p/5858182.html

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