Home > Database > Mysql Tutorial > linux服务器清空MySQL的history历史记录 删除mysql操作记录_MySQL

linux服务器清空MySQL的history历史记录 删除mysql操作记录_MySQL

WBOY
Release: 2016-05-27 14:12:05
Original
1507 people have browsed it

bitsCN.com

1. 不再保存历史记录或者减少历史记录保存数量

修改/etc/profile将HISTSIZE=1000 改成 0 或 要保留的数量
清除用户home路径下的 .bash_history


echo '' > /home/user/.bash_history

2. 立即清空里的history当前历史命令的记录


history -c

当然,如果你想要当前执行的命令立即写入到history里面的话,可以执行


history -w

否则就只能等到退出bash的时候才会写入了。因为在bash使用期间,这些是保存在当前的buffer里面的。

如果你是MySQL用户,那么在用户目录下就会有一个 .mysql_history 的文件,保存了在 mysql 命令行下执行的SQL语句。清空使用


echo '' > /home/user/.mysql_history

bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template