Skip to main content

Ubuntu

Node Installation

  1. Update the local packages sudo apt update.
  2. Download Node sudo apt install nodejs.
  3. Open a new Command Interpreter and enter node -v to check installation.

MongoDB & Mongosh Installation

  1. Download MongoDB: sudo apt install mongodb-org
  2. Run the MongoDB: sudo systemctl start mongodb.service

Remove the MongoDB database

Open a new Command Interpreter and enter mongo <dbname> --eval "db.dropDatabase()"

RabbitMQ Installation

  1. Begin with updating our system’s default application toolset:

apt-get update apt-get -y upgrade

  1. Download and install RabbitMQ: sudo apt-get install rabbitmq-server
  2. Run the RabbitMQ installer: sudo systemctl start rabbitmq

Redis Installation

Open a new Command Interpreter and enter sudo apt install redis-server

Enter redis-cli to check