可以作為服務執行的 Python 指令碼
本示例中使用的模組是 pywin32 (Python for Windows 擴充套件)的一部分。根據你安裝 Python 的方式,你可能需要單獨安裝。
import win32serviceutil
import win32service
import win32event
import servicemanager
import socket
class AppServerSvc (win32serviceutil.ServiceFramework):
_svc_name_ = "TestService"
_svc_display_name_ = "Test Service"
def __init__(self,args):
win32serviceutil.ServiceFramework.__init__(self,args)
self.hWaitStop = win32event.CreateEvent(None,0,0,None)
socket.setdefaulttimeout(60)
def SvcStop(self):
self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
win32event.SetEvent(self.hWaitStop)
def SvcDoRun(self):
servicemanager.LogMsg(servicemanager.EVENTLOG_INFORMATION_TYPE,
servicemanager.PYS_SERVICE_STARTED,
(self._svc_name_,''))
self.main()
def main(self):
pass
if __name__ == '__main__':
win32serviceutil.HandleCommandLine(AppServerSvc)
這只是樣板。你的應用程式程式碼(可能呼叫單獨的指令碼)將放在 main()
函式中。
你還需要將其安裝為服務。目前最好的解決方案似乎是使用非吸吮服務管理器 。這允許你安裝服務並提供用於配置服務執行的命令列的 GUI。對於 Python,你可以這樣做,一次建立服務:
nssm install MyServiceName c:\python27\python.exe c:\temp\myscript.py
其中 my_script.py 是上面的樣板指令碼,修改為在 main()
函式中呼叫應用程式指令碼或程式碼。請注意,該服務不直接執行 Python 指令碼,它執行 Python 直譯器並在命令列上傳遞主指令碼。
或者,你可以使用 Windows Server Resource Kit 中提供的工具來獲取作業系統版本,以便建立服務。