Can't connect to MySQL server on "192.168.137.139' (10013 "Unknown error")
检查Navicat是否联网
Host ‘xxx’ is not allowed to connect to this MySQL server。由于mysql未开启mysql远程访问权限导致。
use mysql;
update user sethost='%' where user ='root';
flush privileges;
Authentication plugin 'caching sha2 password' cannot be loaded:需要设置远程登录用户的密码鉴定为mysql_native_password
# 修改密码
use mysql;select user,host,plugin from user;# 如果登录账户的plugin是caching_sha2_password就需要执行以下命令
ALTER USER'root'@'%' IDENTIFIED WITH mysql_native_password BY 'yourpwd';#yourpwd 改成你的密码
flush privileges;
问题
在Qt项目中,设计师界面,对某一控件进行提升,设置完“提升的类名称”、“头文件”、全局包含后,构建时,报“no such file or directory”错误,但文件命名存在呀。
解决
根据问题就应该明白…