Questions tagged [web-farm]

Collection of web servers or services deployed behind a load balancer. Also called a server cluster.

Collection of web servers or services deployed behind a load balancer. Also called a server cluster.

For more explanation see the links:

https://en.wikipedia.org/wiki/Server_farm

https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/web-farm?view=aspnetcore-6.0

221 questions
0
votes
1 answer

Do I need to specify MachineKey for iis instances using shared configuration? And Why?

I am setting up iis webfarm using shared configuration following this tutorial: http://www.iis.net/learn/manage/managing-your-configuration-settings/shared-configuration_264 In this article, it mentioned how to export iisConfigurationKey to import…
bigbearzhu
  • 2,381
  • 6
  • 29
  • 44
0
votes
1 answer

How to access asp.net application faster for First request?

We are having approximately 100 virtual directories in server and all the 100 virtual directories will be pointing to single physical path. For every update, it is taking lot of time to access URL's for first request only. Is there any way to access…
Praveen
  • 71
  • 2
  • 9
0
votes
1 answer

Viewstate verification failed. Reason: The viewstate supplied failed integrity check

It's been a while that I'm getting "Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a…
Ali. B
  • 65
  • 9
0
votes
2 answers

restrict second login while first login session is active

In case of Asp.NET web application, using state server session and web farm; How to restrict user from login multiple times. If user is already logged in, He shouldn't be allowed to login using the same credential from different browser. I have…
Ajay Kumar
  • 504
  • 2
  • 10
  • 23
0
votes
0 answers

Load balancing Vs MyMethod

I am planning to move one of my websites to a web farm (only 2 servers). I understand the basic concept of how load balancing works but need help with 2 different ideas I have. Load balancing with webfarm I am worried about SEO, duplicate content,…
pessi
  • 681
  • 1
  • 10
  • 26
0
votes
0 answers

Creating File on Network File Share C# 2008 server web farm

I am trying to create a file on a network share drive and continually coming up with the same error Event Log Error Event code: 4011 Event message: An unhandled access exception has occurred. Event time: 9/15/2014 3:42:45 PM Event time (UTC):…
scripter78
  • 1,117
  • 3
  • 22
  • 50
0
votes
1 answer

ISA Web Farm and WCF service hosted in a Windows Service with basicHttpBinding

I have created a WCF service that needs to be hosted in a Window Service because it is participating in a P2P mesh (NetPeerTcpBinding). When I tried to host the WCF Service with NetPeerTcpBinding endpoints in the IIS Service container the service…
Ryan Pedersen
  • 3,177
  • 27
  • 39
0
votes
2 answers

How do I setup an Azure Web Farm on multiple VM's using a shared IIS config

I setup a VM running Windows Server 2012 R2 (VM1) and configured it to run IIS. I then created another VM in the same region off an image I made from the first (VM2). These two are in their own availability set located in the West US data center.…
0
votes
2 answers

ASP.NET Page Caching in a Web Farm

We have a small web farm(2 servers) balanced by the built in network load balancer in Windows 2003. We have a few pages that use page caching. My question is: Is it possible that that a given user could cause a page to be cached and another user…
Achilles
  • 11,165
  • 9
  • 62
  • 113
0
votes
1 answer

Azure web application (webapi) in Web Farm / Load balancing

WebForm : In webform (with session) state application in web farm environment the session is stored in SQL Server storage which can be accessed by all the servers in a webfarm. This means the logged in user's request can get the same session…
activebiz
  • 6,000
  • 9
  • 41
  • 64
0
votes
1 answer

How can I code my web app so that it knows what web server it's on?

My company has an ASP.NET web app that runs on a web farm that's load balanced by Enterprise Foundry ServerIron XL 8 hardware. For debugging purposes, we've got a page that just reports what server it's running on. Currently, we manually copy a…
Joshua Frank
  • 13,120
  • 11
  • 46
  • 95
0
votes
1 answer

How can we solve the below scenario?

We have one application which is hosted on 4 different server if support the one web server is down that time what will going to be happen for the user who is going to do transaction on that particular web server. Can any one explain me the scenario…
Hemant Kumar
  • 4,593
  • 9
  • 56
  • 95
0
votes
1 answer

How to know whether the file has been changed on same server or has transferred from another server in asp.net

We have a webfarm scenario on which FileSystemWatcher is used to notify the changes occured on file.When a file is changed or created on one server it's gets noticed and the changes are transferred to another servers on webfarm.Again the transferred…
0
votes
1 answer

Environment.MachineName and IP address in a web farm in ASP.Net

Will the following line of code always return a unique machine name in a web farm, or it could sometimes return nothing/duplicate name? string currentRequestWebFarmNode = Environment.MachineName; Also, is IP address for each web farm node obtained…
Sunil
  • 20,653
  • 28
  • 112
  • 197
0
votes
1 answer

Is there any alternative to file system watcher?

We are creating a webfarm and used filesystemwatcher to notify changes when some files are uploaded on one of the server.When there are large no of files file system watcher is not working properly.It shows internalbuffersize overflow problem.Is…