Re: How to update haproxy?

2012-09-20 Thread joris dedieu
Hi, cd /tmp/ wget http://haproxy.1wt.eu/download/latest/version.tar.gz tar -xvzf haproxy-*cd haproxy-(version) make TARGET=linux26 USE_PCRE=1 replace the make with whatever fits your needs mv /usr/sbin/haproxy /usr/sbin/haproxy_v.X.X keeps an old copy of the version cp haproxy

Re: How to update haproxy?

2012-09-19 Thread Saul
Here is a simple script i use to update my HAproxy servers, the logic is simple and I always keep the previous versions in case i need to roll back, basically build from source with the latest stable release and replace the current haproxy, all your init scripts will continue to work. cd /tmp/

Re: How to update haproxy?

2012-09-19 Thread Willy Tarreau
Hi Saul, On Wed, Sep 19, 2012 at 03:10:03PM -0400, Saul wrote: Here is a simple script i use to update my HAproxy servers, the logic is simple and I always keep the previous versions in case i need to roll back, basically build from source with the latest stable release and replace the