MongoDB 活动状态失败

MongoDB 活动状态失败

我的服务器运行在 Nginx Ubuntu 16.04 LTS 上。我想安装 mongoDB 以便与 node.js 一起使用,然后我按照这个操作教程但是当我写状态命令时,我有这个。

● mongodb.service - High-performance, schema-free document-oriented database
   Loaded: loaded (/etc/systemd/system/mongodb.service; enabled; vendor preset: enabled)
   Active: failed (Result: exit-code) since Tue 2016-07-26 20:21:15 CEST; 7s ago
  Process: 4527 ExecStart=/usr/bin/mongod --quiet --config /etc/mongod.conf (code=exited, status=14)
 Main PID: 4527 (code=exited, status=14)

Jul 26 20:21:15 ns3039456.ip-94-23-252.eu systemd[1]: Started High-performance, schema-free document-oriented d
Jul 26 20:21:15 ns3039456.ip-94-23-252.eu systemd[1]: mongodb.service: Main process exited, code=exited, status
Jul 26 20:21:15 ns3039456.ip-94-23-252.eu systemd[1]: mongodb.service: Unit entered failed state.
Jul 26 20:21:15 ns3039456.ip-94-23-252.eu systemd[1]: mongodb.service: Failed with result 'exit-code'.

您有什么解决方案可以解决我的问题吗?如果您有解决方案,需要完全删除 mongodb,那就没问题。我的数据库中没有任何内容,因为这是我的第一次安装。

我尝试使用此命令来删除 mongodb:

sudo apt-get remove mongodb* --purge

但是我有这个错误

E: Unable to locate package mongodb.service
E: Couldn't find any package by glob 'mongodb.service'
E: Couldn't find any package by regex 'mongodb.service'

但我确实按照教程说的做了。我mongo.service在里面创建了文件/etc/systemd/system

编辑 :

使用 mongod 命令我有这个:

2016-07-26T20:54:46.024+0200 I CONTROL  [initandlisten] MongoDB starting : pid=6201 port=27017 dbpath=/data/db 64-bit host=ns3039456.ip-94-23-252.eu
2016-07-26T20:54:46.024+0200 I CONTROL  [initandlisten] db version v3.2.8
2016-07-26T20:54:46.024+0200 I CONTROL  [initandlisten] git version: ed70e33130c977bda0024c125b56d159573dbaf0
2016-07-26T20:54:46.024+0200 I CONTROL  [initandlisten] OpenSSL version: OpenSSL 1.0.2g-fips  1 Mar 2016
2016-07-26T20:54:46.024+0200 I CONTROL  [initandlisten] allocator: tcmalloc
2016-07-26T20:54:46.024+0200 I CONTROL  [initandlisten] modules: none
2016-07-26T20:54:46.024+0200 I CONTROL  [initandlisten] build environment:
2016-07-26T20:54:46.024+0200 I CONTROL  [initandlisten]     distmod: ubuntu1404
2016-07-26T20:54:46.024+0200 I CONTROL  [initandlisten]     distarch: x86_64
2016-07-26T20:54:46.024+0200 I CONTROL  [initandlisten]     target_arch: x86_64
2016-07-26T20:54:46.024+0200 I CONTROL  [initandlisten] options: {}
2016-07-26T20:54:46.056+0200 I STORAGE  [initandlisten] exception in initAndListen: 29 Data directory /data/db not found., terminating
2016-07-26T20:54:46.056+0200 I CONTROL  [initandlisten] dbexit:  rc: 100

答案1

错误不言自明,/etc/mongodb.conf您的系统缺少文件,因此您需要创建一个。这个简单的配置将允许您开始mongod

systemLog:
 verbosity: 1
 quiet: true
 traceAllExceptions: false
 path: "/opt/mongo/log/local.log"
 logAppend: true
 destination: file
storage:
 dbPath: "/opt/mongo/db"
 journal:
  enabled: true
processManagement:
 fork: true
net:
 port: 27017
security:
 authorization: disabled

只需为日志/存储设置适当的路径并确保mongod能够在那里写入。

相关内容