无法连接远程MySQL数据库哪,如何解决

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无法连接远程MySQL数据库哪,如何解决相关的知识,希望对你有一定的参考价值。

参考技术A 一、配置mysql允许远程链接
默认情况下,mysql帐号不允许从远程登陆,只能在localhost登录。这里提供了二种方法设置mysql可以通过远程主机进行连接。
1、改表法
在localhost登入mysql后,更改
"mysql"
数据库里的
"user"
表里的
"host"
项,将"localhost"改称"%"
例如:
  #mysql
-u
root
-p
enter
password:
……
mysql>
  mysql>update
user
set
host
=
'%'
where
user
=
'root';
  mysql>select
host,
user
from
user;
2、授权法
例如:
你想myuser使用mypassword(密码)从任何主机连接到mysql服务器的话。
  mysql>grant
all
privileges
on
*.*
to
'myuser'@'%'identified
by
'mypassword'
with
grant
option;
  如果你想允许用户myuser从ip为192.168.1.6的主机连接到mysql服务器,并使用mypassword作为密码
  mysql>grant
all
privileges
on
*.*
to
'myuser'@'192.168.1.3'identified
by
  'mypassword'
with
grant
option;
mysql>flush
privileges
  使修改生效,就可以了。
二、连接远程数据库:
1、显示密码
如:mysql
连接远程数据库(192.168.5.116),端口“3306”,用户名为“root”,密码“123456”
c:/>mysql
-h
192.168.5.116
-p
3306
-u
root
-p123456
2、隐藏密码
如:mysql
连接本地数据库,用户名为“root”,
c:/>mysql
-h
localhost
-u
root
-p
enter
password:

以上是关于无法连接远程MySQL数据库哪,如何解决的主要内容,如果未能解决你的问题,请参考以下文章

Mysql无法远程连接解决方案

navcat无法远程连接mysql数据库解决办法

数据库无法连接如何解决

远程mysql服务器无法连接解决方案

mysql 远程连接超时解决办法

解决远程连接mysql错误1130(转载)