Sunday, October 6, 2019

Best way to Install ROBOMONGO Program Into UBUNTU Using Command Line

1. Download tar.gz file from Official robomongo website(choose version you need to install and get it's tar.gz download file url)
wget https://download.robomongo.org/0.9.0/linux/robomongo-0.9.0-linux-x86_64-0786489.tar.gz
2. Extract tar.gz file
 tar -xvzf robomongo-0.9.0-linux-x86_64-0786489.tar.gz
3. Move files and folders into the result folder from extraction operation into folder robomongo under /usr/local/bin
sudo mkdir /usr/local/bin/robomongo
sudo mv  robomongo-0.9.0-linux-x86_64-0786489/* /usr/local/bin/robomongo
4. Make sure excute file for robomongo program which exists under/usr/local/bin/robomongo/bin folder is excutable file
cd /usr/local/bin/robomongo/bin
sudo chmod +x robomongo ## run command only if robomongo isn't excutable file
./robomongo

No comments:

Post a Comment

How to solve : Ubuntu MongoNetworkError and to start MongoDB server on system start?

If you get en error such as: (node:6468) DeprecationWarning: current Server Discovery and Monitoring engine is deprecated, and will be re...