1、Navicat 连接数据库间歇性自动断开处理
2、Navicat连接MySQL Server8.0版本时出现Client does not support authentication
命令如下:
1、use mysql;
2、alter user 'root'@'localhost' identified with mysql_native_password by '********';
3、flush privileges;
3、远程连接报错:1130-host ... is not allowed to connect to this MySql server
可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%"
mysql>select host, user from user;
mysql -u root -pvmwaremysql>use mysql;
mysql>update user set host = '%' where user = 'root';
mysql>select host, user from user;
4、MySQL Installer is running in Community mode 的解决办法
这个是新版本MySQL服务自带的一个定时任务,每天23:59:59执行的任务,我们只需要在本地系统的“任务计划程序”中将这个定时任务干掉就OK了。
开始 -> 在 “ 搜索程序和文件 ” 框中,输入 “ 任务 ” 然后回车,然后选择 “ 任务计划程序 ”。打开 任务计划程序 Dialog后,在 计划程序库中找到 MySQL,在这儿就可以看到,MySQL的定时任务了,在右下角工具栏中选择 “ 禁用 ” 该任务计划即可