Mongodb Compass cannot be opened in Ubuntu 18.10

Viewed 22215

Installed successfully MongoDB Compass on Ubuntu 18.10. But when I try to run it, it refuses to start without showing anything. I am a newbie in MongoDB. What to do?

9 Answers

Try with following commands. These steps worked for me.

wget https://downloads.mongodb.com/compass/mongodb-compass_1.15.1_amd64.deb
sudo dpkg -i mongodb-compass_1.15.1_amd64.deb
sudo apt --fix-broken install
sudo apt -y install libgconf2-4
mongodb-compass;

Try these command in terminal :

wget https://downloads.mongodb.com/compass/mongodb-compass_1.14.1_amd64.deb;
sudo dpkg -i mongodb-compass_1.14.1_amd64.deb;
mongodb-compass;

try to use version less then 15.It solved my issue.

Almost the same solution for Ubuntu 20.04

wget https://downloads.mongodb.com/compass/mongodb-compass_1.21.1_amd64.deb
sudo dpkg -i mongodb-compass_1.21.1_amd64.deb
sudo apt --fix-broken install
mongodb-compass

After installing the dpkg, need to run the following commands from the terminal

 1. sudo apt --fix-broken install
 2. sudo apt -y install libgconf2-4
 3. mongodb-compass;

I have run the following commands in ubuntu 20.04 and successfully:

  1. sudo wget https://downloads.mongodb.com/compass/mongodb-compass_1.29.6_amd64.deb
  2. sudo apt install --fix-broken install
  3. sudo dpkg -i mongodb-compass_1.29.6_amd64.deb
  4. mongodb-compass

I hope this will help someone else there.

Related