码迷,mamicode.com
首页 > 数据库 > 详细

shell操作mongodb

时间:2015-02-02 21:34:36      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

想通过shell查询MongoDB的数据

网上好多人说,mongoDB不支持shell,这个说法我是基本赞同的技术分享

但是项目需要,我不得不尝试着做,关键要使用--eval

如我要查询用户数量:

#cat count_users.sh

#!/bin/sh

/usr/bin/mongo  xxx --quiet --authenticationDatabase admin -u root -p ‘xyz‘ --eval "db.system.users.count()"

注意:

1.quiet只输出结果

2.eval这是evaluate javascript

3.--authenticationDatabase admin 执行auth验证,这个不能忘记啊!技术分享

authenticationDatabase可以参看我这篇文章:http://blog.csdn.net/jacson_bai/article/details/41013259


shell操作mongodb

标签:

原文地址:http://blog.csdn.net/jacson_bai/article/details/43413847

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!