新安装mysql第三方工具连接不上问题_MySQL
程序员文章站
2022-05-14 10:47:18
...
Mysql从客户端连接服务器连不上的问题
公司要用Mysql做一个测试,开始在自己的本地建一个Mysql数据库自己本地的程序再连上去,没有遇到过连接不上的问题。
这次数据库在服务器上,从本地客户端连接就是被拒绝。
报的错误为 ERROR 1130: Host ’192.168.5.3’ is not allowed to connect to this MySQL server www.bitsCN.com 查过资料后发现这个问题,一般都会遇到,Mysql数据库跟其他数据库不一样,需要设置权限可以控制哪台机器能访问数据库,能访问哪些表。 所以就要登上服务器。 C:\Documents and Settings\Administrator>mysql -h localhost -u root -p Enter password: *** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 5 Server version: 5.1.43-community MySQL Community Server (GPL) Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. www.bitsCN.com mysql> grant all privileges on *.* to root@'%' identified by '123' with grant -> option; Query OK, 0 rows affected (0.00 sec) 意思就是将服务器上的所有资源都给root用户权限,%代表来自不同的IP 这里需要注意一下要把密码也要带上。通过密码123登录。 mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) 最后要刷新下权限。 这样就从本地192.168.5.3这个IP的客户端连接到服务器上了
这次数据库在服务器上,从本地客户端连接就是被拒绝。
报的错误为 ERROR 1130: Host ’192.168.5.3’ is not allowed to connect to this MySQL server www.bitsCN.com 查过资料后发现这个问题,一般都会遇到,Mysql数据库跟其他数据库不一样,需要设置权限可以控制哪台机器能访问数据库,能访问哪些表。 所以就要登上服务器。 C:\Documents and Settings\Administrator>mysql -h localhost -u root -p Enter password: *** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 5 Server version: 5.1.43-community MySQL Community Server (GPL) Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. www.bitsCN.com mysql> grant all privileges on *.* to root@'%' identified by '123' with grant -> option; Query OK, 0 rows affected (0.00 sec) 意思就是将服务器上的所有资源都给root用户权限,%代表来自不同的IP 这里需要注意一下要把密码也要带上。通过密码123登录。 mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) 最后要刷新下权限。 这样就从本地192.168.5.3这个IP的客户端连接到服务器上了
推荐阅读
-
MAC下MYSQL5.7.17连接不上的问题及解决办法
-
MAC下MYSQL5.7.17连接不上的问题及解决办法
-
远程连接mysql时连接不上并且报错(问题解决)
-
win7系统安装2个mysql版本后连接不上数据库的问题如何解决?
-
Python安装第三方包(模块/工具)出现链接超时,网速慢,安装不上的问题如何解决
-
新安装mysql 第三方工具连接不上问题
-
#1045无法登录phpmyadmin,连接不上mysql服务器,先把ubuntu安装
-
解决MySQL远程连接不上的问题
-
#1045无法登录phpmyadmin,连接不上mysql服务器,先把ubuntu安装
-
远程连接mysql时连接不上并且报错(问题解决)