我已经下载了node.js可执行文件。如何将该可执行文件作为 Windows 服务运行?我不能使用标准的 node.js 安装程序,因为我需要同时运行多个版本的 node.js。
8 回答
派对迟到了,但节点窗口也可以解决问题。
它还内置了系统日志记录。
有一个 API 可以从代码创建脚本,即
var Service = require('node-windows').Service;
// Create a new service object
var svc = new Service({
name:'Hello World',
description: 'The nodejs.org example web server.',
script: 'C:\\path\\to\\helloworld.js'
});
// Listen for the "install" event, which indicates the
// process is available as a service.
svc.on('install',function(){
svc.start();
});
svc.install();
FD:我是这个模块的作者。
我发现这个东西非常有用,因此我围绕它构建了一个更易于使用的包装器(npm、github)。
安装它:
npm install -g qckwinsvc
安装您的服务:
qckwinsvc
prompt: Service name: [name for your service]
prompt: Service description: [description for it]
prompt: Node script path: [path of your node script]
Service installed
卸载您的服务:
qckwinsvc --卸载
prompt: Service name: [name of your service]
prompt: Node script path: [path of your node script]
Service stopped
Service uninstalled
接下来,我想将节点作为服务托管,就像 IIS 一样。这样它就可以在我的机器上启动,在后台运行,如果它崩溃会自动重启等等。
这就是nssm,非吸吮服务管理器,进入图片的地方。此工具可让您将普通 .exe 作为 Windows 服务托管。
以下是我用来将节点应用程序实例设置为服务的命令,像管理员一样打开 cmd 并键入以下命令:
nssm.exe install service_name c:\your_nodejs_directory\node.exe c:\your_application_directory\server.js net start service_name
https://nssm.cc/服务助手非常适合通过我从 nssm 使用的批处理文件创建 Windows 服务,并且适用于任何应用程序和任何文件
我一年前发布的流程管理器 + 任务调度器方法适用于一些一次性服务安装。但最近我开始以微服务的方式设计系统,许多小服务通过 IPC 相互通信。所以手动配置每个服务变得难以忍受。
为了实现无需手动配置即可安装服务的目标,我创建了serman,这是一个命令行工具(安装方式npm i -g serman
),用于将可执行文件安装为服务。您只需编写一个简单的服务配置文件以及可执行文件即可(并且只需要编写一次)。跑
serman install <path_to_config_file>
将安装该服务。stdout
并stderr
全部记录。有关更多信息,请查看项目网站。
一个工作配置文件非常简单,如下所示。但它也有许多有用的功能<env>
,<persistent_env>
如下所示。
<service>
<id>hello</id>
<name>hello</name>
<description>This service runs the hello application</description>
<executable>node.exe</executable>
<!--
{{dir}} will be expanded to the containing directory of your
config file, which is normally where your executable locates
-->
<arguments>"{{dir}}\hello.js"</arguments>
<logmode>rotate</logmode>
<!-- OPTIONAL FEATURE:
NODE_ENV=production will be an environment variable
available to your application, but not visible outside
of your application
-->
<env name="NODE_ENV" value="production"/>
<!-- OPTIONAL FEATURE:
FOO_SERVICE_PORT=8989 will be persisted as an environment
variable machine-wide.
-->
<persistent_env name="FOO_SERVICE_PORT" value="8989" />
</service>