gpt4 book ai didi

python - 为什么在 Windows 服务中启动的 Python 线程会在 3 - 4 分钟后关闭?

转载 作者:太空宇宙 更新时间:2023-11-03 18:55:51 27 4
gpt4 key购买 nike

我刚开始在网站上提问,但过去几年一直使用 Stackoverflow 查找其他用户遇到的问题。不幸的是,我在这里找不到与我现在遇到的问题相关的帖子。所以这里...

我有一个 Python 脚本,我想在启动期间立即运行(即什至在 Windows 登录屏幕期间)。为此,我使用 Python win32serviceutil 框架创建一个 Windows 服务,并在安装该服务时将该服务设置为“自动”。这看起来非常简单,通过查看网络上发布的示例,我很快就获得了一项服务。我的代码如下所示:

import win32service
import win32serviceutil
import win32api
import win32con
import win32event
import win32evtlogutil
import os, sys, string, time
from STEL.ClientServer.StartClient import StartClient

class aservice(win32serviceutil.ServiceFramework):

_svc_name_ = "STELClient"
_svc_display_name_ = "My Service Long Fancy Name!"
_svc_description_ = "THis is what my crazy little service does - aka a DESCRIPTION! WHoa!"

def __init__(self, args):
win32serviceutil.ServiceFramework.__init__(self, args)
self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)
self.client = StartClient()

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 = 10000
# This is how long the service will wait to run / refresh itself (see script below)
try:
self.client.startClient()
except:
servicemanager.LogInfoMsg("STELClient - EXCEPTION !!") #For Event Log

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
self.client.stopClient()
servicemanager.LogInfoMsg("STELClient - STOPPED!") #For Event Log
break
else:
execfile("C:\\STEL\\clientExample.py")
pass


def ctrlHandler(ctrlType):
return True

if __name__ == '__main__':
win32api.SetConsoleCtrlHandler(ctrlHandler, True)
win32serviceutil.HandleCommandLine(aservice)

感兴趣的主要代码是:

try:
self.client.startClient()
except:
servicemanager.LogInfoMsg("STELClient - EXCEPTION !!") #For Event Log

和:

else:
execfile("C:\\STEL\\clientExample.py")
pass

两个代码块都对同一服务器执行 ping 操作。唯一的区别是,每当调用脚本时,clientExample.py 就会对服务器执行一次 ping 操作。在本例中,由于 while 循环,每 10 秒就会 ping 一次。 client.startClient() 生成自己的线程并每 5 秒 ping 一次服务器。

安装服务然后运行脚本后,我注意到 client.startClient() 线程似乎在 3-4 分钟后停止(我计时时大约为 3 分 40 秒),但 clientExample.py继续每 10 秒运行一次。

如果我要在 Python 中运行以下代码行,线程将无限期地运行,直到我停止/关闭 Python。

from STEL.ClientServer.StartClient import StartClient
self.client = StartClient()
self.client.startClient()

我预计 Windows 服务中会有同样的行为,但情况似乎并非如此。

有人有线索吗?

最佳答案

所以我在使用 WINPDB 将调试器连接到服务后解决了问题。

线程停止的原因是存在未捕获的异常(dun dun DUNNNNN)。该异常是由抛出 IOError: 9 (错误文件描述符)的 print 语句引起的(真的???)。我做了一些 StackOverflow 搜索并发现了这个......

why am I getting IOError: (9, 'Bad file descriptor') error while making print statements?

我将删除我的打印语句,看看是否可以解决我的问题...

生活中学习...

关于python - 为什么在 Windows 服务中启动的 Python 线程会在 3 - 4 分钟后关闭?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17284564/

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