Robomongo/Robo3t

Follow these simple steps.


  tar -xvzd robomongo-0.9.0.tar.gz

       sudo mkdir /usr/local/bin/robomongo

       cp robomongo-0.9.0/* /usr/local/bin/robomongo

       cd /usr/local/bin/robomongo/bin

       ./robomongo

      vi ~/.bashrc

        Add the following line to the end of .bashrc file: 

      alias robomongo='/usr/local/bin/robomongo/bin/robomongo'

   source ~/.bashrc

        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