在mongo shell中是否有清除历史记录的命令?
66bbxpm51#
您的主文件夹中应该有一个名为.dbshell的文件。删了吧
am46iovg2#
MongoDB终端历史存储在~/.dbshell文件中。只需清空.dbshell文件
~/.dbshell
.dbshell
$ > ~/.dbshell
字符串早于2.2.0版本的Windows mongo.exe将.dbshell文件保存在mongo.exe工作目录中。
68de4m5k3#
您可以通过Ctrl + L清除shell上的内容
vmdwslir4#
命令历史记录保存在**~/.dbshell**文件中。例如,在类Unix系统上:
# Ensure an empty history file echo "" > ~/.dbshell # Remove rwx access to the history file chmod 0 ~/.dbshell
字符串
fykwrbwg5#
如果您将MongoDBShell作为一个独立的包使用,您将在~/.dbshell中找到shell历史文件如果您使用的是MongoDB Compass中的嵌入式MongoDB Shell,您将在~/.config/MongoDB Compass/MongoDB Compass/shell-history.json中找到shell历史文件清空历史档案就行了
~/.config/MongoDB Compass/MongoDB Compass/shell-history.json
ndasle7k6#
运行:
sudo rm ~/.mongodb/mongosh/mongosh_repl_history
字符串完成后,所有的历史记录都将从MongoDB Shell中删除。
6条答案
按热度按时间66bbxpm51#
您的主文件夹中应该有一个名为.dbshell的文件。删了吧
am46iovg2#
MongoDB终端历史存储在
~/.dbshell
文件中。只需清空.dbshell
文件字符串
早于2.2.0版本的Windows mongo.exe将.dbshell文件保存在mongo.exe工作目录中。
68de4m5k3#
您可以通过Ctrl + L清除shell上的内容
vmdwslir4#
命令历史记录保存在**~/.dbshell**文件中。
例如,在类Unix系统上:
字符串
fykwrbwg5#
如果您将MongoDBShell作为一个独立的包使用,您将在
~/.dbshell
中找到shell历史文件如果您使用的是MongoDB Compass中的嵌入式MongoDB Shell,您将在
~/.config/MongoDB Compass/MongoDB Compass/shell-history.json
中找到shell历史文件清空历史档案就行了
ndasle7k6#
运行:
字符串
完成后,所有的历史记录都将从MongoDB Shell中删除。