码迷,mamicode.com
首页 > 数据库 > 详细

centos 操作系统 mysql5.7 配置远程登陆操作

时间:2017-05-11 13:27:08      阅读:255      评论:0      收藏:0      [点我收藏+]

标签: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

 

 

centos 操作系统 mysql5.7 配置远程登陆操作

标签:mysql5.7   报错   重要   ccf   global   操作系统   tables   文章   安全   

原文地址:http://www.cnblogs.com/hanlong/p/6840450.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!