gpt4 book ai didi

python - 将 python 脚本作为服务运行时出现问题

转载 作者:可可西里 更新时间:2023-11-01 09:56:24 25 4
gpt4 key购买 nike

我用过this question学习使用 ActivePython 将我的 python 脚本安装为服务。正如我所料,我能够安装并删除我的脚本,但我的问题是,一旦我开始运行脚本,我就无法停止或删除它。它只是永久运行,我无法摆脱它。链接问题的答案提到检查标志以停止脚本。谁能解释一下如何做到这一点?

现在脚本做的很少。每隔几秒就将行打印到文件中。在我继续处理更复杂的事情之前,我想让它正常工作。

import pythoncom
import win32serviceutil
import win32service
import win32event
import servicemanager
import socket
import time


class AppServerSvc (win32serviceutil.ServiceFramework):
_svc_name_ = "PythonTest"
_svc_display_name_ = "Python Test"
_svc_description_ = "This is a test of installing Python services"

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):
i=0
while True:
f=open("C:\\hello.txt","a")
f.write("hello"+str(i)+"\n")
f.close()
i=i+1
time.sleep(5)


if __name__ == '__main__':
win32serviceutil.HandleCommandLine(AppServerSvc)

最佳答案

当然你无法阻止它,你陷入了无限循环。替换:

time.sleep(5)

用这个:

if win32event.WaitForSingleObject(self.hWaitStop, 5000) == win32event.WAIT_OBJECT_0: 
break

应该可以解决问题。

关于python - 将 python 脚本作为服务运行时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7930447/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com