下面是我的代码,我试图变成一个Windows服务。您将看到test.py作为它所做的调用,所有这些都是一个写入日志文件的短脚本(作为测试)。
代码是为了使它成为一个Windows服务,它做得很好,但是当我运行它时,没有任何内容写入日志文件。非常感谢。以下是代码:
import win32service
import win32serviceutil
import win32api
import win32con
import win32event
import win32evtlogutil
import os, sys, string, time
class aservice(win32serviceutil.ServiceFramework):
_svc_name_ = "MyServiceShortName"
_svc_display_name_ = "A python test"
_svc_description_ = "Writing to a log"
def __init__(self, args):
win32serviceutil.ServiceFramework.__init__(self, args)
self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)
def SvcStop(self):
self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
win32event.SetEvent(self.hWaitStop)
def SvcDoRun(self):
import servicemanager
servicemanager.LogMsg(servicemanager.EVENTLOG_INFORMATION_TYPE,servicemanager.PYS_SERVICE_STARTED,(self._svc_name_, ''))
self.timeout = 1000 #1 seconds
# This is how long the service will wait to run / refresh itself (see script below)
while 1:
# Wait for service stop signal, if I timeout, loop again
rc = win32event.WaitForSingleObject(self.hWaitStop, self.timeout)
# Check to see if self.hWaitStop happened
if rc == win32event.WAIT_OBJECT_0:
# Stop signal encountered
servicemanager.LogInfoMsg("SomeShortNameVersion - STOPPED!") #For Event Log
break
else:
#what to run
try:
file_path = "test.py"
execfile(file_path)
except:
pass
#end of what to run
def ctrlHandler(ctrlType):
return True
if __name__ == '__main__':
win32api.SetConsoleCtrlHandler(ctrlHandler, True)
win32serviceutil.HandleCommandLine(aservice)
编辑:为此我认为我包含了我的test.py文件代码,它有不必要的导入,但如果单独运行它将完成工作。
import win32service
import win32serviceutil
import win32api
import win32con
import win32event
import win32evtlogutil
import os
logfile = open("log.txt", "a") #open file to log restart timestamp
logfile.write("\nthat's good!!!!")
logfile.close()
答案 0 :(得分:2)
好吧所以我想出来了,想要回来发帖以防万一其他人正在处理这个问题,尽管这有点独特。
如果你在Windows服务中,你必须指定你的文件路径,但是......但是没有完成,我无缘无故地拉了我的头发。
file_path = "test.py"
应该是
file_path = r"c:\users\...\test.py"
对Windows文件路径使用'\'时要小心。它们必须像'\\'一样进行转义,或者必须将字符串声明为原始字符串('r')。使用像斜杠'/'分隔符这样的unix也可以工作,但对于Windows用户来说可能看起来很奇怪。