Reputation: 227
I am working on a .NET Web Service and I want to run multiple instances of that service on the same computer for them to work as a cluster (high availability cluster although using only one computer) and make them communicate through UDP packages in order to perform high availability operations such leader selection (bully algorithm) and so on. How could I launch several instances of the same service on the same computer? Do you know any tutorial or info to start working in that direction?
Upvotes: 0
Views: 315
Reputation: 2796
The name of each service installation instance must be unique. You should configure your service so that you can change the service name in configuration.
Have a look at this article for instructions.
Upvotes: 1