Install MongoDB on Rocky Linux 8
This guide provides a step-by-step tutorial on how to install MongoDB on Rocky Linux 8. MongoDB is a cross-platform document-oriented and a NoSQL database program.
Install MongoDB on Rocky Linux 8
Create MongoDB RPM Repository
As of this writing, the official default repositories for Rocky Linux 8 do not provide MongoDB packages.
Thus, in order to install MongoDB on Rocky Linux, you need...
Install MySQL 8 on Rocky Linux 8
Want to learn how to install MySQL 8 on Rocky Linux 8? Follow the simple steps provided in this guide.
Read about what is new in MySQL 8 on its manual reference page.
Install MySQL 8 on Rocky Linux 8
MySQL 8 is available on the Rocky Linux 8 AppStream repos for installation. The AppStream repos are enabled by default.
dnf whatprovides mysql-server
mysql-server-8.0.21-1.module+el8.3.0+242+87d3366a.x86_64...
Install phpMyAdmin on Rocky Linux 8
Follow through this tutorial to learn how to install phpMyAdmin on Rocky Linux 8. phpMyAdmin is a free and opensource application written in PHP that facilitates the administration and management of MySQL and MariaDB over the Web.
phpMyAdmin allows administrators to;
browse through databases and tables;create, copy, rename, alter and drop databases;create, copy, rename, alter and drop tables;perform table maintenance;add, edit and...
Install LEMP Stack on Rocky Linux 8
This guide describes a step by step tutorial on how to install LEMP stack on Rocky Linux 8.
LEMP stack is a group of opensource web development softwares;
Linux OS, Rocky Linux 8, in this case.Nginx HTTP server,MariaDB/MySQL relational database management systemsPHP web scripting language
Install LEMP Stack on Rocky Linux 8
Run system package update.
dnf update
Install Rocky Linux 8 Linux System
In this case, the first...
Install LAMP Stack on Rocky Linux 8
This guide describes a step by step tutorial on how to install LAMP stack on Rocky Linux 8.
Install LAMP Stack on Rocky Linux 8
LAMP stack is a group of opensource web development softwares;
Linux OS, Apache http server,MariaDB/MySQL relational database management systemsPHP web scripting language
Run system package update.
dnf update
Install Rocky Linux 8 Linux System
In this case, the first component of the LAMP stack...
Install MariaDB 10.x on Rocky Linux 8
This guide will take you through how to install MariaDB 10.x on Rocky Linux 8 system. As of this writing, MariaDB 10.5.10 is the current stable (GA) series of MariaDB based on MariaDB releases page.
You can read more about MariaDB 10.5 on its release notes page.
Install MariaDB 10.x on Rocky Linux 8
The default Rocky Linux 8 AppStream repos provides MariadDB 10.3...
Enable Authentication on MongoDB
In our previous guides, we learnt how to install MongoDB on Ubuntu or Debian systems;
Install MongoDB on Debian 10
Install MongoDB on Ubuntu 20.04
By default, self hosted MongoDB doesn't enforce user authentication by default. For example, when you connect to MongoDB from the command line using the mongo or command mongo mongodb://127.0.0.1:27017, you will connect with no prompt for authentication.
mongo
Or
mongo...
Install MongoDB on Debian 10
Follow through this tutorial to learn how to install MongoDB on Debian 10. According to mongodb.com, "MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era...It is a scalable, flexible NoSQL document database platform designed to overcome the relational databases approach and the limitations of other NoSQL solutions."
Read about top 5 features of...
Install MongoDB on Ubuntu 20.04
Follow through this tutorial to learn how to install MongoDB on Ubuntu 20.04. According to mongodb.com, "MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era...It is a scalable, flexible NoSQL document database platform designed to overcome the relational databases approach and the limitations of other NoSQL solutions."
Read about top 5 features of...
Install MariaDB 10.5 on Debian 10 Buster
Follow through this guide to learn how to install MariaDB 10.5 on Debian 10 Buster. "MariaDB 10.5 is the current stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL".
Install MariaDB 10.5 on Debian 10 Buster
Run System Update
Assuming that you are installing MariaDB 10.5 on a...