ASP.NET problem

  • Thread starter Thread starter Boniek
  • Start date Start date
B

Boniek

Hi

Still I have problem with my asp.net. Few days ago my asp.net application
worked but now my application is crushed. I mean when I go to the page that
application I receive message "Server Application Unavailable". I have that
problem and I don't know how it resolve. Later I saw that process
"aspnet_wp" work in system processes but now I don't see. I Remember that I
changed password of ASPNET account and maybe that don't work. Now I change
password to empty but still don't work.
I have checked file "machine.config" and "system.web, processModel" and
there are ASPNET account with AutoGenerate password. Why it doesn't work ?
What I have to do ?

Thank's all
Boniek
 
Boniek said:
I have checked file "machine.config" and "system.web, processModel" and
there are ASPNET account with AutoGenerate password. Why it doesn't work ?

Change the password attribute on processModel to the password you've
assigned to the ASPNET account. AutoGenerate means a random password
was created for the account in the LSA. It no longer matches the password
you set on the account.

In the documentation for <processModel> under the Reference / ASP.NET
Schema Settings section, there is advice on better securing this config file
with aspnet_setreg.exe and some recommended permissions once you put
a clear text password in it.

I'm not certain there is a way back to using AutoGenerate once you've changed
the ASPNET account password; other than to remove and then re-install the
..NET Framework SDK such that it auto-generates another secret password.


Derek Harmon
 
Back
Top