作者:佚名 时间:2024-06-04 12:17:10 阅读:(33)
最近命令行登录服务器mysql,发现里面保留了很多的执行记录,接下来云梦编程为大家介绍一下linux服务器清空MySQL的history历史记录的方法,有需要的小伙伴可以参考一下:
mysql的历史命令记录存储于当前用户下的隐藏文件.mysql_history中,我们可以通过命令查看文件中的内容:
[root@localhost ~]# cat ~/.mysql_history _HiStOrY_V2_ use\040new_yundreams showtables; showtable; show\040table; show\040tables; select\040count(term_ID)\040as\040num\040from\040web_search_terms; show\040tables; use\040new_yundreams SELECT\040count(term_ID)\040as\040num\040FROM\040web_search_terms\040where\040url\040is\040\040\040null\040; exit; use\040new_yundreams 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_yundreams alter\040table\040web_lkeyw\040engine=innodb;
>~/.mysql_history
使用上面的命令,即可清空文件内容
[root@localhost ~]# cat ~/.mysql_history
发现输出的文件内容是空的,表明内容清除成功了
以上就是云梦编程为大家介绍的关于linux服务器清空MySQL的history历史记录,了解更多相关文章请关注云梦编程网!