Wednesday, February 16, 2022

Deploy NoSQLBooster On Rocky Linux 8

 in This Tutorial you will Learn "How To install NoSQLBooster On Rocky Linux 8.5"
                          
NoSQLBooster is a cross-platform GUI tool for MongoDB v2.6-5.0, which provides a build-in MongoDB script debugger.
Homepage- https://nosqlbooster.com/home
________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      | IP -192.168.1.60        |Hostname - server.yourdomain.com
_________________________________________________________________________________________
cat /etc/system-release ; dnf groupinstall "Development Tools" -y
Download Link - https://nosqlbooster.com/downloads
chmod -R 777
./ --no-sandbox &>/dev/null

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
firewall-cmd --permanent --add-port=27017/tcp ; firewall-cmd --reload

nano /etc/mongod.conf
#security
security:
  authorization: "enabled"
systemctl restart mongod ; systemctl status mongod
_________________________________________________________________________________________

No comments:

Post a Comment