Ubuntu
Node Installation
- Update the local packages
sudo apt update. - Download Node
sudo apt install nodejs. - Open a new Command Interpreter and enter
node -vto check installation.
MongoDB & Mongosh Installation
- Download MongoDB:
sudo apt install mongodb-org - 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
- Begin with updating our system’s default application toolset:
apt-get update
apt-get -y upgrade
- Download and install RabbitMQ:
sudo apt-get install rabbitmq-server - 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