zoukankan      html  css  js  c++  java
  • 为nginx创建windows服务自启动

    1、下载最新版的 Windows Service Wrapper 程序,比如我下载的名称是 "winsw-1.9-bin.exe",
    然后,把它命名成你想要的名字(比如: "mynginx.exe",当然,你也可以不改名)

    2、把下载的文件(winsw-1.9-bin.exe)复制到nginx目录(D: ginx-1.12.2)

    3、nginx目录下创建一个同名的Windows Service Wrapper的XML配置文件(winsw-1.9-bin.xml)

    文件内容如下:

    <service>
      <id>nginx</id>
      <name>Nginx Service</name>
      <description>High Performance Nginx Service</description>
      <logpath>D:
    ginx-1.12.2logs</logpath>
      <log mode="roll-by-size">
        <sizeThreshold>10240</sizeThreshold>
        <keepFiles>8</keepFiles>
      </log>
      <executable>D:
    ginx-1.12.2
    ginx.exe</executable>
      <startarguments>-p D:
    ginx-1.12.2</startarguments>
      <stopexecutable>D:
    ginx-1.12.2
    ginx.exe</stopexecutable>
      <stoparguments>-p D:
    ginx-1.12.2 -s stop</stoparguments>
    </service>

    说明:

    <name>Nginx Service</name>        #这是服务里面名字
    <description>High Performance Nginx Service</description>   #这里是对服务的描述

    4、命令行执行安装命令

    Windows Servcie Wrapper的命令格式如下:

    #安装服务
    
    CMD:> winsw-1.9-bin.exe install
    
    #卸载服务
    
    CMD:> winsw-1.9-bin.exe uninstall
    
    #启动服务
    
    CMD:> winsw-1.9-bin.exe start
    
    #停止服务
    
    CMD:> winsw-1.9-bin.exe stop

    #附个当时安装1.8版本时的图片

  • 相关阅读:
    MySQL
    Shell运算符:Shell算数运算符、关系运算符、布尔运算符、字符串运算符等
    ps
    top
    sed
    nav响应范围一定要足够宽
    续上获取input的checked用prop时返回的是布尔值
    jq不应该用attr获取input的check值
    jq祖级元素
    一些jquery的坑
  • 原文地址:https://www.cnblogs.com/meiling12/p/8435960.html
Copyright © 2011-2022 走看看