最近登录服务器的mysql,发现里面保留了很多的执行记录,接下来为大家介绍一下linux服务器清空MySQL的history历史记录的方法,有需要的小伙伴可以参考一下:

1、存放目录:

mysql的历史命令记录存储于当前用户下的隐藏文件.mysql_history中,我们可以通过命令查看文件中的内容:

[[email protected] ~]# cat ~/.mysql_history
_HiStOrY_V2_
use\040new_itbiancheng
showtables;
showtable;
show\040table;
show\040tables;
select\040count(term_ID)\040as\040num\040from\040web_search_terms;
show\040tables;
use\040new_itbiancheng
SELECT\040count(term_ID)\040as\040num\040FROM\040web_search_terms\040where\040url\040is\040\040\040null\040;
exit;
use\040new_itbiancheng
insert\040into\040web_search_terms1\040select\040*\040from\040web_search_terms;
DELETE\040FROM\040`web_search_terms`\040where\040url\040is\040not\040null;
exit;
use\040new_itbiancheng
alter\040table\040web_lkeyw\040engine=innodb;

2、清空文件内容:>~/.mysql_history

使用上面的命令,即可清空文件内容

3、验证:[[email protected] ~]# cat ~/.mysql_history

发现输出的文件内容是空的,表明内容清除成功了