美文网首页
mac上如快速安装mongo shell

mac上如快速安装mongo shell

作者: 吧啦啦小汤圆 | 来源:发表于2017-12-26 00:04 被阅读136次

    如何向mongo中插入批量数据,下载了一个工具,真的式很难用的,插如数据还是一个字段一个字段的插入,那简直会疯掉的。
    mac一键命令行安装mongo shell:

    $ brew install mongodb
    $ tar -zxvf mongodb-osx-ssl-x86_64-3.6.0.tgz
    

    然后进入mongo的docker容器中就可以直接执行如下启动mongo shell 服务:

    $ mongo 
    

    可以进入mongo shell

    进入mongo shell后,查看collections时,一般会提示没有权限,可以这样做:

    $ use databaseName ; // 首先进入database;
    $ db.auth(“databaseName“,”password”);   // 其实这里的databaseName其实就是Schema的名字
    $ show collections;  // 成功了
    
    $ db.collectionName.find().pretty() ;   // 格式化输出结果
    $ db.collectionName.find().count() ;  // 表中的数据 条数
    

    相关文章

      网友评论

          本文标题:mac上如快速安装mongo shell

          本文链接:https://www.haomeiwen.com/subject/wbnrgxtx.html