I work for a small business that has one web server. It's served us fine in the past but as we're getting bigger we need another server.
How would I set up two servers to work together? I've read a bit about Pound load balancing, would I need a third computer to make this work?
The server will be doing basic web serving and a few light database operations.
I'm the most "techy" guy in the business and we've never had the need to hire a server guy so they're asking me to do this.
Can you help me out?
I don't know anything about Pound, but I've done this with HAProxy and the theory I'm guessing is the same:
So yes, you'll need a third server, however - there's a few things that might make your life better:
Load balancing and .NET websites can have some fun when it comes to session states and locally stored variables, but load balancers generally have settings that allow you to stick users to one web server, so that all future requests go to the same server for read the same data. If you don't have this issue then feel free to use round robin or some other method.