我有一个最小的python win32服务service.py
没有什么特别之处:
import win32serviceutil
import win32service
import win32event
class SmallestPythonService(win32serviceutil.ServiceFramework):
_svc_name_ = "SmallestPythonService"
_svc_display_name_ = "display service"
# _svc_description_='ddd'
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)
当我跑步时:
service.py install
service.py start
它工作正常,但当我将service.py
文件与py2exe
编译为service.exe
并运行以下内容时:
service.exe install
service.exe start [or trying to restart the service from the Services.msc]
我收到此消息:
Could not start the service name service on Local Computer.
Error 1053: The service did not respond to the start or control request in a timely fashion
如何解决此问题?
此处还有distutil
代码:
from distutils.core import setup
import py2exe
py2exe_options = {"includes": ['decimal'],'bundle_files': 1}
setup(console=[{"script":'Service.py'}],
options={"py2exe": py2exe_options},
zipfile = None,
},
)
答案 0 :(得分:6)
将您的setup(console=[{"script":'Service.py'}]
替换为setup(service=[{"script":'Service.py'}]
。而不是控制台使用服务。
答案 1 :(得分:1)
尝试此设置:
py2exe_options = {"includes": ['decimal'],'bundle_files': 1}
setup(
service=[{'modules':'Service.py','cmdline_style':'pywin32','description':'your service description'}],
options={'py2exe':py2exe_options},
zipfile=None)
答案 2 :(得分:0)
快速谷歌提出了这个:http://islascruz.org/html/index.php?gadget=StaticPage&action=Page&id=6
它有意大利语评论,但如果您不懂意大利语,我可以帮您翻译一些内容。
要真正调试您的问题,我想我们需要查看您的setup.py
distutils脚本......
答案 3 :(得分:0)
您可能错过了正确的PATH来查找服务所需的所有DLL。通常,服务作为“LocalSystem”服务安装,因此您需要将PATH添加到系统(而不是用户)。
尝试将c:\ python27(或任何python dll的路径)添加到SYSTEM PATH,重新启动计算机并检查它现在是否正常启动。