0

这是我第一次构建 Windows 服务,我认为我已经成功了。安装 aspython 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)

安装程序.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 工作

4

2 回答 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' 
    ) `
于 2015-08-22T14:29:18.593 回答
0

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

于 2020-01-31T18:47:10.070 回答