Fading Coder

One Final Commit for the Last Sprint

Implementing Automated Service Scaling with SaltStack and etcd

etcd Service Installation and Basic Operations Installing etcd wget https://github.com/coreos/etcd/releases/download/v3.5.0/etcd-v3.5.0-linux-amd64.tar.gz tar -zxf etcd-v3.5.0-linux-amd64.tar.gz cp etcd/etcd etcd/etcdctl /usr/local/bin/ Starting etcd Server mkdir -p /var/lib/etcd nohup etcd --name a...

Deploying HAProxy for TCP and HTTP Load Distribution

HAProxy operates as a robust solution for distributing network traffic across multiple servers, functioning effective at both Layer 4 (transport) and Layer 7 (application) of the OSI model. Unlike LVS, which primarily handles Layer 4 forwarding within the kernel or user space, or Nginx which is ofte...