473,657 Members | 2,395 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Multiple Application Pools

Hello All,

IIS 6.0 - I have an application which resides in its own application pool.
Does anyone know if we can create multiple application pools for the same
application?

If we can create multiple application pools to serve a single application's
request will it improve the performance?

Thanks for your suggestions!!
Oct 19 '06 #1
4 3767
re:
If we can create multiple application pools to serve a single application's
request will it improve the performance?
No. An application can only run under one process.

How did you think performance would be improved ?

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====
"Diffident" <Di*******@disc ussions.microso ft.comwrote in message
news:99******** *************** ***********@mic rosoft.com...
Hello All,

IIS 6.0 - I have an application which resides in its own application pool.
Does anyone know if we can create multiple application pools for the same
application?

If we can create multiple application pools to serve a single application's
request will it improve the performance?

Thanks for your suggestions!!

Oct 19 '06 #2
You can, but they need to be on different servers :)
Check out these articles about creating a load-balanced web farm for
your application:

http://support.microsoft.com/kb/815162/en-us
http://www.west-wind.com/presentatio...indows2003.asp

--
Chris Fulstow
MCP, MCTS
http://chrisfulstow.blogspot.com/
Diffident wrote:
Hello All,

IIS 6.0 - I have an application which resides in its own application pool.
Does anyone know if we can create multiple application pools for the same
application?

If we can create multiple application pools to serve a single application's
request will it improve the performance?

Thanks for your suggestions!!
Oct 19 '06 #3
Thanks, Chris, for pointing out that very special circumstance.
I assumed, as I suspect the situation is, that he's got only one server.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====
"Chris Fulstow" <ch**********@h otmail.comwrote in message
news:11******** **************@ m73g2000cwd.goo glegroups.com.. .
You can, but they need to be on different servers :)
Check out these articles about creating a load-balanced web farm for
your application:

http://support.microsoft.com/kb/815162/en-us
http://www.west-wind.com/presentatio...indows2003.asp

--
Chris Fulstow
MCP, MCTS
http://chrisfulstow.blogspot.com/
Diffident wrote:
>Hello All,

IIS 6.0 - I have an application which resides in its own application pool.
Does anyone know if we can create multiple application pools for the same
application?

If we can create multiple application pools to serve a single application's
request will it improve the performance?

Thanks for your suggestions!!

Oct 19 '06 #4
You can using Web gardens; however, inspite of the MSFT documentation, I've
tried it and never saw a performance gain (or perhaps never hit the required
load to experience the need).

--

From MSFT TechNet:

Configuring Web Gardens with IIS 6.0 (IIS 6.0)

Important

This feature of IIS 6.0 is available only when IIS is running in worker process
isolation mode.

In IIS 6.0 worker process isolation mode, application pools enhance Web site
or application reliability by isolating applications and the worker processes
that service those applications. For even greater reliability, you can configure
an application pool to be supported by multiple worker processes. An application
pool that uses more than one worker process is called a Web garden. The worker
processes in a Web garden share the requests that arrive for that particular
application pool. If a worker process fails, another worker process can continue
to process requests.

Note

Web gardens are different from Web farms. A Web garden is configured on a
single server by specifying multiple worker processes for an application
pool. Web farms use multiple servers for a Web site.

Source: http://www.microsoft.com/technet/pro....mspx?mfr=true
--

To configure:

Properties of the application pool >
Performance tab >
Web garden section, change the maximum number of worker processes from 1
to your desired #.

-dl
--
David Longnecker
Web Developer
http://blog.tiredstudent.com
re:
>If we can create multiple application pools to serve a single
application' s request will it improve the performance?
No. An application can only run under one process.

How did you think performance would be improved ?

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====
"Diffident" <Di*******@disc ussions.microso ft.comwrote in message
news:99******** *************** ***********@mic rosoft.com...
>Hello All,

IIS 6.0 - I have an application which resides in its own application
pool. Does anyone know if we can create multiple application pools
for the same application?

If we can create multiple application pools to serve a single
application' s request will it improve the performance?

Thanks for your suggestions!!

Oct 19 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
23068
by: Abhishek Srivastava | last post by:
Hello All, In IIS 6.0 We have a concept of worker processes and application pools. As I understand it, we can have multiple worker process per appliction pool. Each worker process is dedicated to a pool. If I assign only one application to a applicaton pool and have multiple worker processes assigned to that pool. Will my application be processed by many worker processes?
5
10513
by: BPearson | last post by:
Hello I would like to have several sites share a single web.config file. To accomplish this, I would point the root of these sites to the same folder. Is there any reason why I might not want to do this? (IIS 5 or 6 In case you're wondering why I would do this, we have many web sites on a single server, and there are groups of sites that need to share common configuration information. I'd like to ease some administration by having one...
2
1206
by: John Holmes | last post by:
I've got a test webserver setup on our intranet on the same domain that I and other developers are on. We create and edit our web projects from that location. If one person is running their project in debug mode, then another one tries to run their project we get the following error: Error while trying to run project: Unable to start debugging on the web server. A debugger is already attached. Is it possible for more than one person to...
1
2372
by: dreamlinetheater | last post by:
I have several sites running on Windows 2003 Server in true IIS 6 mode with Application pools. One site has about 9 Virtual Directories in it that are all configured to run as applications. Each of these have a dedicated application pool with all different memory settings in the Memory Recycling area. The applications are all .Net based applications. They are all pretty frequently used apps and as a rule of thumb, we assigned more...
21
2162
by: Chris | last post by:
I'm trying to get an existing VS.NET project up on my Win2003 server and I get the following error (on the actual website page): "It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS." I've been told by the previous developer that the website needs to be set as a "application". I...
3
1702
by: Henrik Dahl | last post by:
Hello! From default, the ASPNET user is giving the process identity for the ASP.NET runtime environment of IIS, however it's possible to change the user by modifying the <processModel> element in the machine.config file. Is it possible to have multiple IIS servers running, each with their own user specified for the process identity or to specify the process identity specifically for each of the ASP.NET WebForms applications run by a...
6
15738
by: M Craig | last post by:
I'm trying to write a custom installation engine to plug into our existing build system. Some things I'm trying to do are, Create/Delete/Start/Stop Application Pools, Web Sites, and Virtual Directories. At this point I'd be happy if someone can provide a sample of how to Stop an application pool. Or point me in the right direction. Thanks!
0
1337
by: Wayne Sepega | last post by:
We have a website with multiple web applications, most of the applications have their own apppools. When a user logs into the site we put some information in their session, but due to different apppools these session items are not shared across the multiple applications, nor can we clear the session info in the log off page we have. As far as I know there is no way to get around this if the session is stored in memory, my question is: ...
13
4748
by: Kevin Liebowicz | last post by:
Yes, I wasted the past two days trying to fix this. Yes, this is on a Win2003 Server. Yes, this machine is a domain controller. Yes, I seen the dozens of KB articles like this one: http://support.microsoft.com/default.aspx?scid=kb;en-us;Q315158 But the problem is that 99% of these are for ASP .NET 1.x and this is .NET 2.x which I just installed to try and get .net working for the first time ever. I've see all the HACKS to get .net 1.x...
0
8306
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8825
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8503
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8605
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7327
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6164
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4152
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1955
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.