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

Linux Mysql 1130错误解决

时间:2014-05-26 02:00:26      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:style   class   c   code   tar   http   

 
今天在win32下通过navicat 远程登录Mysql时出现如下错误:
 
bubuko.com,布布扣
 
想都不用想,肯定是Mysql的访问权限问题。
 
首先,通过终端(我用的是SSH)远程登录到Linux服务器,为了安全起见,先改一下Mysql数据的root用户密码:
 
1
2
3
4
5
6
7
8
9
10
11
[plain] 
[hadoop@h1 ~]$ mysqladmin -u root password 123456  
[hadoop@h1 ~]$ mysql -uroot -p  
Enter password:  
Welcome to the MySQL monitor.  Commands end with ; or \g.  
Your MySQL connection id is 13  
Server version: 5.0.77 Source distribution  
    
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the buffer.  
    
mysql>
  
第二步,查询Mysql中所有用户的权限:
 
bubuko.com,布布扣
 
意料之中,mysql的root用户只能通过本机访问,下面我们来改一下权限:
 
1
2
3
[plain] 
mysql> update `user` set `host` = ‘%‘ where `user` = ‘root‘;  
mysql> flush privileges;

 

 
测试一下,如图:
 
bubuko.com,布布扣
 
操作成功,现在,你可以通过终端远程管理mysql数据库了。
 

Linux Mysql 1130错误解决,布布扣,bubuko.com

Linux Mysql 1130错误解决

标签:style   class   c   code   tar   http   

原文地址:http://www.cnblogs.com/bluedy1229/p/3749613.html

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