I installed mongodb
from scratch from the 10gen source on a fresh Ubuntu 13.04 Digital Ocean image:
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/10gen.list
sudo apt-get -qq update
sudo apt-get install mongodb-10gen
When I do mongodump
I get a segmentation fault:
root@willmit:~# /usr/bin/mongodump --oplog
connected to: 127.0.0.1
Mon Aug 19 10:33:47.394 all dbs
Mon Aug 19 10:33:47.395 local.oplog.$main to dump/oplog.bson
Segmentation fault
When create a dummy db with one collection and one document, it works as expected, also when I delete the dummy db again.
Is this a bug?