想要启动mongodb,但遇到这种错误'mongo'不被识别为内部或外部命令,可操作程序或批处理文件'



我正在尝试启动mongo在cmd:

C:UsersVishal Bramhankar>mongo
'mongo' is not recognized as an internal or external command,
operable program or batch file.

我错过了什么?

在MongoDB 6.0版本之后,我们需要单独安装MongoDB Shell。

  1. 在环境变量中配置下面的路径

    C:Program Filesmongosh-1.6.1-win32-x64bin

  2. 关闭cmd并再次打开新的cmd并运行以下命令:

    C:UsersVishal Bramhankar>mongosh

  3. 在下面运行以了解db:

    test> shows dbs


MongoDB shell安装:

  • https://www.mongodb.com/try/download/shell

相关内容

  • 没有找到相关文章

最新更新