美文网首页程序员
Python脚本在Windows下以Service服务的形式定时

Python脚本在Windows下以Service服务的形式定时

作者: Bear_beat | 来源:发表于2019-02-21 09:20 被阅读0次

    Python脚本在Windows下以Service服务的形式定时运行

    1.简介

    最近工作上有个需求,是需要在服务器中定时运行脚本。以前定时任务都是在linux上通过crontab或者shell脚本跑的,而这次是需要在windows的服务器上运行的。要完成这个需求,需要借助pywin32模块把脚本写成windows的服务形式。

    2.简单的服务程序用例

    这是一个相当于模版一样的代码,在相应的地方放进自己要执行的代码即可。
    test.py:

    # -*- coding: utf-8 -*-
    
    import os
    import win32serviceutil
    import win32service
    import win32event
    import datetime
    from time import sleep
    
    
    class TestService(win32serviceutil.ServiceFramework):
        _svc_name_ = "Test Ser"
        _svc_display_name_ = "Test Ser"
        _svc_description_ = "This is a Test Ser"
    
        def __init__(self, args):
            win32serviceutil.ServiceFramework.__init__(self, args)
            self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)
    
        def SvcDoRun(self):
            # 定时任务
            while True:
                # 写日志操作
                os.chdir('C:\\')
                with open('test_log.txt', 'a+') as f:
                    f.write('test in | ' + datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') + '\n')
                    f.write('---------------------------------------------------------------------------' + '\n')
                    f.write('\n')
                sleep(60)
    
        def SvcStop(self):
            self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
            win32event.SetEvent(self.hWaitStop)
    
    
    if __name__ == '__main__':
        win32serviceutil.HandleCommandLine(TestService)
    

    这里是延时只是用了简单的sleep有需要的可以用APScheduler等第三方库进行定时。

    3.注意事项:

    1.dll文件缺失

    点开自己的python根目录的\Lib\site-packages\win32 点击pythonservice.exe会提示缺失pywintypes36.dll(我的是3.6版本)。
    解决方法:需要到\Lib\site-packages\pywin32_system32把dll文件复制粘贴到Lib\site-packages\win32文件夹。再次运行pythonservice.exe会发现没有报错。

    2.设置用户环境变量

    因为我是在本地运行服务,所以要把python的环境变量添加到用户环境变量,这样服务才能正常启动。添加方法跟安装python的时候相同。

    服务的命令

    # 安装服务
    python test.py install
    # 服务自动启动
    python test.py --startup auto install 
    # 更新服务
    python test.py update
    # 服务开始
    python test.py start
    # 重启服务
    python test.py restart 
    # 停止服务
    python test.py stop
    # 卸载服务
    python test remove
    

    在调试时执行了stop命令后,发现任务管理器里服务的进程会处于正在停止状态,这是是重新start不了的,可以通过命令行直接 tskill PID 强制停止。

    结果

    image.png image.png image.png

    相关文章

      网友评论

        本文标题:Python脚本在Windows下以Service服务的形式定时

        本文链接:https://www.haomeiwen.com/subject/ggvlyqtx.html