Questions tagged [server-farm]
49 questions
47
votes
3 answers
Server farm (service plan) SKUs
Is there documentation in the wild that lists the sku names and tiers supported by Azure app service plans (server farms).
eg:
name: "S1",
tier: "Standard" = an S1 Standard.
and
name: "Y1",
tier: "Dynamic" = A function consumption plan.
A list of…

Hoffmania
- 926
- 2
- 7
- 15
15
votes
5 answers
What to use instead of the "lock" statement when the code is running on multiple machines?
The lock statement ensures that one thread does not enter a critical section of code while another thread is in the critical section. However, it won't work if the workload is spread across a farm of servers (e.g. a few IIS servers + a load…

Marek Grzenkowicz
- 17,024
- 9
- 81
- 111
5
votes
3 answers
How to avoid single point of failure when using state server in ASP.NET website
In my current project, we have to create a website (ASP.NET MVC) which is likely to have sufficient load to demand a server farm. I understand that if server farm is used, session states must be stored on somewhere else such as SQL server database…

Hemant
- 19,486
- 24
- 91
- 127
3
votes
7 answers
PHP $_SERVER[‘SERVER_ADDR’] variable always returns 127.0.0.1
We have multiple load-balanced webserver machines running the same PHP webapp (LAMP) and I'd like to run slightly different code on each server (for testing purposes). I was hoping to use the $_SERVER['SERVER_ADDR'] super global to do something like…

Tom
- 14,041
- 16
- 64
- 80
3
votes
1 answer
Deploying a socket.io app in on multiple-nodes
I have an app on heroku that uses socket.io for server-client communication. Everything is working just fine. However, once I scale my app to more than 1 dyno, I get several http request errors:
can't establish a connection to the server at…

George
- 449
- 3
- 10
2
votes
1 answer
Dundas Charts File Not Found
I'm looking through a legacy system and have found that the Dundas charts throws a file not found exception quite often, but not all the time.
The system has multiple servers picking up requests and it has therefore set Dundas to run using a server…

Bob
- 3,074
- 11
- 43
- 62
2
votes
1 answer
I get 429 status code for microsoft.web/serverFarms when I create function App on azure
I have azure functions developed in node js. When I create a cloud instance for function app, it gets stuck on deployment process with all the resources OK status. Microsoft.Web/serverfarms returning 429. The error message reads as:
**"status"**:…

Hamad Rakshani
- 115
- 2
- 11
2
votes
1 answer
MSMQ in a server farm
We are considering using MSMQ as a message processing service in our application. What we want is - MSMQ in a farm of servers sitting behind Network Load Balancer (NLB) that distributes load among the nodes. I have the following questions for which…

muruge
- 4,083
- 3
- 38
- 45
2
votes
1 answer
What's the best way to simulate a complex production web development environment?
I want to create a modestly scalable development environment for an in-development web service.
Ideally, there would be an nginx web server with haproxy and a few database servers, websockets, the works.
I'd be going with Amazon cloud services for…

eastydude5
- 597
- 2
- 5
- 17
2
votes
1 answer
SSRS 2008 R2, Farm - Load Balanced and HTTP status 401: Unauthorized
I have SQL Server Reporting services 2008 R2 environment in my Company.
2 servers Windows 2008 R2: PRERPSW01 and PRERPSW02, in domain DOMAIN_Company
NLB name: PRERPS
IPs address ( I get by ping command):
PRERPSW01 192.168.110.41
prerps …

Kiquenet
- 14,494
- 35
- 148
- 243
2
votes
1 answer
website creation fails with serverfarm not found Azure Powershell
I am struggling to get the Drupal Webapp created using powershell with a GalleryTemplate Json file. It creates Serverfarm, Database servers but fails for website creation. I am not able to figure out how to move ahead as website creation need to use…

H Bala
- 1,271
- 2
- 14
- 28
2
votes
1 answer
IIS Server Farm Health API?
we have a Windows Server 2008 R2 running 4 virtual servers on a Server Farm, but currently the only way we're able to check the health of the servers is by RDP'ing on to the server that manages them and going into IIS. We would like to be able to…

Richard
- 4,341
- 5
- 35
- 55
2
votes
2 answers
Shared authentication between two servers
I've set up the same site on two servers sitting behind a load balancer. I have the following in my web.config file

Jhorra
- 6,233
- 21
- 69
- 123
2
votes
0 answers
App for designing server farm
I was wondering. Is there an app for designing server farm layouts? I know that this can be achieved using UML designer apps or Visio but I was looking for something more specialised on this particular part of a startup deployment. An app for…

Eduard Bulai
- 21
- 1
2
votes
2 answers
How does global.asax function in server farm?
I'm confused as to how the global.asax file would run in a server farm. Does each server have its own instance running or is it a shared instance.
For example in my global.asax in the Application_Start event I initialize a singleton object that…

chobo
- 31,561
- 38
- 123
- 191