- 帖子
- 75
- 精华
- 1
- 积分
- 373
- 阅读权限
- 30
- 注册时间
- 2013-12-20
- 最后登录
- 2015-6-24
|
本帖最后由 今天手气不错啊 于 2014-3-10 10:29 编辑
作者:梅劲松
如果我们想让系统启动的时候就执行某个程序,windows系统和unix系统是不一样的,对于unix只需要将要执行的命令放到rc.local中,系统重新启动的时候就可以加载了。windows就麻烦多了,如果你将程序放到启动组中,只有输入了密码后,程序才被执行,如果想在系统一启动的时候就执行程序,必须使用nt服务。
python下如何使用nt服务,其实很简单。
下载python的win32支持。我使用的是:pywin32-202.win32-py2.3.exe安装好后就可以来写我们的服务了。
我们先来建立一个空的服务,建立test_python.py这个文件,并写入如下代码- import win32serviceutil
- import win32service
- import win32event
- class test_python(win32serviceutil.ServiceFramework):
- _svc_name_ = "test_python"
- _svc_display_name_ = "test_python"
- 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(test_python)
复制代码 这里注意,如果你需要更改文件名,比如将win32serviceutil.HandleCommandLine(test1)中的test1更改为你的文件名,同时class也需要和你的文件名一致,否则会出现服务不能启动的问题。
在命令窗口执行,test_python.py可以看到帮助提示- C:\>;test_python.py
- Usage: 'test_python.py [options] install|update|remove|start [...]|stop|restart [...]|
- debug [...]'
- Options for 'install' and 'update' commands only:
- --username domain\username : The Username the service is to run under
- --password password : The password for the username
- --startup [manual|auto|disabled] : How the service starts, default = manual
- --interactive : Allow the service to interact with the desktop.
- C:\>;
复制代码 安装我们的服务- C:\>;test_python.py install
- Installing service test_python to Python class C:\test1.test1
- Service installed
- C:\>;
复制代码 我们就可以用命令或者在控制面板-》管理工具-》服务中管理我们的服务了。在服务里面可以看到test_python这个服务,虽然这个服务什么都不做,但能启动和停止他。
下面我们来写个复杂点的服务。
改天写,要下班了。 |
|