Steps to Install RabbitMQ on Ubuntu 20.04

RabbitMQ is a free & open-source message-broker software. It provides a platform to send and receive messages & supports multiple messaging protocols. It is also known as queue manager. There are some steps to install RabbitMQ on ubuntu: Step 1: Update the System. apt-get update Step 2: Add repo & import the key. echo ‘deb …

Steps to install Apache Groovy on Ubuntu 20.04

Apache Groovy is a free & open-source object-oriented programming language. It is Java syntax compatible programming language which is used for built java platform. It is easy to use & learn java syntax. The following steps are given below: Step 1: Update the System. apt-get update Step 2:  Install Java. apt install openjdk-11-jdk Check the …

Adding Aliases of Commands

alias is the shortcut for long commands. It may also be used to display the already defined aliases depending with the Linux Distribution. User may use the alias to save time and increase efficiency since long commands might take long typing or syntax error a rising. alias option -p or alias with no option can …

Build Intentional Remote Collaboration – Like GitLab

Hello readers, In this Blog we will be taking a dive into a very promising DevOps tool known as GitLab. GitLab was initially developed as a Source Code Management(SCM) or version control solution(VCS) and was totally Open Source at that time. It was developed initially in Ruby by two Ukrainian developers in 2011. From there, …

Step by Step Guide to Install Go Programming language on Ubuntu 20.04

Go is a free & open-source programming language. It created by Google. It is also knows as Golang. Go is a fast and high-performance language & easy to use, read and understand. There are some steps to install Go programming language on ubuntu: Step 1: Update the System. apt-get update Step 2:Install Go. apt-get install …