Home > Database > Mysql Tutorial > is not allowed to connect to this MySQL server解决方法

is not allowed to connect to this MySQL server解决方法

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 16:27:09
Original
2718 people have browsed it

is not allowed to connect to this MySQL server解决办法 问题解决方法: 首先使用update把mysql.user中的root的host从localhost修改成%: mysqlUPDATE?mysql.user?SET?Host='%'?WHERE?Host='localhost'?; mysql?GRANT?ALL?PRIVILEGES?ON?*.*?TO?root@"%"; m

is not allowed to connect to this MySQL server解决办法

问题解决方法:

首先使用update把mysql.user中的root的host从localhost修改成%:
mysql>UPDATE?mysql.user?SET?Host='%'?WHERE?Host='localhost'?;
mysql>?GRANT?ALL?PRIVILEGES?ON?*.*?TO?root@"%";
mysql>;FLUSH?PRIVILEGES?;?

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Not shown
From 1970-01-01 08:00:00
0
0
0
Why not float?
From 1970-01-01 08:00:00
0
0
0
command not found
From 1970-01-01 08:00:00
0
0
0
Why does the model not converge?
From 1970-01-01 08:00:00
0
0
0
Installation view not found
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template