自学内容网 自学内容网

mysql等保数据库命令

mysql数据库命令
默认安装位置:C:\Program Files\MySQL\MySQL Server 8.0\bin
select version() from dual;

desc mysql.user;  查看表中有哪些列

1、SELECT user, host, authentication_string, account_locked ,password_lifetime FROM mysql.user;  查询用户表

4、show variables like '%validate%';  用户口令复杂度

     show variables like '%password%';  用户口令复杂度

5、show variables like '%timeout%'; 一个连接空闲超过多少秒就断开。

6、show variables like '%connection_control%';  登录失败处理  
     show plugins;

7、show variables like '%ssl%' ;是否激活ssl

     show global variables like "require_secure_transport";

8、show grants for  'root'@'localhost'; 查看root 分配的权限。

10、show variables like '%log_bin%' ; 查看输出的日志内容
       show variables like ‘%log_output%’;   以什么形式存储日志。
       show variables like '%general_log%' ;           
       show variables like '%logs_days%';           
11、ll日志文件 / 右键-属性-安全
询问备份情况,查看数据库中的数据是否采取加密和完整性校验,询问加密方式


原文地址:https://blog.csdn.net/qq_48257021/article/details/142378264

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!