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?
|
|
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. |
|||||||
|
|
You can't be sure that the user account that your service is running under even has permissions to stop and restart the service. |
|||
|
|
|
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? |
|||
|
|
|||
|
|
|
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. |
|||
|
|
|
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(); |
|||
|
|
|
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. |
|||
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
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 |
|||||
|
|
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. |
|||
|
|
where SERVICENAME is the name of your service (double quotes included to account for spaces in the service name, can be omitted otherwise). Clean, no auto-restart configuration necessary. |
||||
|
|
|
Is this what you're looking for? If you want to put this in the service, you needn't get the ServiceController.
|
|||
|
|
|
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 |
|||
|
|
|||
|
|