關於 web service, unity, blogger 等軟體工程筆記

Create windows service using NSSM

Edit icon 沒有留言
Coding with style

最近在 Windows server 上部署網路應用程式 (Windows program),就直接用服務 (Windows service) 方式來部屬吧。如何建置 Windows service 感覺就相當麻煩以及複雜,直到搜尋到 NSSM 這套好用的工具,能夠快速建立 Windows services。以下記錄筆記。

安裝 NSSM

NSSM 官方網站下載主執行檔,安裝到任一位置,例如 C:\nssm\nssm.exe。

為了節省後續 command line 輸入的方便性,將該路徑加入到環境變數 Path 中 (System environment variables),使得在 command line 環境中的任何位置,都能直接使用 nssm

常用指令

安裝 service:

nssm install service-name program-path

移除 service:

nssm remove service-name

啟用 service:

nssm start service-name

停止 service:

nssm stop service-name

查看 service 狀態:

nssm status service-name

更多說明以及指令,請參考官方網站:https://nssm.cc/

沒有留言: