up vote 34 down vote favorite
14
share [g+] share [fb]

I need to write robust code in .NET to enable a windows service (server 2003) to restart itself. What it the best way to so this? Is there some .NET API to do it?

link|improve this question

2  
"Robust" is a weasel word (stackoverflow.fogbugz.com/default.asp?W13086) - what specific traits to you require? – Aidan Ryan Oct 21 '08 at 0:40
feedback

14 Answers

up vote 52 down vote accepted

Set the service to restart after failure (double click the service in the control panel and have a look around on those tabs - I forget the name of it). Then, anytime you want the service to restart, just call Environment.Exit(1) (or any non-zero return) and the OS will restart it for you.

link|improve this answer
Simple solutions are the best solutions. Just did this to replace the existing "2nd process to periodically restart the first" setup. – geofftnz Mar 20 '10 at 2:22
Fyi the location is in the services panel, right click the service in question and select properties, then choose recovery tab. – James Michael Hare Jul 7 '11 at 14:35
feedback

It would depend on why you want it to restart itself.

If you are just looking for a way to have the service clean itself out periodically then you could have a timer running in the service that periodically causes a purge routine.

If you are looking for a way to restart on failure - the service host itself can provide that ability when it is setup.

So why do you need to restart the server? What are you trying to achieve?

link|improve this answer
feedback

You can't be sure that the user account that your service is running under even has permissions to stop and restart the service.

link|improve this answer
feedback

I don't think you can in a self-contained service (when you call Restart, it will stop the service, which will interrupt the Restart command, and it won't ever get started again). If you can add a second .exe (a Console app that uses the ServiceManager class), then you can kick off the standalone .exe and have it restart the service and then exit.

On second thought, you could probably have the service register a Scheduled Task (using the command-line 'at' command, for example) to start the service and then have it stop itself; that would probably work.

link|improve this answer
feedback

You can create a process that is a DOS command prompt that restarts yourself:

Process process = new Process(); process.StartInfo.FileName = "cmd"; process.StartInfo.Arguments = "/c net stop \"servicename\" & net start \"servicename\""; process.Start();

link|improve this answer
feedback
    Dim proc As New Process()
    Dim psi As New ProcessStartInfo()

    psi.CreateNoWindow = True
    psi.FileName = "cmd.exe"
    psi.Arguments = "/C net stop YOURSERVICENAMEHERE && net start YOURSERVICENAMEHERE"
    psi.LoadUserProfile = False
    psi.UseShellExecute = False
    psi.WindowStyle = ProcessWindowStyle.Hidden
    proc.StartInfo = psi
    proc.Start()
link|improve this answer
feedback

I don't think it can. When a service is "stopped", it gets totally unloaded.

Well, OK, there's always a way I suppose. For instance, you could create a detached process to stop the service, then restart it, then exit.

link|improve this answer
feedback

The better approach may be to utilize the NT Service as a wrapper for your application. When the NT Service is started, your application can start in an "idle" mode waiting for the command to start (or be configured to start automatically).

Think of a car, when it's started it begins in an idle state, waiting for your command to go forward or reverse. This also allows for other benefits, such as better remote administration as you can choose how to expose your application.

link|improve this answer
feedback

Is this what you're looking for? If you want to put this in the service, you needn't get the ServiceController.

public void RestartService(string name)
{
  ServiceController service = new ServiceController(name);
  service.Stop();
  Thread.Sleep(2500);
  service.Start();
  Thread.Sleep(2500);
}
link|improve this answer
This cannot be used as a "self-restart" solution. – Isaac Aug 7 '10 at 8:43
feedback

I would use the Windows Scheduler to schedule a restart of your service. The problem is that you can't restart yourself, but you can stop yourself. (You've essentially sawed off the branch that you're sitting on... if you get my analogy) You need a separate process to do it for you. The Windows Scheduler is an appropriate one. Schedule a one-time task to restart your service (even from within the service itself) to execute immediately.

Otherwise, you'll have to create a "shepherding" process that does it for you.

link|improve this answer
feedback

The first response to the question is the simplest solution: "Environment.Exit(1)" I am using this on Windows Server 2008 R2 and it works perfectly. The service stops itself, the O/S waits 1 minute, then restarts it.

link|improve this answer
feedback

Just passing: and thought i would add some extra info...

you can also throw an exception, this will auto close the windows service, and the auto re-start options just kick in. the only issue with this is that if you have a dev enviroment on your pc then the JIT tries to kick in, and you will get a prompt saying debug Y/N. say no and then it will close, and then re-start properly. (on a PC with no JIT it just all works). the reason im trolling, is this JIT is new to Win 7 (it used to work fine with XP etc) and im trying to find a way of disabling the JIT.... i may try the Environment.Exit method mentioned here see how that works too.

Kristian : Bristol, UK

link|improve this answer
feedback

The easiest way is to have a batch file with:

net stop net start

and add the file to the scheduler with your desired time interval

link|improve this answer
feedback
private static void  RestartService(string serviceName)
    {
        using (var controller = new ServiceController(serviceName))
        {
            controller.Stop();
            int counter = 0;
            while (controller.Status != ServiceControllerStatus.Stopped)
            {
                Thread.Sleep(100);
                controller.Refresh();
                counter++;
                if (counter > 1000)
                {
                    throw new System.TimeoutException(string.Format("Could not stop service: {0}", Constants.Series6Service.WindowsServiceName));
                }
            }

            controller.Start();
        }
    }
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.