CentOS :: Simple Pound Load Balancer

22 sec read

:: Whatis Pound
Pound Load Balancer – HTTP/HTTPS reverse-proxy and load-balancer

 
:: How to install Pound Load Balancer

yum -y install Pound

 
:: Simple forward all traffic in Pound Load Balancer
Forward all incoming HTTP and HTTPS traffic to 10.10.1.3 in port 80 and 10.10.2.4 in port 443.

vim /etc/pound.cfg

change some like these:

User "pound"
Group "pound"
Control "/var/lib/pound/pound.cfg"

ListenHTTP
    Address 0.0.0.0
    Port 80
End


ListenHTTPS
    Address 0.0.0.0
    Port    443
    Cert    "/etc/pki/tls/certs/pound.pem"
End


Service
    BackEnd
        Address 10.10.1.3 
        Port    80
    End
End

Service
    BackEnd 
	Address 10.10.2.4
	Port 443
    End
End

restarting Pound

service pound restart

 
:: Links
+ Google
+ cyberciti

How to install NextCloud in Ubuntu 22.04

What’s NextCloud Nextcloud is an open-source software suite that offers a secure, self-hosted alternative to popular cloud storage and productivity platforms. With a focus...
sysadmin.id
8 min read

Reset root password on CentOS 7

Edit boot menu on-the-go 0. reboot the CentOS 7 and press ESC when GRUB menu show up on the screen and press “e” 1....
sysadmin.id
18 sec read

Free ext4 reserved blocks with tune2fs

Check disk usage df -h Filesystem Size Used Avail Use% Mounted on /dev/vda1 95G 82G 7.9G 92% / Check size of Reserved block count...
sysadmin.id
19 sec read