已在Ubuntu 18.10上成功安装MongoDB Compass。但是,当我尝试运行它时,它拒绝启动而不显示任何内容。我是MongoDB的新手。该怎么办?
答案 0 :(得分:17)
在终端中尝试以下命令:
1。 $ wget https://downloads.mongodb.com/compass/mongodb-compass_1.12.1_amd64.deb;
2。 $ sudo dpkg -i mongodb-compass_1.12.1_amd64.deb
为我工作。我也在使用Ubuntu 18.10
(尝试更改mongodb罗盘的版本-低于15- v)
答案 1 :(得分:6)
我在ubuntu 18.10上遇到了同样的问题。版本15和16仍然存在此问题。较早的版本在ubuntu 18.10中可以正常工作。
1)wget https://downloads.mongodb.com/compass/mongodb-compass_1.14.1_amd64.deb
2)sudo dpkg -i mongodb-compass_1.14.1_amd64.deb
3)mongodb-compass
答案 2 :(得分:6)
我们刚刚发布了Compass 1.18-beta.1,Compass可以在Ubuntu 18.10和其他最新的Linux发行版上再次使用。您可以从这里下载:https://www.mongodb.com/download-center/compass。
答案 3 :(得分:3)
尝试使用以下命令。这些步骤对我有用。
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;
答案 4 :(得分:2)
与Ubuntu 20.04几乎相同的解决方案
lappend auto_path /home/thufir/NetBeansProjects/spawnTelnet/telnet/weather
package require weather 1.0
package require locations 1.0
set cities [cities::dictionary]
puts "locations\n---------"
dict for {k v} $cities {puts $k\t$v}
#################
puts "\n\n\nconnect to wunderground with:"
puts "-----------------------------"
puts "1)\tnoControlFlow"
puts "2)\tconnect\n\n"
puts -nonewline "connection method: "
flush stdout
gets stdin prompt
puts "connecting with $prompt"
if {$prompt == 1 } {
wunderground::noControlFlow "nyc"
} else {
wunderground::connect "nyc"
}
答案 5 :(得分:1)
在终端中尝试以下命令:
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;
尝试使用小于15的版本。它解决了我的问题。
答案 6 :(得分:0)
不允许以这种方式下载完整版本,只能完成社区版本,例如:
1)wget https://downloads.mongodb.com/compass/mongodb-compass-community_1.15.1_amd64.deb
您可以下载该文件,但存在相同的问题。
我用wget下载了mongodb-compass-community_1.12.1_amd64.deb。我用dpkg -i安装了它,并且可以正常工作。
答案 7 :(得分:0)
安装dpkg后,需要从终端运行以下命令
1. sudo apt --fix-broken install
2. sudo apt -y install libgconf2-4
3. mongodb-compass;