PC Review


Reply
Thread Tools Rating: Thread Rating: 3 votes, 1.00 average.

ASP.NET service fail to start during bootup but succeed later

 
 
Martin
Guest
Posts: n/a
 
      15th Sep 2004
We got a problem and I think we now the reason but not the answer.
The service "ASP.NET" fail to start when Windows bootup but can easily be
manually started afterwards.

The error message in the event viewer says:
Source: Service Control Manager
EventID: 7000
Message: The ASP.NET State Service service failed to start due to the
following error: The account name is invalid or does not exist, or the
password is invalid for the account name specified.

After logging in to the system it is no problem to manually start the
service (control panel-services-mark the service and then press start).

I think the service try to start before the AD has startet and that is why
we got this error message. The service use a domain account called "latitud"
which has full administrative rights in the domain. The machine is a Windows
2000 server with AD and acts as a domain controller. Except the
operativ-system we're running the IIS and ASP.NET -services, nothing more.

Any help would be appriciate. I had an idea of using dependecies for this
service to force it to start later but I have not succeed that way.
Please direct any answers to both the group and to (E-Mail Removed)

Sincerely
Martin Rådbo
Teknologia
 
Reply With Quote
 
 
 
 
Jerold Schulman
Guest
Posts: n/a
 
      15th Sep 2004
On 15 Sep 2004 04:38:18 -0700, (E-Mail Removed) (Martin) wrote:

>We got a problem and I think we now the reason but not the answer.
>The service "ASP.NET" fail to start when Windows bootup but can easily be
>manually started afterwards.
>
>The error message in the event viewer says:
>Source: Service Control Manager
>EventID: 7000
>Message: The ASP.NET State Service service failed to start due to the
>following error: The account name is invalid or does not exist, or the
>password is invalid for the account name specified.
>
>After logging in to the system it is no problem to manually start the
>service (control panel-services-mark the service and then press start).
>
>I think the service try to start before the AD has startet and that is why
>we got this error message. The service use a domain account called "latitud"
>which has full administrative rights in the domain. The machine is a Windows
>2000 server with AD and acts as a domain controller. Except the
>operativ-system we're running the IIS and ASP.NET -services, nothing more.
>
>Any help would be appriciate. I had an idea of using dependecies for this
>service to force it to start later but I have not succeed that way.
>Please direct any answers to both the group and to (E-Mail Removed)
>
>Sincerely
>Martin Rådbo
>Teknologia



Try using tip 69 in the 'Tips & Tricks' at http://www.jsiinc.com
to make it dependent on the NetLogon service.

or

make it dependent on the Spooler service and make the Spooler service
dependent on the NetLogon service.


Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
Reply With Quote
 
Martin
Guest
Posts: n/a
 
      18th Sep 2004
Thanks.

I tried that but still the ASP.NET service fail to start during bootup
with error message that user name or password is wtong, but it is no
problem to start it after bootup with the same credentials.
Any other idea?

// Martin


Jerold Schulman <(E-Mail Removed)> wrote in message news:<(E-Mail Removed)>...
> On 15 Sep 2004 04:38:18 -0700, (E-Mail Removed) (Martin) wrote:
>
> >We got a problem and I think we now the reason but not the answer.
> >The service "ASP.NET" fail to start when Windows bootup but can easily be
> >manually started afterwards.
> >
> >The error message in the event viewer says:
> >Source: Service Control Manager
> >EventID: 7000
> >Message: The ASP.NET State Service service failed to start due to the
> >following error: The account name is invalid or does not exist, or the
> >password is invalid for the account name specified.
> >
> >After logging in to the system it is no problem to manually start the
> >service (control panel-services-mark the service and then press start).
> >
> >I think the service try to start before the AD has startet and that is why
> >we got this error message. The service use a domain account called "latitud"
> >which has full administrative rights in the domain. The machine is a Windows
> >2000 server with AD and acts as a domain controller. Except the
> >operativ-system we're running the IIS and ASP.NET -services, nothing more.
> >
> >Any help would be appriciate. I had an idea of using dependecies for this
> >service to force it to start later but I have not succeed that way.
> >Please direct any answers to both the group and to (E-Mail Removed)
> >
> >Sincerely
> >Martin Rådbo
> >Teknologia

>
>
> Try using tip 69 in the 'Tips & Tricks' at http://www.jsiinc.com
> to make it dependent on the NetLogon service.
>
> or
>
> make it dependent on the Spooler service and make the Spooler service
> dependent on the NetLogon service.
>
>
> Jerold Schulman
> Windows: General MVP
> JSI, Inc.
> http://www.jsiinc.com

 
Reply With Quote
 
Jerold Schulman
Guest
Posts: n/a
 
      19th Sep 2004


You could use a computer startup script:

@ping -n 16 127.0.0.1>nul
net start "Service Name"




On 18 Sep 2004 03:34:23 -0700, (E-Mail Removed) (Martin) wrote:

>Thanks.
>
>I tried that but still the ASP.NET service fail to start during bootup
>with error message that user name or password is wtong, but it is no
>problem to start it after bootup with the same credentials.
>Any other idea?
>
>// Martin
>
>
>Jerold Schulman <(E-Mail Removed)> wrote in message news:<(E-Mail Removed)>...
>> On 15 Sep 2004 04:38:18 -0700, (E-Mail Removed) (Martin) wrote:
>>
>> >We got a problem and I think we now the reason but not the answer.
>> >The service "ASP.NET" fail to start when Windows bootup but can easily be
>> >manually started afterwards.
>> >
>> >The error message in the event viewer says:
>> >Source: Service Control Manager
>> >EventID: 7000
>> >Message: The ASP.NET State Service service failed to start due to the
>> >following error: The account name is invalid or does not exist, or the
>> >password is invalid for the account name specified.
>> >
>> >After logging in to the system it is no problem to manually start the
>> >service (control panel-services-mark the service and then press start).
>> >
>> >I think the service try to start before the AD has startet and that is why
>> >we got this error message. The service use a domain account called "latitud"
>> >which has full administrative rights in the domain. The machine is a Windows
>> >2000 server with AD and acts as a domain controller. Except the
>> >operativ-system we're running the IIS and ASP.NET -services, nothing more.
>> >
>> >Any help would be appriciate. I had an idea of using dependecies for this
>> >service to force it to start later but I have not succeed that way.
>> >Please direct any answers to both the group and to (E-Mail Removed)
>> >
>> >Sincerely
>> >Martin Rådbo
>> >Teknologia

>>
>>
>> Try using tip 69 in the 'Tips & Tricks' at http://www.jsiinc.com
>> to make it dependent on the NetLogon service.
>>
>> or
>>
>> make it dependent on the Spooler service and make the Spooler service
>> dependent on the NetLogon service.
>>
>>
>> Jerold Schulman
>> Windows: General MVP
>> JSI, Inc.
>> http://www.jsiinc.com



Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Stored Procedure Execution Results (Succeed/Fail) Dave Microsoft Access 2 5th Oct 2007 10:21 AM
Messenger Service fail to start =?Utf-8?B?U2hhcm9u?= Windows XP Help 2 4th Apr 2005 02:57 AM
ASP.NET service fail to start during bootup but succeed later Martin Microsoft Windows 2000 Registry 3 19th Sep 2004 02:44 PM
ASP.NET service fail to start during bootup but succeed later Martin Microsoft Windows 2000 Security 3 19th Sep 2004 02:44 PM
Gracefully fail to start a service Joel Lyons Microsoft Dot NET Framework 1 29th May 2004 06:58 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:33 PM.