Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fedora 29 MongoDB Compass install Segmentation fault Core dump

I tried installing MongoDB Compass but got Segmentation fault core dump.

Installed an earlier version which got me up and running.

(1) wget https://downloads.mongodb.com/compass/mongodb-compass-1.14.1.x86_64.rpm

(2) sudo dnf install mongodb-compass-1.14.1.x86_64.rpm

(2.5) yes to all

(3) mongodb-compass

So this is not a question as much it is a tip for you guys. I'd be happy if anyone could explain to me why I got seg fault that be great.

like image 788
hreinn Avatar asked Mar 04 '23 13:03

hreinn


1 Answers

Actually It's because of an error from mongo compass installation, for fedora 29 & 30 works the version 14.5.1

You can install it with the next steps:

  1. su

  2. cd /tmp

  3. wget https://downloads.mongodb.com/compass/mongodb-compass-1.14.5.x86_64.rpm

  4. dnf install ./mongodb-compass-1.14.5.x86_64.rpm

  5. mongodb-compass

like image 68
edev Avatar answered Apr 26 '23 12:04

edev