
MYSQL
zyupupup
一入前端深似海,从此后端为路人
展开
-
mysql8.0 Authentication plugin 'caching_sha2_password' cannot be loaded
由于mysql8.0版本,而我的navicat版本是中文破解版,版本过低识别不了caching_sha2_password密码格式。解决方案:进入mysql客户端:需输入数据库root密码 ,然后输入下列命令:alter user 'root'@'localhost' identified with mysql_native_password by 'xxxx'; 有...原创 2018-12-03 15:55:07 · 1262 阅读 · 0 评论 -
阿里云轻量级服务器中mysql所能遇到的一些命令及问题
0. 开启和关闭service mysql startservice mysql stopservice mysql restart(重启)用systemctl命令管理mysql启动mysql服务: systemctl start mysqld.service停止mysql服务: systemctl stop mysqld.service重启mysql服务: sy...原创 2019-01-04 11:10:06 · 900 阅读 · 0 评论 -
navicat远程连接Mysql数据库--阿里云服务器
问题:navicat出现远程连接数据库出现的错误代码是1130,ERROR 1130: Host X.X.X.X is not allowed to connect to this MySQL server解决办法:在服务器登入mysql后,更改mysql数据库里的user表里的host项,从localhost改称%命令:use mysql;grant all privileges ...原创 2019-01-04 16:08:19 · 335 阅读 · 0 评论