如何清除mongodb shell中的命令历史记录

时间:2011-01-26 19:08:30

标签: mongodb

是否有命令从“mongo”shell中清除历史记录?

4 个答案:

答案 0 :(得分:24)

主文件夹中应该有一个名为.dbshel​​l的文件。只需将其删除即可。

答案 1 :(得分:2)

您可以通过Ctrl + L

清除shell上的内容

答案 2 :(得分:0)

MongoDB终端历史记录存储在~/.dbshell文件中。只需清空.dbshell文件

即可
 $ > ~/.dbshell
  

早于2.2.0的Windows mongo.exe版本会将.dbshel​​l文件保存在mongo.exe工作目录中。

答案 3 :(得分:0)

命令历史记录存储在 ~/.dbshell 文件中。

例如,在类似Unix的系统上:

# Ensure an empty history file
echo "" > ~/.dbshell

# Remove rwx access to the history file
chmod 0 ~/.dbshell