README.txt 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. NSSM: The Non-Sucking Service Manager
  2. Version 2.19, 2013-11-22
  3. NSSM is a service helper program similar to srvany and cygrunsrv. It can
  4. start any application as an NT service and will restart the service if it
  5. fails for any reason.
  6. NSSM also has a graphical service installer and remover.
  7. Full documentation can be found online at
  8. http://nssm.cc/
  9. Since version 2.0, the GUI can be bypassed by entering all appropriate
  10. options on the command line.
  11. Since version 2.1, NSSM can be compiled for x64 platforms.
  12. Thanks Benjamin Mayrargue.
  13. Since version 2.2, NSSM can be configured to take different actions
  14. based on the exit code of the managed application.
  15. Since version 2.3, NSSM logs to the Windows event log more elegantly.
  16. Since version 2.5, NSSM respects environment variables in its parameters.
  17. Since version 2.8, NSSM tries harder to shut down the managed application
  18. gracefully and throttles restart attempts if the application doesn't run
  19. for a minimum amount of time.
  20. Since version 2.11, NSSM respects srvany's AppEnvironment parameter.
  21. Since version 2.13, NSSM is translated into French.
  22. Thanks François-Régis Tardy.
  23. Since version 2.15, NSSM is translated into Italian.
  24. Thanks Riccardo Gusmeroli.
  25. Since version 2.17, NSSM can try to shut down console applications by
  26. simulating a Control-C keypress. If they have installed a handler routine
  27. they can clean up and shut down gracefully on receipt of the event.
  28. Since version 2.17, NSSM can redirect the managed application's I/O streams
  29. to an arbitrary path.
  30. Since version 2.18, NSSM can be configured to wait a user-specified amount
  31. of time for the application to exit when shutting down.
  32. Since version 2.19, many more service options can be configured with the
  33. GUI installer as well as via the registry.
  34. Since version 2.19, NSSM can add to the service's environment by setting
  35. AppEnvironmentExtra in place of or in addition to the srvany-compatible
  36. AppEnvironment.
  37. Usage
  38. -----
  39. In the usage notes below, arguments to the program may be written in angle
  40. brackets and/or square brackets. <string> means you must insert the
  41. appropriate string and [<string>] means the string is optional. See the
  42. examples below...
  43. Installation using the GUI
  44. --------------------------
  45. To install a service, run
  46. nssm install <servicename>
  47. You will be prompted to enter the full path to the application you wish
  48. to run and any command line options to pass to that application.
  49. Use the system service manager (services.msc) to control advanced service
  50. properties such as startup method and desktop interaction. NSSM may
  51. support these options at a later time...
  52. Installation using the command line
  53. -----------------------------------
  54. To install a service, run
  55. nssm install <servicename> <application> [<options>]
  56. NSSM will then attempt to install a service which runs the named application
  57. with the given options (if you specified any).
  58. Don't forget to enclose paths in "quotes" if they contain spaces!
  59. If you want to include quotes in the options you will need to """quote""" the
  60. quotes.
  61. Managing the service
  62. --------------------
  63. NSSM will launch the application listed in the registry when you send it a
  64. start signal and will terminate it when you send a stop signal. So far, so
  65. much like srvany. But NSSM is the Non-Sucking service manager and can take
  66. action if/when the application dies.
  67. With no configuration from you, NSSM will try to restart itself if it notices
  68. that the application died but you didn't send it a stop signal. NSSM will
  69. keep trying, pausing between each attempt, until the service is successfully
  70. started or you send it a stop signal.
  71. NSSM will pause an increasingly longer time between subsequent restart attempts
  72. if the service fails to start in a timely manner, up to a maximum of four
  73. minutes. This is so it does not consume an excessive amount of CPU time trying
  74. to start a failed application over and over again. If you identify the cause
  75. of the failure and don't want to wait you can use the Windows service console
  76. (where the service will be shown in Paused state) to send a continue signal to
  77. NSSM and it will retry within a few seconds.
  78. By default, NSSM defines "a timely manner" to be within 1500 milliseconds.
  79. You can change the threshold for the service by setting the number of
  80. milliseconds as a REG_DWORD value in the registry at
  81. HKLM\SYSTEM\CurrentControlSet\Services\<service>\Parameters\AppThrottle.
  82. NSSM will look in the registry under
  83. HKLM\SYSTEM\CurrentControlSet\Services\<service>\Parameters\AppExit for
  84. string (REG_EXPAND_SZ) values corresponding to the exit code of the application.
  85. If the application exited with code 1, for instance, NSSM will look for a
  86. string value under AppExit called "1" or, if it does not find it, will
  87. fall back to the AppExit (Default) value. You can find out the exit code
  88. for the application by consulting the system event log. NSSM will log the
  89. exit code when the application exits.
  90. Based on the data found in the registry, NSSM will take one of three actions:
  91. If the value data is "Restart" NSSM will try to restart the application as
  92. described above. This is its default behaviour.
  93. If the value data is "Ignore" NSSM will not try to restart the application
  94. but will continue running itself. This emulates the (usually undesirable)
  95. behaviour of srvany. The Windows Services console would show the service
  96. as still running even though the application has exited.
  97. If the value data is "Exit" NSSM will exit gracefully. The Windows Services
  98. console would show the service as stopped. If you wish to provide
  99. finer-grained control over service recovery you should use this code and
  100. edit the failure action manually. Please note that Windows versions prior
  101. to Vista will not consider such an exit to be a failure. On older versions
  102. of Windows you should use "Suicide" instead.
  103. If the value data is "Suicide" NSSM will simulate a crash and exit without
  104. informing the service manager. This option should only be used for
  105. pre-Vista systems where you wish to apply a service recovery action. Note
  106. that if the monitored application exits with code 0, NSSM will only honour a
  107. request to suicide if you explicitly configure a registry key for exit code 0.
  108. If only the default action is set to Suicide NSSM will instead exit gracefully.
  109. Stopping the service
  110. --------------------
  111. When stopping a service NSSM will attempt several different methods of killing
  112. the monitored application, each of which can be disabled if necessary.
  113. First NSSM will attempt to generate a Control-C event and send it to the
  114. application's console. Batch scripts or console applications may intercept
  115. the event and shut themselves down gracefully. GUI applications do not have
  116. consoles and will not respond to this method.
  117. Secondly NSSM will enumerate all windows created by the application and send
  118. them a WM_CLOSE message, requesting a graceful exit.
  119. Thirdly NSSM will enumerate all threads created by the application and send
  120. them a WM_QUIT message, requesting a graceful exit. Not all applications'
  121. threads have message queues; those which do not will not respond to this
  122. method.
  123. Finally NSSM will call TerminateProcess() to request that the operating
  124. system forcibly terminate the application. TerminateProcess() cannot be
  125. trapped or ignored, so in most circumstances the application will be killed.
  126. However, there is no guarantee that it will have a chance to perform any
  127. tidyup operations before it exits.
  128. Any or all of the methods above may be disabled. NSSM will look for the
  129. HKLM\SYSTEM\CurrentControlSet\Services\<service>\Parameters\AppStopMethodSkip
  130. registry value which should be of type REG_DWORD set to a bit field describing
  131. which methods should not be applied.
  132. If AppStopMethodSkip includes 1, Control-C events will not be generated.
  133. If AppStopMethodSkip includes 2, WM_CLOSE messages will not be posted.
  134. If AppStopMethodSkip includes 4, WM_QUIT messages will not be posted.
  135. If AppStopMethodSkip includes 8, TerminateProcess() will not be called.
  136. If, for example, you knew that an application did not respond to Control-C
  137. events and did not have a thread message queue, you could set AppStopMethodSkip
  138. to 5 and NSSM would not attempt to use those methods to stop the application.
  139. Take great care when including 8 in the value of AppStopMethodSkip. If NSSM
  140. does not call TerminateProcess() it is possible that the application will not
  141. exit when the service stops.
  142. By default NSSM will allow processes 1500ms to respond to each of the methods
  143. described above before proceeding to the next one. The timeout can be
  144. configured on a per-method basis by creating REG_DWORD entries in the
  145. registry under HKLM\SYSTEM\CurrentControlSet\Services\<service>\Parameters.
  146. AppStopMethodConsole
  147. AppStopMethodWindow
  148. AppStopMethodThreads
  149. Each value should be set to the number of milliseconds to wait. Please note
  150. that the timeout applies to each process in the application's process tree,
  151. so the actual time to shutdown may be longer than the sum of all configured
  152. timeouts if the application spawns multiple subprocesses.
  153. I/O redirection
  154. ---------------
  155. NSSM can redirect the managed application's I/O to any path capable of being
  156. opened by CreateFile(). This enables, for example, capturing the log output
  157. of an application which would otherwise only write to the console or accepting
  158. input from a serial port.
  159. NSSM will look in the registry under
  160. HKLM\SYSTEM\CurrentControlSet\Services\<service>\Parameters for the keys
  161. corresponding to arguments to CreateFile(). All are optional. If no path is
  162. given for a particular stream it will not be redirected. If a path is given
  163. but any of the other values are omitted they will be receive sensible defaults.
  164. AppStdin: Path to receive input.
  165. AppStdout: Path to receive output.
  166. AppStderr: Path to receive error output.
  167. Parameters for CreateFile() are providing with the "AppStdinShareMode",
  168. "AppStdinCreationDisposition" and "AppStdinFlagsAndAttributes" values (and
  169. analogously for stdout and stderr).
  170. In general, if you want the service to log its output, set AppStdout and
  171. AppStderr to the same path, eg C:\Users\Public\service.log, and it should
  172. work. Remember, however, that the path must be accessible to the user
  173. running the service.
  174. Environment variables
  175. ---------------------
  176. NSSM can replace or append to the managed application's environment. Two
  177. multi-valued string (REG_MULTI_SZ) registry values are recognised under
  178. HKLM\SYSTEM\CurrentControlSet\Services\<service>\Parameters.
  179. AppEnvironment defines a list of environment variables which will override
  180. the service's environment. AppEnvironmentExtra defines a list of
  181. environment variables which will be added to the service's environment.
  182. Each entry in the list should be of the form KEY=VALUE. It is possible to
  183. omit the VALUE but the = symbol is mandatory.
  184. srvany only supports AppEnvironment.
  185. Removing services using the GUI
  186. -------------------------------
  187. NSSM can also remove services. Run
  188. nssm remove <servicename>
  189. to remove a service. You will prompted for confirmation before the service
  190. is removed. Try not to remove essential system services...
  191. Removing service using the command line
  192. ---------------------------------------
  193. To remove a service without confirmation from the GUI, run
  194. nssm remove <servicename> confirm
  195. Try not to remove essential system services...
  196. Logging
  197. -------
  198. NSSM logs to the Windows event log. It registers itself as an event log source
  199. and uses unique event IDs for each type of message it logs. New versions may
  200. add event types but existing event IDs will never be changed.
  201. Because of the way NSSM registers itself you should be aware that you may not
  202. be able to replace the NSSM binary if you have the event viewer open and that
  203. running multiple instances of NSSM from different locations may be confusing if
  204. they are not all the same version.
  205. Example usage
  206. -------------
  207. To install an Unreal Tournament server:
  208. nssm install UT2004 c:\games\ut2004\system\ucc.exe server
  209. To remove the server:
  210. nssm remove UT2004 confirm
  211. Building NSSM from source
  212. -------------------------
  213. NSSM is known to compile with Visual Studio 6, Visual Studio 2005 and Visual
  214. Studio 2008.
  215. NSSM will also compile with Visual Studio 2010 but the resulting executable
  216. will not run on versions of Windows older than XP SP2.
  217. Credits
  218. -------
  219. Thanks to Bernard Loh for finding a bug with service recovery.
  220. Thanks to Benjamin Mayrargue (www.softlion.com) for adding 64-bit support.
  221. Thanks to Joel Reingold for spotting a command line truncation bug.
  222. Thanks to Arve Knudsen for spotting that child processes of the monitored
  223. application could be left running on service shutdown, and that a missing
  224. registry value for AppDirectory confused NSSM.
  225. Thanks to Peter Wagemans and Laszlo Keresztfalvi for suggesting throttling restarts.
  226. Thanks to Eugene Lifshitz for finding an edge case in CreateProcess() and for
  227. advising how to build messages.mc correctly in paths containing spaces.
  228. Thanks to Rob Sharp for pointing out that NSSM did not respect the
  229. AppEnvironment registry value used by srvany.
  230. Thanks to Szymon Nowak for help with Windows 2000 compatibility.
  231. Thanks to François-Régis Tardy for French translation.
  232. Thanks to Emilio Frini for spotting that French was inadvertently set as
  233. the default language when the user's display language was not translated.
  234. Thanks to Riccardo Gusmeroli for Italian translation.
  235. Thanks to Eric Cheldelin for the inspiration to generate a Control-C event
  236. on shutdown.
  237. Thanks to Brian Baxter for suggesting how to escape quotes from the command prompt.
  238. Thanks to Russ Holmann for suggesting that the shutdown timeout be configurable.
  239. Thanks to Paul Spause for spotting a bug with default registry entries.
  240. Licence
  241. -------
  242. NSSM is public domain. You may unconditionally use it and/or its source code
  243. for any purpose you wish.