burnt1ce
burnt1ce

Reputation: 14897

Web deploy 2.0 vs. Web Farm Framework 2.0

After reading Scott Gu's newest post, I wondered how Web Deploy and Web Farm Framework are different?

Upvotes: 1

Views: 1515

Answers (2)

agp
agp

Reputation: 363

In the WebDeploy article ScottGu has stated the below which should clear the confusion:

"Web Deploy can be used together with the Microsoft Web Farm Framework to enable automated deployment across a web-farm. You can install and configure Web Deploy on a primary server in a Web Farm Framework cluster – and the secondary servers within the web farm cluster will then monitor and clone any applications you deploy with it."

So basically, use WebDeploy to update your primary server in the cluster and the WFF will then replicate the same across the entire cluster.

Upvotes: 3

Andras Zoltan
Andras Zoltan

Reputation: 42363

Web deploy is how the applications (websites) and server configurations are synchronised between different machines in the farm.

The farm itself is created and managed by WFF - ergo it's not an either/or: WFF relies on Web deploy for part of it's synchronising operation.

Upvotes: 5

Related Questions