Deploying Decoupled Web Applications on Linux Using Nginx
Environment Setup and Nginx CompilationBegin by installing the necessary compiler and development libraries required for Nginx to function properly, including support for SSL and regular expressions.yum install -y gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel
Extract the source archive and navigate into the directory. Execute th ...
Posted on Sun, 10 May 2026 23:03:15 +0000 by tomhath
Understanding Load Balancing with LVS: ARP Protocol Analysis and DR Mode Implementation
3.4 Packet Capture in Linux
ARP Resolution Process: Wireshark packet capture workflow
# Install packet capture software
yum install -y wireshark
# Capture ARP packets on interface eth1
tshark -i eth1 -f arp
# Sample output:
# 1 0.000000000 Vmware_2e:aa:48 -> Broadcast ARP 42 Who has 172.16.1.51? Tell 172.16.1.61
# 2 0.000263929 Vmware_c ...
Posted on Sun, 10 May 2026 22:21:36 +0000 by hatrickpatrick
Deploying and Configuring Ingress-Nginx in Kubernetes
Ingress Overview
Layer 7 Load Balancing Requirements
When clients access Kubernetes services, Layer 4 load balancers cannot terminate SSL sessions. This creates two significant issues: clients must establish direct SSL connections with backend pods, and if a request is routed to a different server after the SSL session is established, the sessi ...
Posted on Sat, 09 May 2026 20:47:54 +0000 by SpasePeepole
Load Balancing and Advanced Configuration in Nacos Service Discovery
Nacos clusters organize microservices into logical groups, defaulting to the DEFAULT cluster. Adjust this behavior via the clusterName property in your configuration file:
spring:
cloud:
nacos:
discovery:
server-addr: 127.0.0.1:8848
username: nacos
password: nacos
clusterName: SH
Services in the same ...
Posted on Thu, 07 May 2026 17:41:58 +0000 by Jyotsna
Implementing Client-Side Load Balancing with Ribbon, Eureka, and RestTemplate
Ribbon operates as a client-side load balancer that distributes incoming requests across multiple service instances within the same JVM proces. This approach shifts routing logic from network infrastructure to the consumer application itself.
Begin by establishing provider services that register with an Eureka discovery server. A representative ...
Posted on Thu, 07 May 2026 01:29:44 +0000 by Fawkman