How to turn one server into many servers? (Virtualization/VMWare)

Posted by user1229962 on Stack Overflow See other posts from Stack Overflow or by user1229962
Published on 2012-10-06T03:25:07Z Indexed on 2012/10/06 3:37 UTC
Read the original article Hit count: 68

Filed under:
|
|

I'm hoping for a high level discussion of this problem I know is quickly approaching my application.

I have a server that binds on a specific port and manages TCP Sockets from my clients. I know that it is common practice to use VMWare to virtualize servers and run multiple servers at once.

How can a single server design be changed to support multiple servers?

Multiple servers can't bind to the same port. If I had to guess I would say a proxy server binds to the port and then sends connections off to the other servers to be handled as if it was still a single server application.

I'm wondering what options there are and what are the common practices for solving this problem?

Thanks in advance!

© Stack Overflow or respective owner

Related posts about tcp

Related posts about vmware