Jump to content
TrainTeamBerlin

Lb - Tool Setup

Restart:

sudo systemctl enable haproxy sudo systemctl start haproxy sudo systemctl status haproxy curl http://localhost 2. If you mean NGINX as a load balancer Install NGINX sudo apt install nginx -y # Debian/Ubuntu Configure load balancing Edit /etc/nginx/conf.d/lb.conf : lb tool setup

upstream backend { server 192.168.1.10; server 192.168.1.11; } server { listen 80; location / { proxy_pass http://backend; } } Restart: sudo systemctl enable haproxy sudo systemctl start

×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Furthermore you accept the Privacy Policy and the Terms of Use with using the forum.