README.txt 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. NSSM: The Non-Sucking Service Manager
  2. Version 2.16, 2012-12-01
  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. Usage
  31. -----
  32. In the usage notes below, arguments to the program may be written in angle
  33. brackets and/or square brackets. <string> means you must insert the
  34. appropriate string and [<string>] means the string is optional. See the
  35. examples below...
  36. Installation using the GUI
  37. --------------------------
  38. To install a service, run
  39. nssm install <servicename>
  40. You will be prompted to enter the full path to the application you wish
  41. to run and any command line options to pass to that application.
  42. Use the system service manager (services.msc) to control advanced service
  43. properties such as startup method and desktop interaction. NSSM may
  44. support these options at a later time...
  45. Installation using the command line
  46. -----------------------------------
  47. To install a service, run
  48. nssm install <servicename> <application> [<options>]
  49. NSSM will then attempt to install a service which runs the named application
  50. with the given options (if you specified any).
  51. Don't forget to enclose paths in "quotes" if they contain spaces!
  52. Managing the service
  53. --------------------
  54. NSSM will launch the application listed in the registry when you send it a
  55. start signal and will terminate it when you send a stop signal. So far, so
  56. much like srvany. But NSSM is the Non-Sucking service manager and can take
  57. action if/when the application dies.
  58. With no configuration from you, NSSM will try to restart itself if it notices
  59. that the application died but you didn't send it a stop signal. NSSM will
  60. keep trying, pausing between each attempt, until the service is successfully
  61. started or you send it a stop signal.
  62. NSSM will pause an increasingly longer time between subsequent restart attempts
  63. if the service fails to start in a timely manner, up to a maximum of four
  64. minutes. This is so it does not consume an excessive amount of CPU time trying
  65. to start a failed application over and over again. If you identify the cause
  66. of the failure and don't want to wait you can use the Windows service console
  67. (where the service will be shown in Paused state) to send a continue signal to
  68. NSSM and it will retry within a few seconds.
  69. By default, NSSM defines "a timely manner" to be within 1500 milliseconds.
  70. You can change the threshold for the service by setting the number of
  71. milliseconds as a REG_DWORD value in the registry at
  72. HKLM\SYSTEM\CurrentControlSet\Services\<service>\Parameters\AppThrottle.
  73. NSSM will look in the registry under
  74. HKLM\SYSTEM\CurrentControlSet\Services\<service>\Parameters\AppExit for
  75. string (REG_EXPAND_SZ) values corresponding to the exit code of the application.
  76. If the application exited with code 1, for instance, NSSM will look for a
  77. string value under AppExit called "1" or, if it does not find it, will
  78. fall back to the AppExit (Default) value. You can find out the exit code
  79. for the application by consulting the system event log. NSSM will log the
  80. exit code when the application exits.
  81. Based on the data found in the registry, NSSM will take one of three actions:
  82. If the value data is "Restart" NSSM will try to restart the application as
  83. described above. This is its default behaviour.
  84. If the value data is "Ignore" NSSM will not try to restart the application
  85. but will continue running itself. This emulates the (usually undesirable)
  86. behaviour of srvany. The Windows Services console would show the service
  87. as still running even though the application has exited.
  88. If the value data is "Exit" NSSM will exit gracefully. The Windows Services
  89. console would show the service as stopped. If you wish to provide
  90. finer-grained control over service recovery you should use this code and
  91. edit the failure action manually. Please note that Windows versions prior
  92. to Vista will not consider such an exit to be a failure. On older versions
  93. of Windows you should use "Suicide" instead.
  94. If the value data is "Suicide" NSSM will simulate a crash and exit without
  95. informing the service manager. This option should only be used for
  96. pre-Vista systems where you wish to apply a service recovery action. Note
  97. that if the monitored application exits with code 0, NSSM will only honour a
  98. request to suicide if you explicitly configure a registry key for exit code 0.
  99. If only the default action is set to Suicide NSSM will instead exit gracefully.
  100. I/O redirection
  101. ---------------
  102. NSSM can redirect the managed application's I/O to any path capable of being
  103. opened by CreateFile(). This enables, for example, capturing the log output
  104. of an application which would otherwise only write to the console or accepting
  105. input from a serial port.
  106. NSSM will look in the registry under
  107. HKLM\SYSTEM\CurrentControlSet\Services\<service>\Parameters for the keys
  108. corresponding to arguments to CreateFile(). All are optional. If no path is
  109. given for a particular stream it will not be redirected. If a path is given
  110. but any of the other values are omitted they will be receive sensible defaults.
  111. AppStdin: Path to receive input.
  112. AppStdout: Path to receive output.
  113. AppStderr: Path to receive error output.
  114. Parameters for CreateFile() are providing with the "AppStdinShareMode",
  115. "AppStdinCreationDisposition" and "AppStdinFlagsAndAttributes" values (and
  116. analogously for stdout and stderr).
  117. In general, if you want the service to log its output, set AppStdout and
  118. AppStderr to the same path, eg C:\Users\Public\service.log, and it should
  119. work. Remember, however, that the path must be accessible to the user
  120. running the service.
  121. Removing services using the GUI
  122. -------------------------------
  123. NSSM can also remove services. Run
  124. nssm remove <servicename>
  125. to remove a service. You will prompted for confirmation before the service
  126. is removed. Try not to remove essential system services...
  127. Removing service using the command line
  128. ---------------------------------------
  129. To remove a service without confirmation from the GUI, run
  130. nssm remove <servicename> confirm
  131. Try not to remove essential system services...
  132. Logging
  133. -------
  134. NSSM logs to the Windows event log. It registers itself as an event log source
  135. and uses unique event IDs for each type of message it logs. New versions may
  136. add event types but existing event IDs will never be changed.
  137. Because of the way NSSM registers itself you should be aware that you may not
  138. be able to replace the NSSM binary if you have the event viewer open and that
  139. running multiple instances of NSSM from different locations may be confusing if
  140. they are not all the same version.
  141. Example usage
  142. -------------
  143. To install an Unreal Tournament server:
  144. nssm install UT2004 c:\games\ut2004\system\ucc.exe server
  145. To remove the server:
  146. nssm remove UT2004 confirm
  147. Building NSSM from source
  148. -------------------------
  149. NSSM is known to compile with Visual Studio 6, Visual Studio 2005 and Visual
  150. Studio 2008.
  151. NSSM will also compile with Visual Studio 2010 but the resulting executable
  152. will not run on versions of Windows older than XP SP2.
  153. Credits
  154. -------
  155. Thanks to Bernard Loh for finding a bug with service recovery.
  156. Thanks to Benjamin Mayrargue (www.softlion.com) for adding 64-bit support.
  157. Thanks to Joel Reingold for spotting a command line truncation bug.
  158. Thanks to Arve Knudsen for spotting that child processes of the monitored
  159. application could be left running on service shutdown, and that a missing
  160. registry value for AppDirectory confused NSSM.
  161. Thanks to Peter Wagemans and Laszlo Keresztfalvi for suggesting throttling restarts.
  162. Thanks to Eugene Lifshitz for finding an edge case in CreateProcess() and for
  163. advising how to build messages.mc correctly in paths containing spaces.
  164. Thanks to Rob Sharp for pointing out that NSSM did not respect the
  165. AppEnvironment registry value used by srvany.
  166. Thanks to Szymon Nowak for help with Windows 2000 compatibility.
  167. Thanks to François-Régis Tardy for French translation.
  168. Thanks to Emilio Frini for spotting that French was inadvertently set as
  169. the default language when the user's display language was not translated.
  170. Thanks to Riccardo Gusmeroli for Italian translation.
  171. Thanks to Eric Cheldelin for the inspiration to generate a Control-C event
  172. on shutdown.
  173. Licence
  174. -------
  175. NSSM is public domain. You may unconditionally use it and/or its source code
  176. for any purpose you wish.