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

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

WBOY
WBOYOriginal
2016-06-07 16:27:092626browse

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?;?

Statement:
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