mysql命令整理
Posted Agent-C
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql命令整理相关的知识,希望对你有一定的参考价值。
1.连接mysql
mysql -h localhost -u root -p
2.解决一个问题 your password dose not satisfy the current policy requirement.
查看初始密码策略
show variables like ‘validate_password%’;
密码policy 级别设置
set gloabl validate_password_policy=LOW;
密码长度设置
set global validate_password_length=6;
3.创建新用户为mysql
create user ‘cbuser’@‘localhost’ identified by ‘cbpass’
4.给用户授权
grant all on cookbook.* to ‘cbuser’@‘localhost’;
以上是关于mysql命令整理的主要内容,如果未能解决你的问题,请参考以下文章