
mongo
难得糊涂_不解释
这个作者很懒,什么都没留下…
展开
-
配置mongodb出现Error parsing INI config file: unrecognised option ‘nohttpinterface‘ 报错
配置文件中注释掉nohttpinterface =true原创 2021-09-15 16:36:46 · 4556 阅读 · 0 评论 -
mongo shell 客户端显示更多的数量
DBQuery.shellBatchSize = 300原创 2020-04-26 09:41:23 · 336 阅读 · 0 评论 -
mongo单文档最大大小
mongo单文档没有列数限制,大小最大16M.https://docs.mongodb.com/manual/reference/limits/#BSON-Document-SizeThe maximum BSON document size is 16 megabytes.原创 2020-03-27 13:15:26 · 2429 阅读 · 0 评论 -
mongo 查看某个库下面每个集合的大小
[root@192-168-72-19 ~]# cat get_size.sh #!/bin/shMONGO=/usr/bin/mongofunction get_dbs() { $MONGO << EOFshow dbsEOF}function get_tables() { # $1 is dbname DB=$1 $MONGO &l...原创 2020-03-17 18:52:34 · 3705 阅读 · 0 评论 -
安装mongo
1.下载与 CentOS 系统匹配的 mongodb-linux-x86_64-rhel70-3.2.4.tgz 文件:wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-3.2.4.tgz2.解压缩 mongodb-linux-x86_64-rhel70-3.2.4.tgz 文件:tar -zxvf mongo...原创 2019-08-18 22:42:23 · 158 阅读 · 0 评论