第一种方法: 第一步: 先看报错窗口 2003 can't connect to MySQL server on '127.0.0.1'(10038).第二步: 原因是:远程3306端口未对外开放操作。第三步: 首先远程连接服务器,点击"开始"--> "管理工具 ...
授权 youpassword修改为你的密码 本机登陆mysql: :mysql u root p 改变数据库: mysql gt use mysql 从所有主机: mysql gt grant all privileges on . to root identified by youpassword with grant option mysql gt flush privileges 修改 e ...
2019-06-04 16:16 0 598 推荐指数:
第一种方法: 第一步: 先看报错窗口 2003 can't connect to MySQL server on '127.0.0.1'(10038).第二步: 原因是:远程3306端口未对外开放操作。第三步: 首先远程连接服务器,点击"开始"--> "管理工具 ...
mysql远程连接错误10038--navicat for mysql (10038) 转载:http://blog.csdn.net/chana1101/article/details/39641415 http://www.cnblogs.com ...
' with grant option; mysql>flush privileges; 以上是本人的解 ...
1、授权 mysql>grant all privileges on *.* to 'root'@'%' identified by 'youpassword' with grant option; mysql>flush privileges ...
#################################################### #################################### ...
centos7 安装完mysql后想使用远程连接mysql进行管理,但是并没有那么简单 cant connect to mysql server on 10038 对没错,肯定会出现这样那样的问题,解决方案 首先 设置远程访问权限 在mysql中执行语句 *.* 允许远程访问 ...
使用navicat连接mysql报10038错时解决方法: 1.mysql 赋予root权限(进入mysql数据库执行) GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '密码 WITH GRANT ...
问题: 安装完mysql,添加完远程用户并赋予权限后,使用Navicat工具远程连接时报错误提示 解决方法: 1、检查端口53309是否填写错误,要与my.cnf中的端口保持一致----发现保持一致 2、检查登录用户('root'@'%')的密码是否填写 ...