linux - linux(ubuntu)上的mongod命令吐出随机消息

标签 linux mongodb ubuntu

linux(ubuntu) 上的 mongod 命令吐出随机消息,mongo 拒绝连接 127.0.0.1:27017
终端消息

{"t":{"$date":"2020-08-20T22:33:58.002+05:30"},"s":"I",  "c":"CONTROL",  "id":23285,   "ctx":"main","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"}
{"t":{"$date":"2020-08-20T22:33:58.005+05:30"},"s":"W",  "c":"ASIO",     "id":22601,   "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"}
{"t":{"$date":"2020-08-20T22:33:58.005+05:30"},"s":"I",  "c":"NETWORK",  "id":4648601, "ctx":"main","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."}
{"t":{"$date":"2020-08-20T22:33:58.005+05:30"},"s":"I",  "c":"STORAGE",  "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":17540,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"AmrutheshwarO"}}
{"t":{"$date":"2020-08-20T22:33:58.005+05:30"},"s":"I",  "c":"CONTROL",  "id":23403,   "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"4.4.0","gitVersion":"563487e100c4215e2dce98d0af2a6a5a2d67c5cf","openSSLVersion":"OpenSSL 1.1.1f  31 Mar 2020","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2004","distarch":"x86_64","target_arch":"x86_64"}}}}
{"t":{"$date":"2020-08-20T22:33:58.005+05:30"},"s":"I",  "c":"CONTROL",  "id":51765,   "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"20.04"}}}
{"t":{"$date":"2020-08-20T22:33:58.005+05:30"},"s":"I",  "c":"CONTROL",  "id":21951,   "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{}}}
{"t":{"$date":"2020-08-20T22:33:58.006+05:30"},"s":"E",  "c":"NETWORK",  "id":23024,   "ctx":"initandlisten","msg":"Failed to unlink socket file","attr":{"path":"/tmp/mongodb-27017.sock","error":"Operation not permitted"}}
{"t":{"$date":"2020-08-20T22:33:58.006+05:30"},"s":"F",  "c":"-",        "id":23091,   "ctx":"initandlisten","msg":"Fatal assertion","attr":{"msgid":40486,"file":"src/mongo/transport/transport_layer_asio.cpp","line":919}}
{"t":{"$date":"2020-08-20T22:33:58.006+05:30"},"s":"F",  "c":"-",        "id":23092,   "ctx":"initandlisten","msg":"\n\n***aborting after fassert() failure\n\n"}
随后在终端 上运行 mongo 时(我在不同的终端窗口上运行此命令)
MongoDB shell version v4.4.0
connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb
Error: couldn't connect to server 127.0.0.1:27017, connection attempt failed: SocketException: Error connecting to 127.0.0.1:27017 :: caused by :: Connection refused :
connect@src/mongo/shell/mongo.js:362:17
@(connect):2:6
exception: connect failed
exiting with code 1
我的mongodb版本是
db version v4.4.0
Build Info: {
    "version": "4.4.0",
    "gitVersion": "563487e100c4215e2dce98d0af2a6a5a2d67c5cf",
    "openSSLVersion": "OpenSSL 1.1.1f  31 Mar 2020",
    "modules": [],
    "allocator": "tcmalloc",
    "environment": {
        "distmod": "ubuntu2004",
        "distarch": "x86_64",
        "target_arch": "x86_64"
    }
}```

最佳答案

我遇到了同样的问题。删除/tmp/mongodb-27017.sock 应该修复它。
您可以在日志中看到它无法删除它:

{
  "t": {
    "$date": "2020-08-20T22:33:58.006+05:30"
  },
  "s": "E",
  "c": "NETWORK",
  "id": 23024,
  "ctx": "initandlisten",
  "msg": "Failed to unlink socket file",
  "attr": {
    "path": "/tmp/mongodb-27017.sock",
    "error": "Operation not permitted"
  }
}

关于linux - linux(ubuntu)上的mongod命令吐出随机消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63510212/

相关文章:

mongodb - 从其他容器与 Kubernetes (GKE) 上的容器通信

c# - MongoDB 中的多重排序规则

c - 来自 UDP 套接字的 read() 丢弃数据并在 C 中意外阻塞

linux - 搜索文本文件的一部分并打印它的通用命令(使用 awk 或 sed)

android - 在 Android 中查找没有 busybox 的端口的 pid

mongodb - 如何在 golang 和 mongodb 中通过 id 查找

ruby connect.rb 连接到 Mongo 但 irb -r connect.rb 失败

Android monkeyrunner 在 Ubuntu 中导致 XWindows 崩溃

android - 在 ubuntu 14.04 上安装 genymotion?

linux - sys_brk 的对齐要求是什么