Python Windows 服务 - 不响应来自内置 exe 的 start/stop(但在 python 中有效)
Python Windows Service - Not responding to start/stop from built exe (but works in python)
这是我第一次构建 windows 服务,我认为我已经成功了。安装为 python aservice.py install
工作正常,并做出相应响应。
但是,由于我需要安装此服务的机器没有安装 python,我想将其构建为可执行文件,以便安装该服务。虽然可执行文件成功安装了该服务,但当我尝试手动启动它或通过 net start
或 sc start
时,该服务没有响应。
手动启动 returns - 错误 1053:服务未及时响应启动或控制请求。
Net Start returns - 服务未响应控制功能。
与 python 一起安装时,它会响应所有命令,并且工作正常。不确定构建过程中发生了什么,但我显然遗漏了一些东西
使用 Python 3.4 64 位。所有需要该服务的盒子也将是 64 位的。
服务定义
class aservice(win32serviceutil.ServiceFramework):
_svc_name_ = "Test Login Service"
_svc_display_name_ = "Test Login Service"
_svc_description_ = "Test"
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 = 3000
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("aservice - STOPPED")
break
else:
servicemanager.LogInfoMsg("aservice - is alive and well")
...Doing Things...
servicemanager.LogInfoMsg("Logon Service Has Completed, Stopping")
time.sleep(10)
break
def ctrlHandler(ctrlType):
return True
if __name__ == '__main__':
win32api.SetConsoleCtrlHandler(ctrlHandler, True)
win32serviceutil.HandleCommandLine(aservice)
setup.py
`from distutils.core import setup
import py2exe
# setup.py
#
class Target:
def __init__(self, **kw):
self.__dict__.update(kw)
# for the versioninfo resources
self.version = "0.5.0"
self.company_name = "Company"
self.copyright = "no copyright"
self.name = "Test22"
myservice = Target(
description = 'Edit Logon Service',
modules = ['Logon_Service'],
cmdline_style='pywin32'
) `
构建命令=python setup.py py2exe
我也尝试过 setup.py 和 windows,效果相同,但不打印控制台日志。
知道如何在没有 python 的计算机上正确安装此服务吗?
编辑:setup.py 工作
`from distutils.core import setup
import py2exe
# setup.py
#
class Target:
def __init__(self, **kw):
self.__dict__.update(kw)
# for the versioninfo resources
self.version = "0.5.0"
self.company_name = "Company"
self.copyright = "no copyright"
self.name = "Test22"
myservice = Target(
description = 'Edit Logon Service',
modules = ['Logon_Service'],
cmdline_style='pywin32'
) `
确保正确的 pywintypes{version}.dll 位于您的 C:/Windows/System 32/ 文件夹中。
这是我第一次构建 windows 服务,我认为我已经成功了。安装为 python aservice.py install
工作正常,并做出相应响应。
但是,由于我需要安装此服务的机器没有安装 python,我想将其构建为可执行文件,以便安装该服务。虽然可执行文件成功安装了该服务,但当我尝试手动启动它或通过 net start
或 sc start
时,该服务没有响应。
手动启动 returns - 错误 1053:服务未及时响应启动或控制请求。
Net Start returns - 服务未响应控制功能。
与 python 一起安装时,它会响应所有命令,并且工作正常。不确定构建过程中发生了什么,但我显然遗漏了一些东西
使用 Python 3.4 64 位。所有需要该服务的盒子也将是 64 位的。
服务定义
class aservice(win32serviceutil.ServiceFramework):
_svc_name_ = "Test Login Service"
_svc_display_name_ = "Test Login Service"
_svc_description_ = "Test"
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 = 3000
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("aservice - STOPPED")
break
else:
servicemanager.LogInfoMsg("aservice - is alive and well")
...Doing Things...
servicemanager.LogInfoMsg("Logon Service Has Completed, Stopping")
time.sleep(10)
break
def ctrlHandler(ctrlType):
return True
if __name__ == '__main__':
win32api.SetConsoleCtrlHandler(ctrlHandler, True)
win32serviceutil.HandleCommandLine(aservice)
setup.py
`from distutils.core import setup
import py2exe
# setup.py
#
class Target:
def __init__(self, **kw):
self.__dict__.update(kw)
# for the versioninfo resources
self.version = "0.5.0"
self.company_name = "Company"
self.copyright = "no copyright"
self.name = "Test22"
myservice = Target(
description = 'Edit Logon Service',
modules = ['Logon_Service'],
cmdline_style='pywin32'
) `
构建命令=python setup.py py2exe
我也尝试过 setup.py 和 windows,效果相同,但不打印控制台日志。
知道如何在没有 python 的计算机上正确安装此服务吗?
编辑:setup.py 工作
`from distutils.core import setup
import py2exe
# setup.py
#
class Target:
def __init__(self, **kw):
self.__dict__.update(kw)
# for the versioninfo resources
self.version = "0.5.0"
self.company_name = "Company"
self.copyright = "no copyright"
self.name = "Test22"
myservice = Target(
description = 'Edit Logon Service',
modules = ['Logon_Service'],
cmdline_style='pywin32'
) `
确保正确的 pywintypes{version}.dll 位于您的 C:/Windows/System 32/ 文件夹中。