数据库不能通过navicat连接并且报10038错误

数据库 数据库 1427      收藏
数据库不能通过navicat连接并且报10038错误

自学php博客

登录shell,连接数据库 mysql -uroot -p

输入密码

登录成功之后,执行下面的授权命令即可;

grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;

你想myuser使用mypassword从任何主机连接到mysql服务器的话。

GRANT ALL PRIVILEGES ON *.* TO'myuser'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;

如果你想允许用户myuser从ip为192.168.1.3的主机连接到mysql服务器,并使用mypassword作为密码

GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.1.3' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;

GRANT ALL PRIVILEGES ON *.* TO 'root'@'10.10.40.54' IDENTIFIED BY '123456' WITH GRANT OPTION;

自学php博客