How to install Pound Load Balancer latest version in CentOS 5

42 sec read

What is Pound Load Balancer

The Pound program is a reverse proxy, load balancer and HTTPS front-end for Web server(s). Pound was developed to enable distributing the load among several Web-servers and to allow for a convenient SSL wrapper for those Web servers that do not offer it natively. Pound is distributed under the GPL – no warranty, it’s free to use, copy and give away.

How to install Pound Load Balancer latest version in CentOS 5

0. Install rpmbuilds packages

# yum install -y rpm-build yum-utils

1. Create user to build the rpms

# adduser myuser

3. Download rpm files

# su - myuser
$ wget -c //www.invoca.ch/pub/packages/pound/RPMS/ils-5/SRPMS/pound-2.7-5.el5.src.rpm

3. Rebuild rpms to make Pound rpm package

$ rpmbuild --rebuild pound-2.7-5.el5.src.rpm

this will build the rpm file in ~/rpmbuild/RPMS/i386 directory (if your architecture is i386, otherwise the name of the file and the directory will change accordingly)

4. Install Pound Load Balancer from rpm file

# rpm -Uvh /home/myuser/rpmbuild/RPMS/i386/pound-2.7-5.el5.i386.rpm

5. Restart Pound

# service pound restart

Ref

Google
Apsis Gmbh

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