首页 > 代码库 > shell操作mongodb

shell操作mongodb

想通过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