それを機能させる方法の段階的な説明:
1-最初に、上記の基本的なスケルトンに従ってpythonファイルを作成します。そして、例えば「c:\ PythonFiles \ AppServerSvc.py」というパスに保存します。
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):
# Your business logic or call to any class should be here
# this time it creates a text.txt and writes Test Service in a daily manner
f = open('C:\\test.txt', 'a')
rc = None
while rc != win32event.WAIT_OBJECT_0:
f.write('Test Service \n')
f.flush()
# block for 24*60*60 seconds and wait for a stop event
# it is used for a one-day loop
rc = win32event.WaitForSingleObject(self.hWaitStop, 24 * 60 * 60 * 1000)
f.write('shut down \n')
f.close()
if __name__ == '__main__':
win32serviceutil.HandleCommandLine(AppServerSvc)
2-このステップでは、サービスを登録する必要があります。
管理者としてコマンドプロンプトを実行し、次のように入力します。
sc Create TestService binpath = "C:\ Python36 \ Python.exe c:\ PythonFiles \ AppServerSvc.py" DisplayName = "TestService" start = auto
binpathの最初の引数はpython.exeのパスです
binpathの 2番目の引数 は、すでに作成したPythonファイルのパスです
すべての「=」記号の後に1つのスペースを置く必要があることをお見逃しなく。
次に、すべてが問題なければ、
[SC] CreateService SUCCESS
これで、PythonサービスがWindowsサービスとしてインストールされました。あなたはそれをService Managerとレジストリの下で見ることができます:
HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Services \ TestService
3- OKです。サービスマネージャーでサービスを開始できます。
このサービススケルトンを提供するすべてのpythonファイルを実行できます。