
MySQL
文章平均质量分 80
panliuwen
本人软件工程师
展开
-
mysql5.7安装和使用--CentOS操作系统
1、如果之前有安装过MySQL,那就先要卸载。 (0)停止MySQL服务 [root@localhost ~]# service mysqld stop (1)移除安装MySQL安装包 [root@localhost ~]# yum remove mysql*; (2)找到MySQL文件夹 [root@localhost ~]# find / -name mysql (3)原创 2016-09-04 23:06:12 · 631 阅读 · 0 评论 -
mysql5.7忘记root密码解决办法
mysql5.7用户root密码忘记了,怎么办呢?我的操作方法是我的实战经历,是操作后行之有效的,现在写出来,分享给大家。 1、问题描述 有一段时间没有用过mysql了,很想登录进入,使用命令: mysql -u root -p 输入密码之后,提示如下的错误: ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (us原创 2016-11-23 22:23:11 · 812 阅读 · 0 评论 -
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
MySQL5.7在添加用户的时候提示错误: ERROR 1819 (HY000): Your password does not satisfy the current policy requirementsmysql> create user 'abuser'@'localhost' identified by 'abuser'; ERROR 1819 (HY000): Your passwor原创 2016-11-24 21:35:37 · 977 阅读 · 0 评论