`
assback
  • 浏览: 5750 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

Python 安装Windows Service

阅读更多
#1. 安装Python
#2. 安装pyWin32,可以到http://sourceforge.net/projects/pywin32/files/pywin32/下载
#3. 代码示例如下
# -*- coding: utf-8 -*-
# SmallestService.py
#
# A sample demonstrating the smallest possible service written in Python.

import win32serviceutil
import win32service
import win32event
import SocketServer
import logging

import sys
import SocketServer
import logging
import httplib, urllib, cookielib, urllib2

import threading
import time

logging.basicConfig(level=logging.DEBUG,
                    format='%(asctime)s %(levelname)s %(message)s',
                    filename=r'log234.txt',
                    filemode='a+')

import socket, time
import random, struct
import urllib

class SmallestPythonService(win32serviceutil.ServiceFramework):
    _svc_name_ = "Sologin Monitor Service"
    _svc_display_name_ = "Sologin Monitor Service"
    
    def __init__(self, args):
        self.threads = []
        logging.error("add thread on port t")
        win32serviceutil.ServiceFramework.__init__(self, args)
        # Create an event which we will use to wait on.
        # The "service stop" request will set this event.
        self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)

    def SvcStop(self):
        # Before we do anything, tell the SCM we are starting the stop process.
        self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
        # And set my event.
        
        win32event.SetEvent(self.hWaitStop)

    def SvcDoRun(self):
        # 把你的程序代码放到这里就OK了
        self.threads = []
        
        logging.error("add thread on port ")
            
        win32event.WaitForSingleObject(self.hWaitStop, win32event.INFINITE)

if __name__=='__main__':
    win32serviceutil.HandleCommandLine(SmallestPythonService) 
    # 括号里的名字可以改成其他的,必须与class名字一致;

#4. 然后执行运行SmallestPythonService install命令即可将servcie安装好
分享到:
评论

相关推荐

    Python编写Windows Service服务程序

    ### Python编写Windows Service服务程序详解 #### 一、引言 在Windows环境下,有时我们需要创建一个后台服务程序,这类程序可以在系统启动时自动运行,并在后台持续运行而不会占用用户的桌面资源。对于开发者来说...

    SOAPpy安装 python web service必备

    在标题“SOAPpy安装 python web service必备”中,我们可以理解到SOAPpy是Python开发Web服务的关键组件,对于构建基于SOAP的服务至关重要。它简化了与SOAP服务交互的复杂性,使得开发过程更为便捷。 描述中提到的...

    Python 实现 windows计划任务.rar

    在Windows环境下,我们可以通过安装如CronForWindows这样的第三方软件来模拟crontab功能。然而,这个压缩包中的程序可能采用了不同的方法,通过Python模拟crontab的工作原理,创建一个类似的定时任务调度系统。这...

    Python实现 windows 下代理IP的自动切换

    8. **代码结构**:遵循良好的编程规范,将代码划分为多个模块,如`proxy_manager`(负责代理IP的获取、验证和切换)、`service_handler`(处理Windows服务相关操作)等,提高代码的可读性和可复用性。 综上所述,...

    以windows service方式运行Python程序的方法

    在Windows操作系统中,有时候我们需要让Python程序在后台持续运行,即使用户没有登录或关闭了终端窗口。这时,将Python程序转化为Windows服务是一种有效的解决方案。本篇文章将详细介绍如何使用Python创建一个简单的...

    基于virtualBox,python,windows platform sdk等编写的安卓模拟器

    【作品名称】:基于virtualBox,python,windows platform sdk等编写的安卓模拟器 【适用人群】:适用于希望学习不同技术领域的小白或进阶学习者。可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。 ...

    Windows Service Wrapper 1.9

    Windows Service Wrapper 1.9 是一个开源工具,主要用于将任何可执行程序(如Java应用、Python脚本等)包装成Windows服务,使得这些程序可以在系统启动时自动运行,并具有后台服务应有的特性,如自动重启、独立于...

    python代码封装一键安装agent

    要将一个程序注册为系统服务,可以使用Python的`subprocess`模块调用Windows的sc命令或者其他第三方库如nssm(Non-Sucking Service Manager)。通过这种方式,我们可以让Agent在启动时自动运行,并且可以在服务管理...

    Python windows服务程序实现计划任务

    在这个主题中,我们将深入探讨如何利用Python在Windows环境下创建服务程序来实现计划任务,以及与Linux的crontab进行对比。 首先,让我们了解在Windows中使用Python创建服务程序的概念。Windows服务是一种可以在...

    使用 python 开发 Web Service安装包ZSI

    4. **验证安装**:安装完成后,你可以通过运行Python解释器并尝试导入ZSI模块来验证安装是否成功。在命令行输入`python`进入交互模式,然后尝试`import ZSI`。如果没有错误,说明ZSI已经成功安装。 接下来,我们来...

    python脚本windows服务器自动备份mysql

    Python脚本在Windows服务器上用于MySQL数据库的自动备份是一个实用且高效的方法,它可以帮助系统管理员定期、自动地保存重要的数据库数据,确保数据安全。这里我们将深入探讨如何实现这个功能,以及涉及的相关技术。...

    mkl_service-2.4.0-cp311-cp311-win_amd64 (1).whl.zip

    在Windows环境下,我们可以使用Python的包管理工具pip来安装whl文件。首先,确保pip已经更新到最新版本,然后将whl文件移动到Python安装目录下的Scripts文件夹,或者通过路径指定whl文件的位置。在命令行中输入以下...

    Python制作Windows系统服务

    最近有个Python程序需要安装并作为Windows系统服务来运行,过程中碰到一些坑,整理了一下。 Python服务类 首先Python程序需要调用一些Windows系统API才能作为系统服务,具体内容如下: #!/usr/bin/env python # -*-...

    python_oracle

    在提供的文件列表中,`cx_Oracle-5.3-11g.win-amd64-py3.5-2.exe`就是cx_Oracle的安装包,它是专门为Python设计的Oracle数据库驱动,支持Python 3.5版本,适用于64位Windows系统。安装这个驱动后,我们可以在Python...

    python3.4.4(win xp sp3)

    Python 3.4.4是Python编程语言的一个稳定版本,主要针对Windows XP Service Pack 3 (SP3) 32位操作系统设计。该版本在2015年发布,为用户提供了更新的功能和修复了一些已知的问题。在XP SP3上安装这个版本的Python,...

    Python-100-Days5.22版本.pdf

    对于Windows 7,需要先安装ServicePack1补丁包。建议勾选“AddPython3.6toPATH”以将Python 3.6添加到PATH环境变量,并选择自定义安装,建议安装路径不含中文。安装过程中需要安装“pip”、“tcl/tk”、“Python ...

    python+selenium+unittest环境搭建1

    Python+Selenium+Unittest环境搭建详解 Python+Selenium+Unittest环境搭建是自动化测试中的一种重要组件,本文将详细介绍如何搭建...(2)之前以Windows service启动Jenkins中的插件也没有了,需要重新安装所需插件。

    基于virtualBox,python,windows platform sdk等编写的安卓模拟器+源代码+文档说明

    基于virtualBox,python,windows platform sdk等编写的安卓模拟器 ## 1 编译指南 ### 1.1 环境需求 Windows 10, Windows 8.1, Windows 8 or Windows 7.46bit ### 1.2 安装软件 Visual Studio 2010 with ...

Global site tag (gtag.js) - Google Analytics