我正在尝试启动一个简单的服务示例:
someservice.py:import win32serviceutil
import win32service
import win32event
class SmallestPythonService(win32serviceutil.ServiceFramework):
_svc_name_ = "SmallestPythonService"
_svc_display_name_ = "display service"
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):
win32event.WaitForSingleObject(self.hWaitStop, win32event.INFINITE)
if __name__=='__main__':
win32serviceutil.HandleCommandLine(SmallestPythonService)
当我跑的时候python someservice.py install
一切正常,服务出现在Windows服务列表中,但是python someservice.py start
失败,显示“错误1053:服务没有及时响应启动或控制请求”,但没有任何延迟。
我在谷歌上搜索了一个解决方案,它说当pythonservice.exe找不到python27.dll时就会发生这种情况。它实际上不可能,所以我添加了C:\Python27到PATH。现在pythonservice.exe运行正常,但错误1053仍然存在。
我在Windows7Ultimate上运行Python2.7.2和Pywin32216,具有管理员权限。