码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx以服务方式启动并用定时任务每天备份日志

时间:2014-07-12 15:17:38      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:blog   http   strong   文件   art   io   

1.安装Nginx以服务方式启动:

a.下载 instsrv.exe、srvany.exe 

以管理员方式启动CMD执行以下命令: 

instsrv Nginx D:\nginx\srvany.exe   

b.添加注册表关键附带运行Nginx

Windows Registry Editor Version 5.00  
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NGINX\Parameters]  
"Application"="D:\\nginx\\nginx.exe"  
"AppParameters"=""  
"AppDirectory"="D:\\nginx\\"  

2.添加批处理文件以,Windows计划任务开始执行:

@ECHO OFF
rem 停止nginx服务
net stop nginx
 
rem 杀掉nginx进程,因为一个服务可能启动多个nginx进程
taskkill /F /IM nginx.exe
 
rem 产生移动日志文件命令
set "cmdstr=move D:\nginx\logs\access.log D:\nginx\logs\logbak\access%date:~0,4%%date:~5,2%%date:~8,2%%time:~0,2%.log"
 
rem 移动日志文件
call %cmdstr%"
 
rem 启动nginx服务
net start nginx

 附件下载:nginx.rar

Nginx以服务方式启动并用定时任务每天备份日志,布布扣,bubuko.com

Nginx以服务方式启动并用定时任务每天备份日志

标签:blog   http   strong   文件   art   io   

原文地址:http://www.cnblogs.com/flyfish2012/p/3839810.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!