Mysql错误提示 is not allowed to connect to this MySQL server
发布:smiling 来源: PHP粉丝网 添加日期:2015-04-18 15:52:26 浏览: 评论:0
如果我们mysql提示s not allowed to connect to this MySQL server错误意思是数据库没有连接权限了,只需要把权限设置一下就可以解决了.
如果你想连接你的mysql的时候发生这个错误:
ERROR 1130: Host ‘192.168.33.60’ is not allowed to connect to this MySQL server
解决方法:
1,改表法,可能是你的帐号不允许从远程登陆,只能在localhost,这个时候只要在localhost的那台电脑,登入mysql后,更改 “mysql” 数据库里的 “user” 表里的 “host” 项,从”localhost”改称”%”,代码如下:
- mysql -u root -pvmware
- mysql>use mysql;
- mysql>update user set host = ‘%’ where user = ‘root';
- mysql>select host, user from user; --phpfensi.com
2.授权法,例如,你想myuser使用mypassword从任何主机连接到mysql服务器的话,代码如下:
GRANT ALL PRIVILEGES ON *.* TO ‘myuser’@’%’ IDENTIFIED BY ‘mypassword’ WITH GRANT OPTION;
如果你想允许用户myuser从ip为192.168.33.60的主机连接到mysql服务器,并使用mypassword作为密码,代码如下:
- GRANT ALL PRIVILEGES ON *.* TO ‘root’@’192.168.33.60′ IDENTIFIED BY ‘mypassword’ WITH GRANT OPTION;
- GRANT ALL PRIVILEGES ON *.* TO ‘root’@’192.168.33.61′ IDENTIFIED BY ‘123456’ WITH GRANT OPTION;
Tags: allowed connect server
相关文章
- ·mysql优化配置之max_allowed_packet设置(2014-09-24)
- ·mysql max_allowed_packet 查询和修改问题(2014-10-05)
- ·mysql远程连接 Host * is not allowed to connect to this MySQL server(2014-10-09)
- ·is not allowed to connect to this MySQL server解决办法(2014-10-14)
- ·Mysql中max_allowed_packet限制导致主从同步出错(2015-04-17)
- ·MYSQL提示 max_open_files: 2048 max_connections: 800 table_cache: 619(2014-09-23)
- ·Mysql出现Can’t connect to MySQL server on ‘localhost’ (10061)问题(2014-09-23)
- ·Mysql "Too many connections"错误解决办法(2014-09-24)
- ·解决MySql Error:Host is blocked because of many connection errors问题(2014-09-24)
- ·Can t connect to mysql server on localhost (10061) 错误(2014-09-24)
- ·Warning:mysql_connect() [function.mysql-connect]: [2002] 由于目标机器.(2014-09-25)
- ·ERROR 1040: Too many connections问题解决办法(2014-09-28)
- ·Cant Connect MySQL Server(localhost:3306)问题(2014-09-28)
- ·MySql Lost connection to MySQL server during query问题(2014-09-28)
- ·mysql ERROR 1040: Too many connections(2014-10-02)
- ·MySQL连接too many connection错误并且启动时间特别长(2014-10-04)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)