Fading Coder

One Final Commit for the Last Sprint

Installing Consul 1.11.1 on CentOS 8.2 for Service Discovery

Consul Installation on CentOS To install Consul on CentOS 8.2, first add the HashiCorp repository: yum install -y yum-utils yum-config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo yum -y install consul Service Cofniguration Create or modify the systemd service file at /e...

Deploying a Highly Available Consul Cluster Using Docker

Establishing a Dedicated Container Network docker network create consul-net Fetching the Consul Image docker pull consul:latest Initializing the Primary Server Node docker run -d \ --name=leader-node \ --hostname=leader-node \ --network=consul-net \ consul:latest agent -server -bootstrap-expect=3 -d...