From michael at powerzone.net.au Tue Aug 5 08:17:29 2008 From: michael at powerzone.net.au (Michael Christie) Date: Tue Aug 5 08:17:36 2008 Subject: High Availability FreeBSD www cluster Message-ID: <4898065A.5080008@powerzone.net.au> Hi all , I want to cluster some freeBSD servers, The purpose of this is to learn. I would like to run some basic services like www and mail on a test network. I would like to set up the servers so if one server falls over the other will take over the services automatically, load balanceing would be good as well. I have googled, I could be looking in the wrong place , there seems not to be much in regard to seting up freebsd in a cluster, lots on linux. I have looked at the High Availability Linux project , I see on the front page that it will run on freebsd. So I am a bit lost and i am wanting to learn how to cluster freebsd web and mail servers, I have looked at Beowulf clusters, which seem to give computers more grunt, Can some on on the list please advise me on what clustering softwhere i need to get started and if the High Availability Linux project softwhere will do the job. web links any thing to help me get started would be good. No I do not want to change over to linux. Thanks From pprocacci at datapipe.com Tue Aug 5 08:49:00 2008 From: pprocacci at datapipe.com (Paul Procacci) Date: Tue Aug 5 08:49:16 2008 Subject: High Availability FreeBSD www cluster In-Reply-To: <4898065A.5080008@powerzone.net.au> References: <4898065A.5080008@powerzone.net.au> Message-ID: <4898119F.5020503@datapipe.com> Michael Christie wrote: > Hi all , > > I want to cluster some freeBSD servers, The purpose of this is to > learn. I would like to run some basic services like www and mail on > a test network. I would like to set up the servers so if one server > falls over the other will take over the services automatically, load > balanceing would be good as well. I have googled, I could be looking > in the wrong place , there seems not to be much in regard to seting up > freebsd in a cluster, lots on linux. I have looked at the High > Availability Linux project , I see on the front page that it will run > on freebsd. > > So I am a bit lost and i am wanting to learn how to cluster freebsd > web and mail servers, I have looked at Beowulf clusters, which seem > to give computers more grunt, Can some on on the list please advise me > on what clustering softwhere i need to get started and if the High > Availability Linux project softwhere will do the job. > > > web links any thing to help me get started would be good. No I do not > want to change over to linux. > > > Thanks > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" I've used freevrrpd (/usr/ports/net/freevrrpd) for some clients with success. Additionally doing some googling revealed "SG Cluster" (http://www.freebsd.org.hk/html/sgcluster/) though I'm not sure how active this is and/or really if it's what your looking for. ~Paul From rkramer at mweb.com Tue Aug 5 09:35:35 2008 From: rkramer at mweb.com (Rudi Kramer - MWEB) Date: Tue Aug 5 09:35:42 2008 Subject: High Availability FreeBSD www cluster References: <4898065A.5080008@powerzone.net.au> Message-ID: <39DC135F7F0571489196E0B6F5D58B4A03B45FC9@MWBEXCH.mweb.com> Michael Christie: > I want to cluster some freeBSD servers, The purpose of this is to > learn. I would like to run some basic services like www and mail on a > test network. I would like to set up the servers so if one server falls > over the other will take over the services automatically, load > balanceing would be good as well. I have googled, I could be looking in > the wrong place , there seems not to be much in regard to seting up > freebsd in a cluster, lots on linux. I have looked at the High > Availability Linux project , I see on the front page that it will run on > freebsd. > > So I am a bit lost and i am wanting to learn how to cluster freebsd web > and mail servers, I have looked at Beowulf clusters, which seem to give > computers more grunt, Can some on on the list please advise me on what > clustering softwhere i need to get started and if the High Availability > Linux project softwhere will do the job. I also did some research a while ago and found Wackamole. It looks pretty interesting as you don't need a central "director" server but all servers in the cluster check each other. It's also in the ports tree :-) Site: http://www.backhand.org/wackamole/ Port: /usr/ports/net/wackamole From m.seaman at infracaninophile.co.uk Tue Aug 5 10:30:40 2008 From: m.seaman at infracaninophile.co.uk (Matthew Seaman) Date: Tue Aug 5 10:30:53 2008 Subject: High Availability FreeBSD www cluster In-Reply-To: <39DC135F7F0571489196E0B6F5D58B4A03B45FC9@MWBEXCH.mweb.com> References: <4898065A.5080008@powerzone.net.au> <39DC135F7F0571489196E0B6F5D58B4A03B45FC9@MWBEXCH.mweb.com> Message-ID: <48982BBE.5060502@infracaninophile.co.uk> Rudi Kramer - MWEB wrote: > Michael Christie: > >> I want to cluster some freeBSD servers, The purpose of this is to >> learn. I would like to run some basic services like www and mail on > a >> test network. I would like to set up the servers so if one server > falls >> over the other will take over the services automatically, load >> balanceing would be good as well. I have googled, I could be looking > in >> the wrong place , there seems not to be much in regard to seting up >> freebsd in a cluster, lots on linux. I have looked at the High >> Availability Linux project , I see on the front page that it will run > on >> freebsd. >> >> So I am a bit lost and i am wanting to learn how to cluster freebsd > web >> and mail servers, I have looked at Beowulf clusters, which seem to > give >> computers more grunt, Can some on on the list please advise me on what >> clustering softwhere i need to get started and if the High > Availability >> Linux project softwhere will do the job. > > I also did some research a while ago and found Wackamole. It looks > pretty interesting as you don't need a central "director" server but all > servers in the cluster check each other. It's also in the ports tree :-) > > Site: http://www.backhand.org/wackamole/ > Port: /usr/ports/net/wackamole There's clustering and clustering. Neither of the two applications the OP mentioned needs anything like as tight a coupling as what many commercial 'cluster' solutions provide, or that compute-cluster solutions like Beowulf or Grid Engine[!] provide. WWW clustering requires two things: * A means to detect failed / out of service machines and redirect traffic to alternative servers * A means to delocalize user sessions between servers The first requirement can be handled with programs already mentioned such as wackamole/spread or hacluster -- or another alternative is hoststated(8)[*] on OpenBSD. You can use mod_proxy_balancer[+] on recent Apache 2.2.x to good effect. Certain web technologies provide this sort of capability directly: eg. mod_jk or the newer mod_proxy_ajp13 modules for apache can balance traffic across a number of back-end tomcat workers: of course this only applies to sites written in Java. If you're dealing with high traffic levels and have plenty of money to spend, then a hardware load balancer (Cisco Arrowpoint, Alteon Acedirector, Foundry ServerIron etc.) is a pretty standard choice. The second requirement is more subtle. Any reasonably complicated web application nowadays is unlikely to completely stateless. Either you have to recognise each session and direct the traffic back to the same server each time, or you have to store the session state in a way that is accessible to all servers -- typically in a back-end database. Implementing 'sticky sessions' is generally slightly easier in terms of application programming, but less resilient to machine failure. There are other alternatives: Java Servlet based applications running under Apache Tomcat can cluster about 4 machines together so that session state is replicated to all of them. This solution is however not at all scalable beyond 4 machines, as they'll quickly spend more time passing state information between themselves than they do actually serving incoming web queries. Mail clustering is an entirely different beast. In fact, it's two different beasts with entirely different characteristics. The easy part with mail is the MTA -- SMTP has built in intrinsic concepts of fail-over and retrying with alternate servers. Just set up appropriate MX records in the DNS pointing at a selection of servers and it all should work pretty much straight away. You may need to share certain data between your SMTP servers (like greylisting status, Bayesian spam filtering, authentication databases) but the software is generally written with this capability built in. The hard part with mail clustering is the mail store which provides the IMAP or POP3 or WebMail interface to allow users to actually read their mail. To my knowledge there is no freely available opensource solution that provides an entirely resilient IMAP/POP3 solution. Cyrus Murder comes close, in that it provides multiple back-end mail stores, easy migration of mailboxes between stores and resilient front ends. The typical approach here is to use a high-spec server with RAIDed disk systems, multiple PSUs etc. and to keep very good backups. Cheers, Matthew [!] http://gridengine.sunsource.net/ [*] hoststated(8) integrates with the traffic redirection capabilities of pf(4) to provide pretty much the same sort of functionality as a hardware loadbalancer via a firewall machine, but a lot cheaper. http://www.openbsd.org/cgi-bin/man.cgi?query=hoststated&sektion=8&format=html [+] http://httpd.apache.org/docs/2.2/mod/mod_proxy_balancer.html -- Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 258 bytes Desc: OpenPGP digital signature Url : http://lists.freebsd.org/pipermail/freebsd-cluster/attachments/20080805/890f394a/signature.pgp From sk.paix at gmail.com Tue Aug 5 15:53:07 2008 From: sk.paix at gmail.com (Sergej Kandyla) Date: Tue Aug 5 15:53:27 2008 Subject: High Availability FreeBSD www cluster In-Reply-To: <4898065A.5080008@powerzone.net.au> References: <4898065A.5080008@powerzone.net.au> Message-ID: <48981FDF.9040206@gmail.com> Michael Christie wrote: > Hi all , > > I want to cluster some freeBSD servers, The purpose of this is to > learn. I would like to run some basic services like www and mail on > a test network. I would like to set up the servers so if one server > falls over the other will take over the services automatically, load > balanceing would be good as well. > > web links any thing to help me get started would be good. No I do not > want to change over to linux. > > High Availability means that your cluster should work even some system components fail. http://en.wikipedia.org/wiki/High-availability_cluster For building HA cluster you should have at last two machines, first will run in master mode, second in slave( standby )mode. In every time only one machine works and provide some services (www, db, etc) Very good idea is to use NAS(SAN) - Network Access Storage ( http://en.wikipedia.org/wiki/Network-attached_storage ) with shared disk. Both nodes of HA cluster will use this shared disk (but only one in certain time). If one node fails, second node (standby node) will become a master of cluster and will start some services, that cluster provided. But NAS systems is not cheap!! Another way is to use software systems such us DRBD, NFS, chironfs, rsync etc. Most of this high-availability software solution works by replicating a disk partition in a master/slave mode. Heartbeat + DRBD is one of most popular redundant solutions. DRBD mirrors a partition between two machines allowing only one of them to mount it at a time. Heartbeat then monitors the machines, and if it detects that one of the machines has died, it takes control by mounting the mirrored disk and starting all the services the other machine is running. Unfortunately DRBD runs only on linux but I recommend you to see how it works for understanding this technology. http://www.rhic.bnl.gov/hepix/talks/041020am/miers.pdf http://www.linux-ha.org http://www.linux-ha.org/DRBD/GettingStarted http://www.linuxjournal.com/article/9074 For freebsd to mirror content on bouth nodes you can use rsync as in this howto: http://www.taygeta.com/ha-postgresql.html Another way like as DRBD is to use chironfs + nfs (sysutils/fusefs-chironfs/) http://www.furquim.org/chironfs Also look at CARP (Common Address Redundancy Protocol) man carp http://www.openbsd.org/faq/pf/carp.html http://www.postgresql.org/docs/8.3/static/high-availability.html (for databases) ps. sorry for my eng -- Best Wishes, PAIX-UANIC | SK3929-RIPE From raggen at passagen.se Wed Aug 6 16:19:43 2008 From: raggen at passagen.se (Roger Olofsson) Date: Wed Aug 6 16:19:49 2008 Subject: High Availability FreeBSD www cluster In-Reply-To: <4898065A.5080008@powerzone.net.au> References: <4898065A.5080008@powerzone.net.au> Message-ID: <4899C919.1060903@passagen.se> Michael Christie skrev: > Hi all , > > I want to cluster some freeBSD servers, The purpose of this is to > learn. I would like to run some basic services like www and mail on a > test network. I would like to set up the servers so if one server falls > over the other will take over the services automatically, load > balanceing would be good as well. I have googled, I could be looking in > the wrong place , there seems not to be much in regard to seting up > freebsd in a cluster, lots on linux. I have looked at the High > Availability Linux project , I see on the front page that it will run on > freebsd. > > So I am a bit lost and i am wanting to learn how to cluster freebsd web > and mail servers, I have looked at Beowulf clusters, which seem to give > computers more grunt, Can some on on the list please advise me on what > clustering softwhere i need to get started and if the High Availability > Linux project softwhere will do the job. > > > web links any thing to help me get started would be good. No I do not > want to change over to linux. > > > Thanks > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > > No virus found in this incoming message. > Checked by AVG - http://www.avg.com Version: 8.0.138 / Virus Database: > 270.5.12/1595 - Release Date: 2008-08-06 08:23 > > > Hello, I have been running freevrrpd and pen (http://siag.nu/pen/ or in ports) for HA web services. My setup was a firewall/gateway consisting of more than 1 machine using freevrrpd thus enabling failover for the firewall/gateway. I write firewall and not firewalls since freevrrpd creates a virtual ip that is failover'ed between the machines. On the firewall/gateway pen were running and pointed towards the web servers. Pen can point at as many web servers as you like and balances the load between them in a very simple way. If the web servers are identical in setup they become redundant. DNS loadbalancing is very similar. Good luck! /Roger From freebsd at optiksecurite.com Wed Aug 6 18:15:29 2008 From: freebsd at optiksecurite.com (FreeBSD) Date: Wed Aug 6 18:15:36 2008 Subject: High Availability FreeBSD www cluster In-Reply-To: <4899C919.1060903@passagen.se> References: <4898065A.5080008@powerzone.net.au> <4899C919.1060903@passagen.se> Message-ID: <4899D194.6000804@optiksecurite.com> Roger Olofsson a ?crit : > > > Michael Christie skrev: >> Hi all , >> >> I want to cluster some freeBSD servers, The purpose of this is to >> learn. I would like to run some basic services like www and mail on >> a test network. I would like to set up the servers so if one server >> falls over the other will take over the services automatically, load >> balanceing would be good as well. I have googled, I could be looking >> in the wrong place , there seems not to be much in regard to seting up >> freebsd in a cluster, lots on linux. I have looked at the High >> Availability Linux project , I see on the front page that it will run >> on freebsd. >> >> So I am a bit lost and i am wanting to learn how to cluster freebsd >> web and mail servers, I have looked at Beowulf clusters, which seem >> to give computers more grunt, Can some on on the list please advise me >> on what clustering softwhere i need to get started and if the High >> Availability Linux project softwhere will do the job. >> >> >> web links any thing to help me get started would be good. No I do not >> want to change over to linux. >> >> >> Thanks >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to >> "freebsd-questions-unsubscribe@freebsd.org" >> >> No virus found in this incoming message. >> Checked by AVG - http://www.avg.com Version: 8.0.138 / Virus Database: >> 270.5.12/1595 - Release Date: 2008-08-06 08:23 >> >> >> > > Hello, > > I have been running freevrrpd and pen (http://siag.nu/pen/ or in ports) > for HA web services. > > My setup was a firewall/gateway consisting of more than 1 machine using > freevrrpd thus enabling failover for the firewall/gateway. I write > firewall and not firewalls since freevrrpd creates a virtual ip that is > failover'ed between the machines. > > On the firewall/gateway pen were running and pointed towards the web > servers. Pen can point at as many web servers as you like and balances > the load between them in a very simple way. If the web servers are > identical in setup they become redundant. DNS loadbalancing is very > similar. > > Good luck! > > /Roger > I don't have any experience yet with it but I'm planning on using CARP with PF to do redondant gateways. You can do round-robin RDR with PF to distribute the load. You can even put the same server IP more than one time in the list to forward more traffic to this server! I tested it but I didn't tried CARP yet. I read I couple of articles on CARP with BSD, I'm a little bit surprised that nobody made reference to it yet. Now it's done ;) Martin From chris at smartt.com Thu Aug 7 00:41:21 2008 From: chris at smartt.com (Chris St Denis) Date: Thu Aug 7 00:41:27 2008 Subject: High Availability FreeBSD www cluster In-Reply-To: <4898119F.5020503@datapipe.com> References: <4898065A.5080008@powerzone.net.au> <4898119F.5020503@datapipe.com> Message-ID: <489A13FB.1050103@smartt.com> Paul Procacci wrote: > Michael Christie wrote: >> Hi all , >> >> I want to cluster some freeBSD servers, The purpose of this is to >> learn. I would like to run some basic services like www and mail on >> a test network. I would like to set up the servers so if one server >> falls over the other will take over the services automatically, load >> balanceing would be good as well. I have googled, I could be looking >> in the wrong place , there seems not to be much in regard to seting >> up freebsd in a cluster, lots on linux. I have looked at the High >> Availability Linux project , I see on the front page that it will run >> on freebsd. >> >> So I am a bit lost and i am wanting to learn how to cluster freebsd >> web and mail servers, I have looked at Beowulf clusters, which seem >> to give computers more grunt, Can some on on the list please advise >> me on what clustering softwhere i need to get started and if the High >> Availability Linux project softwhere will do the job. >> >> >> web links any thing to help me get started would be good. No I do not >> want to change over to linux. >> >> >> Thanks >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to >> "freebsd-questions-unsubscribe@freebsd.org" > > I've used freevrrpd (/usr/ports/net/freevrrpd) for some clients with > success. > Additionally doing some googling revealed "SG Cluster" > (http://www.freebsd.org.hk/html/sgcluster/) though I'm not sure how > active this is and/or really if it's what your looking for. > > ~Paul > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" Also see "man carp" -- Chris St Denis Programmer SmarttNet (www.smartt.com) Ph: 604-473-9700 Ext. 200 ------------------------------------------- "Smart Internet Solutions For Businesses" From Peter.Ross at alumni.tu-berlin.de Thu Aug 7 01:05:19 2008 From: Peter.Ross at alumni.tu-berlin.de (Peter Ross) Date: Thu Aug 7 01:05:32 2008 Subject: High Availability FreeBSD www cluster In-Reply-To: <4899D194.6000804@optiksecurite.com> References: <4898065A.5080008@powerzone.net.au> <4899C919.1060903@passagen.se><4899D194.6000804@optiksecurite.com> Message-ID: <20080807100821.U1526@klein.bigpond.com> Hi, Michael Christie wrote: > I want to cluster some freeBSD servers, The purpose of this is to learn. > I would like to run some basic services like www and mail on a test > network. I would like to set up the servers so if one server falls over > the other will take over the services automatically, load balanceing would > be good as well. I have googled, I could be looking in the wrong place , > there seems not to be much in regard to seting up freebsd in a cluster, > lots on linux. I have looked at the High Availability Linux project , I > see on the front page that it will run on freebsd. > > So I am a bit lost and i am wanting to learn how to cluster freebsd web > and mail servers, I have looked at Beowulf clusters, which seem to give > computers more grunt, Can some on on the list please advise me on what > clustering softwhere i need to get started and if the High Availability > Linux project softwhere will do the job. pound (/usr/ports/www/pound) can be used on HTTP(S) level. >From pkg-descr: The Pound program is a reverse proxy, load balancer and HTTPS front-end for Web server(s). Pound was developed to enable distributing 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. WWW: http://www.apsis.ch/pound/ - Anders Nordby Regards Peter From michael at powerzone.net.au Thu Aug 7 06:44:23 2008 From: michael at powerzone.net.au (Michael Christie) Date: Thu Aug 7 06:44:30 2008 Subject: High Availability FreeBSD www cluster In-Reply-To: <20080807100821.U1526@klein.bigpond.com> References: <4898065A.5080008@powerzone.net.au> <4899C919.1060903@passagen.se><4899D194.6000804@optiksecurite.com> <20080807100821.U1526@klein.bigpond.com> Message-ID: <489A99CD.5080103@powerzone.net.au> Thank you all for your input. Carp looks like it needs some investigation Thanks Michael Peter Ross wrote: > Hi, > > Michael Christie wrote: > > >> I want to cluster some freeBSD servers, The purpose of this is to learn. >> I would like to run some basic services like www and mail on a test >> network. I would like to set up the servers so if one server falls over >> the other will take over the services automatically, load balanceing would >> be good as well. I have googled, I could be looking in the wrong place , >> there seems not to be much in regard to seting up freebsd in a cluster, >> lots on linux. I have looked at the High Availability Linux project , I >> see on the front page that it will run on freebsd. >> >> So I am a bit lost and i am wanting to learn how to cluster freebsd web >> and mail servers, I have looked at Beowulf clusters, which seem to give >> computers more grunt, Can some on on the list please advise me on what >> clustering softwhere i need to get started and if the High Availability >> Linux project softwhere will do the job. >> > > pound (/usr/ports/www/pound) can be used on HTTP(S) level. > > >From pkg-descr: > > The Pound program is a reverse proxy, load balancer and HTTPS front-end > for Web server(s). Pound was developed to enable distributing 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. > > WWW: http://www.apsis.ch/pound/ > > - Anders Nordby > > Regards > Peter > _______________________________________________ > freebsd-cluster@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-cluster > To unsubscribe, send any mail to "freebsd-cluster-unsubscribe@freebsd.org" > > > From sk.paix at gmail.com Fri Aug 8 09:25:17 2008 From: sk.paix at gmail.com (Sergej Kandyla) Date: Fri Aug 8 09:25:24 2008 Subject: High Availability FreeBSD www cluster In-Reply-To: <4898065A.5080008@powerzone.net.au> References: <4898065A.5080008@powerzone.net.au> Message-ID: <489C10F4.5030001@gmail.com> Michael Christie wrote: > Hi all , > > I want to cluster some freeBSD servers, > web links any thing to help me get started would be good. No I do not > want to change over to linux. > also some interesting link http://phaq.phunsites.net/2006/08/11/realtime-file-system-replication-on-freebsd/ -- Best Wishes, PAIX-UANIC | SK3929-RIPE From OK at mail.orsec.fr Fri Aug 8 09:59:41 2008 From: OK at mail.orsec.fr (Philippe Laquet) Date: Fri Aug 8 09:59:48 2008 Subject: High Availability FreeBSD www cluster In-Reply-To: <489A99CD.5080103@powerzone.net.au> References: <4898065A.5080008@powerzone.net.au> <4899C919.1060903@passagen.se><4899D194.6000804@optiksecurite.com> <20080807100821.U1526@klein.bigpond.com> <489A99CD.5080103@powerzone.net.au> Message-ID: <1218187769.23553.5.camel@plaquet> CARP does the job perfectly! Is you have to LB/RP from a front end (the SPOF?) you can also take a quick look on LighttpD with the Proxy module (very simple & efficient) In a heavier (but also quite simple) environment : * Two (or more) LB/RP on the front with lighttpdproxy - HA with CARP * Two (or more) Load Balanced Web "Back End" servers ;) On jeu, 2008-08-07 at 16:44 +1000, Michael Christie wrote: > Thank you all for your input. Carp looks like it needs some investigation > > Thanks > > Michael > > Peter Ross wrote: > > Hi, > > > > Michael Christie wrote: > > > > > >> I want to cluster some freeBSD servers, The purpose of this is to learn. > >> I would like to run some basic services like www and mail on a test > >> network. I would like to set up the servers so if one server falls over > >> the other will take over the services automatically, load balanceing would > >> be good as well. I have googled, I could be looking in the wrong place , > >> there seems not to be much in regard to seting up freebsd in a cluster, > >> lots on linux. I have looked at the High Availability Linux project , I > >> see on the front page that it will run on freebsd. > >> > >> So I am a bit lost and i am wanting to learn how to cluster freebsd web > >> and mail servers, I have looked at Beowulf clusters, which seem to give > >> computers more grunt, Can some on on the list please advise me on what > >> clustering softwhere i need to get started and if the High Availability > >> Linux project softwhere will do the job. > >> > > > > pound (/usr/ports/www/pound) can be used on HTTP(S) level. > > > > >From pkg-descr: > > > > The Pound program is a reverse proxy, load balancer and HTTPS front-end > > for Web server(s). Pound was developed to enable distributing 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. > > > > WWW: http://www.apsis.ch/pound/ > > > > - Anders Nordby > > > > Regards > > Peter > > _______________________________________________ > > freebsd-cluster@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-cluster > > To unsubscribe, send any mail to "freebsd-cluster-unsubscribe@freebsd.org" > > > > > > > _______________________________________________ > freebsd-cluster@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-cluster > To unsubscribe, send any mail to "freebsd-cluster-unsubscribe@freebsd.org"