【问题标题】:Can no longer run mongod command to start after typing "sudo pkill -f mongod"输入“sudo pkill -f mongod”后无法再运行 mongod 命令启动
【发布时间】:2022-02-25 00:59:51
【问题描述】:

“mongod”命令在过去几天一直运行良好,直到我在终端中键入命令“sudo pkill -f mongod”。这是我发出“mongod”后的结果。


{"t":{"$date":"2020-08-16T13:32:49.543-04:00"},"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-16T13:32:49.546-04:00"},"s":"W",  "c":"ASIO",  
"id":22601,   "ctx":"main","msg":"No TransportLayer configured during
NetworkInterface startup"}
{"t":{"$date":"2020-08-16T13:32:49.546-04:00"},"s":"I", 
"c":"NETWORK",  "id":4648602, "ctx":"main","msg":"Implicit TCP
FastOpen in use."}
{"t":{"$date":"2020-08-16T13:32:49.546-04:00"},"s":"I", 
"c":"STORAGE",  "id":4615611, "ctx":"initandlisten","msg":"MongoDB
starting","attr":{"pid":718,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"Georges-MacBook-Pro.local"}}
{"t":{"$date":"2020-08-16T13:32:49.546-04:00"},"s":"I", 
"c":"CONTROL",  "id":23403,   "ctx":"initandlisten","msg":"Build
Info","attr":{"buildInfo":{"version":"4.4.0","gitVersion":"563487e100c4215e2dce98d0af2a6a5a2d67c5cf","modules":[],"allocator":"system","environment":{"distarch":"x86_64","target_arch":"x86_64"}}}}
{"t":{"$date":"2020-08-16T13:32:49.546-04:00"},"s":"I", 
"c":"CONTROL",  "id":51765,   "ctx":"initandlisten","msg":"Operating
System","attr":{"os":{"name":"Mac OS X","version":"19.6.0"}}}
{"t":{"$date":"2020-08-16T13:32:49.546-04:00"},"s":"I", 
"c":"CONTROL",  "id":21951,   "ctx":"initandlisten","msg":"Options set
by command line","attr":{"options":{}}}
{"t":{"$date":"2020-08-16T13:32:49.548-04:00"},"s":"E", 
"c":"STORAGE",  "id":20557,   "ctx":"initandlisten","msg":"DBException
in initAndListen, terminating","attr":{"error":"NonExistentPath: Data
directory /data/db not found. Create the missing directory or specify
another path using (1) the --dbpath command line option, or (2) by
adding the 'storage.dbPath' option in the configuration file."}}
{"t":{"$date":"2020-08-16T13:32:49.548-04:00"},"s":"I", 
"c":"NETWORK",  "id":20562,   "ctx":"initandlisten","msg":"Shutdown:
going to close listening sockets"}
{"t":{"$date":"2020-08-16T13:32:49.548-04:00"},"s":"I",  "c":"-",     
"id":20520,   "ctx":"initandlisten","msg":"Stopping further Flow
Control ticket acquisitions."}
{"t":{"$date":"2020-08-16T13:32:49.548-04:00"},"s":"I", 
"c":"CONTROL",  "id":20565,   "ctx":"initandlisten","msg":"Now
exiting"} {"t":{"$date":"2020-08-16T13:32:49.548-04:00"},"s":"I", 
"c":"CONTROL",  "id":23138,   "ctx":"initandlisten","msg":"Shutting
down","attr":{"exitCode":100}}

我找到了一个临时解决方案,即键入“mongod --dbpath /usr/local/var/mongodb”。如何撤消此操作,以便我可以通过发出“mongod”来启动数据库连接?

编辑:包括终端输出

【问题讨论】:

标签: database mongodb


【解决方案1】:

如果您的操作系统是 OS X 并且 mongodb 是通过 Homebrew 安装的,请尝试:

brew services restart mongodb-community 
brew services start mongodb-community

【讨论】:

  • mongodb-community 重启不需要启动
【解决方案2】:

我解决了同样的问题请尝试

  1. 数据目录 C:\data\db\

  2. 运行管理员命令提示符 C:\Program Files\MongoDB\Server\4.4\data\

【讨论】:

    【解决方案3】:

    试试下面的命令。如果还是不行,重启电脑试试。

    sudo service mongod restart
    sudo service mongod stop
    sudo service mongod start
    

    【讨论】:

      【解决方案4】:

      在 C 盘中创建一个名为 data 的文件夹,在 data 中创建一个 db 文件夹,然后重新运行命令即可。

      【讨论】:

      • 这表明与另一个答案相同。
      【解决方案5】:

      检查您的当前目录。如果你不在你的根目录下,

      cd ~
      

      使用此命令进入根目录,然后运行mongod 命令。

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2017-02-04
        • 1970-01-01
        • 1970-01-01
        • 2017-01-13
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多