Paket Yöneticisi ile Kurulumu
Centos
yum update
yum -y install haproxy
Fedora
dnf update
dnf install haproxy
Debian/Ubuntu
apt update
apt install -y haproxy
Spesifik bir versiyon kurmak için https://launchpad.net/~vbernat/+ppa-packages adresinden istenen versiyon repository'si eklenerek paket yöneticisi ile kurulabilir.
sudo add-apt-repository ppa:vbernat/haproxy-1.7
sudo apt-get update
apt install -y haproxy
Önceden yüklü bir versiyona sahipseniz aşağıdaki şekilde yükseltilebilir.
sudo apt-get install --only-upgrade haproxy
Önyükleme zamanında başlamak için:
systemctl enable haproxy
Servis durumunu kontrol etmek için:
systemctl status haproxy
Last updated
Was this helpful?