mysql 8.0以上版本添加用户并授权 执行如下命令: grant all privileges on *.* to \'root\'@\'%\' identified by \'123456\' with grant option 报错: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for MySQL 小马同学 2020-07-28 19 热度 0评论
Ubuntu MySql连接错误码10060/10061的排查及解决方法 错误码10060一般是因为防火墙: ufw allow 3306; //允许外部访问3306端口 ufw allow from 192.168.5.38; //允许此IP访问所有的本机端口 ufw status; //查看防火墙状态 ufw disable/enable; //关闭或打开防火墙 没装 ufw 就执行安装既可:apt-get install ufw; 错误码10061错误为配置原因: MySQL 小马同学 2020-07-28 32 热度 0评论