Wednesday, February 16, 2022

Deploy Robo 3T ( RoboMongo ) MongoDB GUI Tool On Rocky Linux 8

 in This Tutorial you will Learn " How To Install Robo 3T MongoDB GUI Tool on Rocky Linux 8"
Robo 3T (formerly Robomongo) is the free lightweight GUI for MongoDB enthusiasts.
Homepage - https://robomongo.org/
_________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      | IP -192.168.1.60        |Hostname - server.yourdomain.com
_________________________________________________________________________________________
cat /etc/system-release ; sestatus ; dnf groupinstall "Development Tools" -y
cat > /etc/yum.repos.d/mongodb.repo << 'EOL'
[mongodb-org-4.4]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/4.4/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-4.4.asc
EOL
dnf update ; dnf install mongodb-org -y
systemctl start mongod ; systemctl enable mongod

wget https://download-test.robomongo.org/linux/robo3t-1.3.1-linux-x86_64-7419c406.tar.gz
mkdir /opt/robomongo
tar xzf robo3t-1.3.1-linux-x86_64-7419c406.tar.gz -C /opt/robomongo --strip-components=1
ln -s /opt/robomongo/bin/robo3t /usr/local/bin/robo3t
ln -s /opt/robomongo/bin/robo3t /usr/local/bin/robomongo
robomongo &>/dev/null
_________________________________________________________________________________________

No comments:

Post a Comment