Worker Process Account for ASP.NET

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Worker Process Account for ASP.NET

    Hi,

    I am trying to figure out the default Worker Process Account for ASP.NET
    Worker Process.
    Following is my list -

    IIS 5.0 on Windows 2000 - ASPNET
    IIS 5.0 on Windows 2000 with Domain Contoller - IWAM_<machine name>

    IIS 5.1 on Windows XP - ASPNET

    IIS 6.0 with worker proccess isolation mode on Windows 2003 - NETWORK
    SERVICE
    IIS 6.0 with IIS5.0 isolation mode on Windows 2003 - ASPNET

    Is the above list correct? Is there any MSDN document that documents this.

    Thanks in advance for your feedback.
    Ajay Choudhary


    Ajay Choudhary Guest

  2. Similar Questions and Discussions

    1. #38111 [Com]: PHP crashes IIS worker process and application pool
      ID: 38111 Comment by: wimvm1 at gmail dot com Reported By: svendavidh at hotmail dot com Status: No Feedback...
    2. worker process aspnet_wp.exe identity
      If the woker process is configured to be run under username="machine" in machine.config and impersonate=true under web.config, will the impersonated...
    3. Worker Process Timeout Woes
      Hi, all. I am getting the following entry in the Event Log once or twice a day: "A worker process with process id of '2496' serving application...
    4. Two Worker Process running at once
      I have been having a problem where two aspnet_wp are starting when I view a web page I made. This has just started happening. If anyone has had a...
    5. ASP.NET worker process size keeps growing.
      It seems that asp.net worker process keeps growing and it slows the web server down. Does anybody have an idea what could trigger this kind of...
  3. #2

    Default Re: Worker Process Account for ASP.NET

    Under Windows 2000 and WinXP the worker process runs as the local ASPNET
    account. This can be configured in machine.config by changing username/password:

    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/gngrfProcessmodelSection.asp[/url]

    Windows 2003 uses the identity as configured in IIS, and by default this
    is the local Network Service account. This can be changed by selecting the
    AppPool that your application is configured for and selecting the Identity
    Tab and choosing a user there.

    -Brock
    DevelopMentor
    [url]http://staff.develop.com/ballen[/url]


    > Hi,
    >
    > I am trying to figure out the default Worker Process Account for
    > ASP.NET
    > Worker Process.
    > Following is my list -
    > IIS 5.0 on Windows 2000 - ASPNET
    > IIS 5.0 on Windows 2000 with Domain Contoller - IWAM_<machine name>
    >
    > IIS 5.1 on Windows XP - ASPNET
    >
    > IIS 6.0 with worker proccess isolation mode on Windows 2003 - NETWORK
    > SERVICE
    > IIS 6.0 with IIS5.0 isolation mode on Windows 2003 -
    > ASPNET
    > Is the above list correct? Is there any MSDN document that documents
    > this.
    >
    > Thanks in advance for your feedback.
    > Ajay Choudhary


    Brock Allen Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139