Robomongo/Robo3t
Follow these simple steps.
Download the robomongo: https://robomongo.org/download
Extract the .tar.gz downloaded from above
tar -xvzd robomongo-0.9.0.tar.gz
Create robomongo folder under /usr/local/bin/
sudo mkdir /usr/local/bin/robomongo
Change directory to extracted folder.
cp robomongo-0.9.0/* /usr/local/bin/robomongo
You'll find a bin folder. Go in there, then run robomongo.
cd /usr/local/bin/robomongo/bin
./robomongo
You can also add alias to .bashrc to use alias
vi ~/.bashrc
Add the following line to the end of .bashrc file:
alias robomongo='/usr/local/bin/robomongo/bin/robomongo'
Save and close the file. Then reload it using the source command
source ~/.bashrc
Then you can run robomongo form terminal and it will open up the GUI
robomongo
Solve the problem that Robo 3T lacks the package “glibc” 2.18 during installation
Recently, I found a visualization software called mongodbROBO 3TAt the time of installation, I was informed of the lack ofGLIBC_2.18:
./robo3t: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by /home/mrzont/Desktop/mongodb/robo3t-1.2.1-linux-x86_64-3e50a65/bin/../lib/libstdc++.so.6)
Solutions
#Download the installation package
curl -O http://ftp.gnu.org/gnu/glibc/glibc-2.18.tar.gz
Decompression
tar zxf glibc-2.18.tar.gz
#Go to the unzip directory, create a new build folder, and enter the build directory
cd glibc-2.18/
mkdir build
cd build/ .
#Here, you need to enter the absolute path to call the configure file of glibc-2.18 to install (modify according to your own situation)
/home/mrzont/Desktop/mongodb/robo3t-1.3.1-linux-x86_64-7419c406/bin/glibc-2.18/configure --prefix=/usr
#Root permission is required for installation
sudo make -j2
sudo make install
After the installation, please start robot 3t