up vote 11 down vote favorite
4
share [g+] share [fb]

I made a window service and let it work automatically and under localsystem account, when the service starts it fires this message for me and then stop "The [service name] service on local computer started and then stopped. Some Services stop automatically if they are not in use by another services or programs."

Whats the problem and whats the solution?

link|improve this question

74% accept rate
1  
this error would occur with a Java service when the Java policy doesn't allow proper permissions, such as "policy.all". – djangofan Dec 14 '09 at 20:43
feedback

7 Answers

up vote 19 down vote accepted

Either you are not starting any threads on the OnStart method to do work, or there is an exception raised within your OnStart method.

If an exception is thrown, it will appear in the Windows Event log. The Windows Event log is a good place to start in any case.

Generally an OnStart method looks like this:

Thread _thread;

protected override void OnStart(string[] args)
{
    // Comment in to debug
    // Debugger.Break()

    // Do initial setup and initialization
    Setup();

    // Kick off a thread to do work
    _thread = new Thread(new MyClass().MyMethod)
    _thread.Start();

    // Exit this method to indicate the service has started
}
link|improve this answer
feedback

This particular error message means what it says - that your service has started but then quite soon it exited for some reason. The good news is that your service is actually doing something, so you have the executable configured and running as a service properly.

Once started, for some reason it is quitting. You need to find out why this is. Add some debugging to tell you its up and running and known exit cases. If that doesn't reveal the problem then add some debugging to let you know its still running and work backwards from when that stops.

link|improve this answer
feedback

Are you tracing out any debug information? Most likely an exception is being thrown during your initialization. I would trace out all your exceptions and use Debugview to view them.

link|improve this answer
feedback

I had a similar problem that occurred because my Event Logs were full and the service was unable to write to them. As such, it was impossible to debug by looking for messages in the Event Viewer. I put a try/catch and dumped the exception out to a file. I had to change the settings on my logs to fill as needed instead of every 7 days and this allowed the services to start.

Of course, the root of the problem for me is that I have a nVidia driver issue that is flooding my event logs and now I'm probably beating on the disk, but that's another issue.

link|improve this answer
feedback

For me the same issue came because of a wrong setting in my app.config file. I changed the setting and the issue resolved

link|improve this answer
3  
To help other users please add infiormation of what setting you changed. – Obalix Jun 29 '11 at 14:54
feedback

I had the same issue with startting JBoss , then I changed the JAVA_HOME variable , it worled for me . It was the JBoss version doesnt support the 1.6 and supports 1.5.

link|improve this answer
feedback

you may get solution for this problem from following link http://srinivasganaparthi.blogspot.com/2011/02/service-on-local-computer-started-and.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.