我使用sudo apt-get install -y mongodb-org
按照documentation中的说明安装了mongodb。 (我导入了密钥,创建了列表,然后安装了软件包)。
现在,当我进入终端并输入mongod时,我收到以下错误:
2015-11-10T16:39:18.682+0100 I STORAGE [initandlisten] exception in initAndListen: 29 Data directory /data/db not found., terminating
2015-11-10T16:39:18.682+0100 I CONTROL [initandlisten] dbexit: rc: 100
所以我去了/ etc并编辑了mongod.conf文件,其中包含我在home文件夹中创建的空目录的路径:
# Where and how to store data.
storage:
dbPath: /home/shooshte/mongo-data/db/
journal:
enabled: true
# engine:
# mmapv1:
# wiredTiger:
我仍然遇到同样的错误。我错过了什么?
感谢您的帮助。