Problems installing and running on Ubuntu 20.04

I followed steps on https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/

I faced first problem with GPG Key that returns “gpg: no valid OpenPGP data found.”
Somehow I got PUBkey in apt-key list but wget command still returns “no valid”.

After I installed mongodb-org alright.

My systemctl status is always

Active:failed with --config /etc/mongod.conf (code=exited, status=14).

And this is a log after i run "sw@sw-pc  ~  mongod "

{"t":{"$date":"2021-04-12T09:52:34.633+09: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":"2021-04-12T09:52:34.637+09:00"},"s":"W",  "c":"ASIO",     "id":22601,   "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"}
{"t":{"$date":"2021-04-12T09:52:34.637+09:00"},"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":"2021-04-12T09:52:34.637+09:00"},"s":"I",  "c":"STORAGE",  "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":15445,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"sw-pc"}}
{"t":{"$date":"2021-04-12T09:52:34.637+09:00"},"s":"I",  "c":"CONTROL",  "id":23403,   "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"4.4.5","gitVersion":"ff5cb77101b052fa02da43b8538093486cf9b3f7","openSSLVersion":"OpenSSL 1.1.1h  22 Sep 2020","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2004","distarch":"x86_64","target_arch":"x86_64"}}}}
{"t":{"$date":"2021-04-12T09:52:34.637+09:00"},"s":"I",  "c":"CONTROL",  "id":51765,   "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"20.04"}}}
{"t":{"$date":"2021-04-12T09:52:34.637+09:00"},"s":"I",  "c":"CONTROL",  "id":21951,   "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{}}}
{"t":{"$date":"2021-04-12T09:52:34.638+09:00"},"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":"2021-04-12T09:52:34.638+09:00"},"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":"2021-04-12T09:52:34.638+09:00"},"s":"F",  "c":"-",        "id":23092,   "ctx":"initandlisten","msg":"\n\n***aborting after fassert() failure\n\n"}

sorry for mess. this is my first time posting online.

If you need to know more information about my computer, let me know.

And any tips for writing better posting is also welcome. thank you

Hi @SEUNGWOON_JEON, check if you have proper permission on /tmp directory. Below error seems issue with permission.

{“t”:{"$date":“2021-04-12T09:52:34.638+09:00”},“s”:“E”, “c”:“NETWORK”, “id”:23024, “ctx”:“initandlisten”,“msg”:“Failed to unlink socket file”,“attr”:{“path”:"/tmp/mongodb-27017.sock",“error”:“Operation not permitted”}}

1 Like

Hi @ROHIT_KHURANA. Thanks for your kindness.
I think I just fixed my problem by uninstall every mongodb related stuff in my computer then re-install from scratch.
It took me 20 hours of doing anything I found on Internet which including giving permission.
Seems like status is Active now (which is better than so far). But I see same issue with permission on log so I will work on it. Thank you.

1 Like