How to Install CouchDB on Ubuntu 20.04

Apache CouchDB is a free and open-source document-oriented database program. It belongs to NoSQL database. We can store data in JSON format and it supports many protocols to store & transfer the data. We can create multiple fields including text, numbers, lists & booleans. Install CouchDB on Ubuntu Update the System. apt-get update Add Repository & Key. curl …

How to Install & Configure Vagrant on ubuntu 20.04

Vagrant is a command-line tool.It helps to create different operating system environments with virtual box. It is used for creating and managing virtual machines. Install & Configure Vagrant on ubuntu Update the system apt-get update Install VirtualBox. apt install virtualbox Download Vagrant packages file. curl -O https://releases.hashicorp.com/vagrant/2.2.9/vagrant_2.2.9_x86_64.deb Install the downloaded file. apt-get install ./vagrant_2.2.9_x86_64.deb Check …

How to Install & configure MongoDB on Ubuntu 20.04.

MongoDB is a free & open-source document-oriented database program. MongoDB belongs to NoSQL database. It stores data in JSON format. We can easily add or change fields. Install MongoDB on Ubuntu Update the system. apt-get update Install the required packages. apt-get install dirmngr gnupg apt-transport-https ca-certificates apt-get install software-properties-common Import & Add the Repo & key. wget …

How To Install Zimbra Mail server on ubuntu 18.04 LTS

Zimbra is a free & open-source mail server & a web client.It is used for email, calendaring, creating users and distribution lists, file sharing, chatting, & managing mail server activities. Zimbra mail server manages all mailbox contents such as messages, contacts, calendar and attachments. It supports various platforms such as Ubuntu 12.04, Ubuntu 14.04, Ubuntu 18.04, Redhat …

How to Setup a Modoboa Mail Server on Ubuntu 20.04.

Modoboa is a free & open-source mail server written in Python. Python allows to setup mail server. We can create a number of mailboxes and domains from a web-based interface. Setup a Modoboa Mail Server Update the System. apt-get update Install Required packages apt-get install python3-virtualenv python3-pip git curl gnupg2 Set he hostname. hostnamectl set-hostname …