This is post 1 of my big collection of elasticsearch-tutorials which includes, setup, index, management, searching, etc. More details at the bottom.In this tutorial we will setup a 5 node highly available elasticsearch cluster that will consist of 3…
Clustering
A collection of 6 posts
Setup a 3 Node MongoDB Replica Set on Ubuntu 16
Today we will setup a 3 Node Replica Set for MongoDB on Ubuntu 16. A Replica Set is a form of data replication, so that your data resides on more than one node for data durability. We will setup the…
Setup a 3 Node Docker Swarm on Ubuntu 16
In this guide we will go through the steps on setting up a 3 node Docker Swarm. For more detailed information, and setting up a scalable application have a look at this post Getting Started: Bootstrap Docker Swarm Setup with…
Setup a Distributed Storage Volume with GlusterFS
GlusterFS is a Awesome Scalable Networked Filesystem, which makes it Easy to Create Large and Scalable Storage Solutions on Commodity Hardware. ( function() { if (window.CHITIKA === undefined) { window.CHITIKA = { 'units' : [] }; }; var unit = {"calltype":"async[2]","publisher":"rbekker87","width":728,"height":90,…
Docker Swarm: Getting Started with a 3 Node Docker Swarm Cluster with a Scalable App
What are we up to today? Install Docker and Docker Compose on 3 Nodes Initialize the Swarm and Join the Worker Nodes Create a Nginx Service with 2 Replicas Do some Inspection: View some info on the Service Demo: Create…
MongoDB Setup Sharded Cluster
Our Environment: #HOSTNAME IP_ADDR mongo-router 192.168.1.120 mongo-config 192.168.1.121 mongo-shard-1 192.168.1.126 mongo-shard-2 192.168.1.127 mongo-shard-3 192.168.1.128 ``` <p> **Install Packages:** ```language-bash yum install epel-release -y…