ShallowRiver

Linux下常见的history

字数统计: 156阅读时长: 1 min
2019/09/18 Share

##.bash_history
.bash_history保存了用户使用过的历史命令,查看这个文件可以看到所有曾经所有的操作记录,从而推算出用户都干了什么

##.mysql_history
mysql会给出我们最近执行的SQL命令和脚本;同linux command保存在~/.bash_history一样,你用mysql连接MySQL server的所有操作也会被记录到~/.mysql_history文件中,这样就会有很大的安全风险了,如添加MySQL用户的sql也同样会被明文记录到此文件中。

##.vim_history
记录了使用vim的历史
参考链接:
https://blog.csdn.net/caolaosanahnu/article/details/7601074
https://www.cnblogs.com/milantgh/p/3602206.html

CATALOG