当前位置:   article > 正文

基线核查---MySQL_mysql 检查是否禁止使用旧密码

mysql 检查是否禁止使用旧密码

基线核查之MySQL

1.检查是否修改默认账户与口令
使用sql语句: Linux:select user from mysql.user where user="root";
  select password from mysql.user where user="root";
  Windows: select user from mysql.user where user="root";    
  select authentication_string from mysql.user where user="root";
  查看数据库账号密码情况
参考配置:mysql的默认用户是root,密码为安装时设定,默认为空
    将用户名为root改为xxx:>update user set user="xxx" where user="root";
    刷新权限:>flush privileges;
    改密码:mysqladmin -u 用户名 -p password  新密码

2.禁止账户共用
使用sql语句:select count(*) from mysql.user where User!='root' and User!='' and Password!='' 查看账号密码不为空的用户
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/928230
推荐阅读
相关标签
  

闽ICP备14008679号