Deploying RethinkDB on a standalone server
If you want to deploy RethinkDB other than on PaaS services then you need to perform a custom installation, which is going to be different per operating system.
To give an example, let's consider the server is running Ubuntu 15.04 and we want to install RethinkDB on it.
To do that, we need to execute the following commands:
First, update Ubuntu:
sudo apt-get update
Install the RethinkDB repository in the repository list of Ubuntu using the following command:
echo "deb http://download.rethinkdb.com/apt `lsb_release -cs` main" >/etc/apt/sources.list.d/rethinkdb.list
Install WGET to download the executable files of RethinkDB using the following command:
sudo apt-get install --y wget
Download the RethinkDB repository to the system using the following command:
wget -O- http://download.rethinkdb.com/apt/pubkey.gpg | apt-key add -
Update the repository to effect the changes:
sudo apt-get update
Install RethinkDB using the following command...