标签:mysql5.7 报错 重要 ccf global 操作系统 tables 文章 安全
centos 操作系统: mysql5.7 配置远程登陆操作:
首先登陆服务器,进入数据库:
mysql -u root -p
show databases;
use mysql;
show tables;
#Field ‘ssl_cipher‘ doesn‘t have a default value ;
创建用户时候报错:
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
解决办法:
//设置安全级别
set global validate_password_policy=0;
//设置最小长度
set global validate_password_length=4;
#desc user;
create user yang IDENTIFIED by ‘123456‘;
select User ,authentication_string,Host from user;
重要步骤:
grant all privileges on *.* to ‘yang‘@‘%‘ with grant option;
flush privileges;
参考文章:
http://www.cnblogs.com/yoursoul/p/6264059.html
标签:mysql5.7 报错 重要 ccf global 操作系统 tables 文章 安全
原文地址:http://www.cnblogs.com/hanlong/p/6840450.html