Heim >Datenbank >MySQL-Tutorial >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:092693Durchsuche

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

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn