Do you want to know how to install Mariadb 10.04 server on CentOS 8/RHEL 8 ? This post will help you to install MariaDB server. MariaDB is now defacto RDBMS in RHEL/CentOS after its seperation from the MySQL. We have already written other post on Mariadb Server, hence we will directly go to installation section. […]
Linux
How to install Jfrog artifactory on CentOS 8
Do you know what is artifactory ? In a simple definition, it is the repository where we keep the artifacts. Here, the artifacts are the packages and binaries. For example, when you build some package like rpm, jar, deb, tar.gz , you can keep these packages in artifcatory. For DevOps, the integration of Artifactory in […]
How to install Docker on CentOS 8
Docker is a platform software for containers. Initially docker used the LXC and later it has replaced with its own component which is written in Go programming language. We are installing Docker on CentOS 8. We will club all the required commands and make a simple bash script. This script you can also use with […]
How to install Docker on Ubuntu
In this post, we will learn how to install Docker on Ubuntu 22.04 LTS, 20.04 LTS, 18.04 LTS and 16.04 LTS. We have installed the Docker by using shell script in Ubuntu Operating System. We will use the recommended steps and commands to install docker on Ubuntu. We have clubbed all the recommended commands in […]
Create multiple virtual machine with one Vagrantfile
For doing POC and testing sometimes we need multiple Virtual Machines very quickly. So here in this post we will create multiple virtual machine with one Vagrantfile by using Vagrant. We will cover some examples from coding side in Vagrantfile, it will help you in your real time scenarios as well. As we know Vagrant […]
Learn Vagrant provision with shell provisioner examples
The Vagrant provision will help you to automate the installing the software, configurations and commands in your Vagrant Boxes. Vagrant gives us lots of provisioner options. In this post, we will show some vagrant shell provisioner examples. Before going to explain more on Vagrant Shell provisioner, we suggest you to read our this post to […]