Heim >Datenbank >MySQL-Tutorial >解决root用户远程访问MYSQL有关问题

解决root用户远程访问MYSQL有关问题

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 16:27:17866Durchsuche

解决root用户远程访问MYSQL问题 SQL Error (1130): Host '10.16.1.50' is not allowed to connect to this MySQL server 说明所连接的用户帐号没有远程连接的权限,只能在本机(localhost)登录。 需更改 mysql 数据库里的 user表里的 host项 把localhost改称%

解决root用户远程访问MYSQL问题

SQL Error (1130): Host '10.16.1.50' is not allowed to connect to this MySQL server

说明所连接的用户帐号没有远程连接的权限,只能在本机(localhost)登录。

需更改 mysql 数据库里的 user表里的 host项

把localhost改称%

首先按下面的步骤登录Mysql服务器

登录mysql需要切换到dos下的mysql的bin目录,进行如下操作:

mysql>use mysql;

?

?

mysql>update user set host = '%' ?where user ='root';

?

?

mysql>flush privileges;

?

?

mysql>select 'host','user' from user where user='root';

?

?

mysql>quit

?

?

源:http://blog.csdn.net/xianyao_shi/article/details/7190877

?

http://blog.csdn.net/tys1986blueboy/article/details/7056835

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