OPERATING SYSTEMSOS Linux

How to Install RethinkDB on Ubuntu 22.04 or 20.04



RethinkDB stands out as a powerful open-source database designed for applications with real-time feeds and scalable architecture.

This video will demonstrate how to install RethinkDB on Ubuntu 22.04 or 20.04

Useful Links:
VPS/VDS – https://www.mivocloud.com/

WARNING – ANGLED BRACKETS AREN’T ALLOWED IN DESCRIPTION SO BE ATTENTIVE TO THE VIDEO IN NANO EDITOR

Commands Used:
sudo apt install software-properties-common apt-transport-https curl -y
curl -fsSL https://download.rethinkdb.com/repository/raw/pubkey.gpg | sudo gpg –dearmor | sudo tee /usr/share/keyrings/rethinkdb-archive-keyrings.gpg !!ANGLED BRACKETS!! /dev/null
echo “deb [arch=amd64 signed-by=/usr/share/keyrings/rethinkdb-archive-keyrings.gpg] https://download.rethinkdb.com/repository/ubuntu-$(lsb_release -cs) $(lsb_release -cs) main” | sudo tee /etc/apt/sources.list.d/rethinkdb.list
sudo apt update
sudo apt install rethinkdb
rethinkdb –version
systemctl status rethinkdb
sudo cp /etc/rethinkdb/default.conf.sample /etc/rethinkdb/instances.d/instance1.conf
rethinkdb –bind all

source
ubuntu