Python Windows服务-无法响应内置exe的启动/停止(但适用于python)

问题描述 投票:0回答:2

这是我第一次构建Windows服务,我以为我可以使用它。以python aservice.py install进行安装可以正常工作,并做出相应的响应。

但是,由于我将需要在其上安装此服务的机器上没有安装python,因此我希望将其构建为可执行文件,以安装该服务。尽管可执行文件成功安装了服务,但是当我尝试手动启动它或通过net startsc start启动该服务时,该服务没有响应。

手动启动返回-错误1053:服务未及时响应启动或控制请求。

Net Start返回-服务未响应控制功能。

与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

我也尝试过Windows的setup.py,其工作原理相同,但不打印控制台日志。

关于如何在没有python的计算机上正确安装此服务的任何想法?

编辑:setup.py正在工作

这是我第一次构建Windows服务,我以为我可以使用它。作为python安装aservice.py install可以正常工作,并做出相应的响应。但是,由于我的机器... ... >>

python windows service pywin32 activepython
2个回答
0
投票
`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' 
    ) `

0
投票

确保正确的pywintypes {version} .dll位于C:/ Windows / System 32 /文件夹中。

© www.soinside.com 2019 - 2024. All rights reserved.