Questions tagged «mongodb»

可扩展,高性能,开源,面向文档的数据库。

4
文件系统上的mongo数据库文件夹在哪里
我正在使用Ubuntu 16.04。我已经建立了一个数据库MongoDB。当我使用mongod命令启动它时,它说数据库位于/data/db(dbpath=/data/db)。 数据库工作正常。但是在文件资源管理器中,我找不到该文件夹​​。我查看了Computer文件夹和Home(Computer/home/<my name>)文件夹。 我还使用Ctrl + H显示了隐藏的文件和文件夹。 如何找到我的数据库文件夹?

2
如何完全卸载mongodb 2.6.3?
我正在运行以下命令: sudo apt-get remove mongodb 它给出以下输出: Reading package lists... Done Building dependency tree Reading state information... Done Package 'mongodb' is not installed, so not removed 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 但是mongodb仍安装在我的Ubuntu 13.04系统上,如何卸载它..?

2
如何增加缓冲数据限制?
在Ubuntu中,我创建了一个包含100万条记录的MongoDB Db集合,并且尝试对其执行排序命令时,出现以下错误: "$err" : "Runner error: Overflow sort stage buffered data usage of 33555002 bytes exceeds internal limit of 33554432 bytes", "code" : 17144 请谁能描述如何增加内部限制,以便我可以对数据执行此限制和其他一些大规模命令?
16 mongodb 




2
在Ubuntu 15.10上将MongoDB服务作为SystemD的守护程序运行
MongoDB仅支持Ubuntu长期支持(LTS)的版本。最后一个是Ubuntu 14.04 LTS,其初始化过程由Canonical的Upstart专有管理。但是,我在Linux标准SystemD初始化过程中使用Ubuntu 15.10。因此,我无法在启动时启动MongoDB服务。 当我阅读或尝试启动服务状态时,显示消息“无法加载”: > systemctl status mongod Loaded: not-found (Reason: No such file or directory) Active: inactive (dead) > sudo systemctl start mongod Failed to start mongod.service: Unit mongod.service failed to load: No such file or directory. 我正在从https://docs.mongodb.org/master/tutorial/install-mongodb-on-ubuntu/运行官方的MongoDB 3.2社区版(mongodb-org),而不是来自Ubuntu的MongoDB 2.6元软件包(mongodb)资料库。 > sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv EA312927 …

6
在Ubuntu 16.04上MongoDB安装失败
我按照MongoDB官方网站(https://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/)上的说明进行操作,尝试安装MongoDB时出现此错误。如何解决此问题以及出了什么问题?记住我正在使用最新的Ubuntu 16.04版本 sudo apt-get install -y mongodb-org Reading package lists... Done Building dependency tree Reading state information... Done You might want to run 'apt-get -f install' to correct these: The following packages have unmet dependencies: mongodb-org : Depends: mongodb-org-shell but it is not going to be installed Depends: mongodb-org-server but …
12 apt  16.04  mongodb 

1
从MongoDB 2.6升级到3.4后的启动警告
我删除了MongoDB 2.6,然后安装了MongoDB 3.4。当我连接到MongoDB 3.4服务器时,有几个新的启动警告: MongoDB shell version v3.4.2 connecting to: mongodb://127.0.0.1:27017 MongoDB server version: 3.4.2 Server has startup warnings: 2017-03-20T20:27:36.175+0545 I STORAGE [initandlisten] 2017-03-20T20:27:36.175+0545 I STORAGE [initandlisten] ** WARNING: Using the XFS filesystem is strongly recommended with the WiredTiger storage engine 2017-03-20T20:27:36.175+0545 I STORAGE [initandlisten] ** See http://dochub.mongodb.org/core/prodnotes-filesystem 2017-03-20T20:27:36.855+0545 I …
11 mongodb 

2
我可以将14.04 MongoDB软件包与16.04一起使用吗?
不幸的是,MongoDB的官方Ubuntu软件包仍然停留在2.6上,这在当时是很古老的(此错误并未因生动,狡猾或xenial而被拾取)。 MongoDB尚未发布适用于16.04(Xenial)的软件包,那么如何使用14.04(Trusty)软件包在16.04上安装MongoDB 3.2+?
10 16.04  mongodb 


2
如何使用WiredTiger将MongoDB 2.6迁移到3.0
MongoDB 3.0引入了一个新的存储引擎wiredTiger,该引擎可大大减少内存和磁盘空间的使用。 由于我的数据库当前有约2000万个对象,并使用了约70GB的RAM,因此此更新适时出现,可以推迟硬件更新。 您如何将现有的MongoDB 2.6安装迁移到3.0,同时又获得wiredTiger的好处? 该文档指的是导致启动错误的选项,这些错误会阻止MongoDB启动。另外,文件位置与Ubuntu(Server 14.04 LTS)中的文件位置不匹配。
9 mongodb 


4
MongoDB今天突然停止工作(12.04)
一两个月前我更新到12.04之后,我通过APT安装了MongoDB。从那时起,它一直运行良好。我没有对配置或任何内容进行任何更改-它开箱即用。 今天它没有开始,当我登录时,我的应用程序突然出现“无法连接到列表中的任何服务器”错误,我检查并且mongod没有在运行。 ls -al /var/lib/mongodb 不显示*.lock文件。 $ /etc/init.d/mongodb start Rather than invoking init scripts through /etc/init.d, use the service(8) utility, e.g. service mongodb start Since the script you are attempting to invoke has been converted to an Upstart job, you may also use the start(8) utility, e.g. start mongodb start: …
8 12.04  mongodb 

2
启动Mongodb时出错
启动Mongodb时,我收到此错误是套接字连接: 7 12:03:31.230 [initandlisten] ERROR: listen(): bind() failed errno:98 Address already in use for socket: 127.0.0.1:27017 Tue Apr 7 12:03:31.230 [initandlisten] ERROR: addr already in use Tue Apr 7 12:03:31.252 [websvr] ERROR: listen(): bind() failed errno:98 Address already in use for socket: 127.0.0.1:28017 Tue Apr 7 12:03:31.253 [websvr] ERROR: addr …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.