gpt4 book ai didi

node-red - 如何在 Node-RED 中远程部署流文件?

转载 作者:行者123 更新时间:2023-12-02 19:26:02 32 4
gpt4 key购买 nike

有没有办法将现有的 Node-RED 流文件 myflow.json 部署到运行 Node-RED 的远程计算机?

经过多次谷歌搜索,我偶然发现了this discussion在相关的Google群组中,但不是很有启发。

更新(在下面的建议答案之后)

以下是来自远程计算机的建议请求的输出:

[scripts]$ curl -v -X POST http://192.168.70.73:1880/flows -H "Content-Type: application/json"  --data "@remote_test.json" 
* About to connect() to 192.168.70.73 port 1880 (#0)
* Trying 192.168.70.73... connected
* Connected to 192.168.70.73 (192.168.70.73) port 1880 (#0)
> POST /flows HTTP/1.1
> User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.21 Basic ECC zlib/1.2.3 libidn/1.18 libssh2/1.4.2
> Host: 192.168.70.73:1880
> Accept: */*
> Content-Type: application/json
> Content-Length: 1088
> Expect: 100-continue
>
< HTTP/1.1 100 Continue
< HTTP/1.1 204 No Content
< X-Powered-By: Express
< Date: Fri, 10 Feb 2017 11:45:24 GMT
< Connection: keep-alive
<
* Connection #0 to host 192.168.70.73 left intact
* Closing connection #0

响应 204(表示 success )。

以下是本地计算机控制台中的相应输出:

10 Feb 13:45:24 - [info] Stopping flows
10 Feb 13:45:24 - [info] Stopped flows
10 Feb 13:45:24 - [info] Starting flows
10 Feb 13:45:24 - [info] Started flows

此后什么也不会发生。

要部署的流remote_test.json确实显示在本地计算机的GUI中,但它没有运行;此外,当我尝试手动注入(inject)或启用调试节点时,我在本地 GUI 中收到错误:节点未部署(并且“部署”按钮处于非事件状态)。

这是超简单的流程:

remote_test.json

使用 format 节点,只需解析每 5 秒从 get_temp 接收到的温度测量值并添加时间戳:

var temp = parseFloat(msg.payload.replace( /[^\d\.]*/g, ''));
var time = new Date().toISOString().replace(/\..+/, '');

msg.payload = {'measurements' : [ { 'time' : time },
{ 'temperature' : temp } ]
};
console.log(msg.payload);
return msg;

这是本地部署流程时的控制台输出:

10 Feb 14:08:25 - [info] Stopped flows
10 Feb 14:08:25 - [info] Starting flows
10 Feb 14:08:25 - [info] Started flows
{ measurements: [ { time: '2017-02-10T12:08:30' }, { temperature: 34.7 } ] }
{ measurements: [ { time: '2017-02-10T12:08:35' }, { temperature: 34.2 } ] }
{ measurements: [ { time: '2017-02-10T12:08:40' }, { temperature: 33.6 } ] }
{ measurements: [ { time: '2017-02-10T12:08:45' }, { temperature: 33.6 } ] }

使用 node-red-startnode-red 启动服务,以及包含或不包含参数 -H "Node-RED-Deployment -在请求中输入:full”,没有任何区别。

系统配置:

  • 树莓派3
  • Node.js 7.4.0
  • 节点-RED 0.13.4

更新2

问题似乎出在 Node.js 和/或 Node-RED 版本上。在不同的 Pi 上尝试过,运行 Node.js 6.9.5 和 Node-RED 0.16.2,并且工作正常。

最佳答案

Node-RED 运行时公开了一个 REST API,该 API 提供了在运行时部署新流配置的方法。

此处记录了相关的具体 API:http://nodered.org/docs/api/admin/methods/post/flows/

它允许您执行包含您希望运行时部署的流配置的 HTTP POST。

例如,如果流文件位于 myflow.json 中,并且 Node-RED 在 http://localhost:1880 上运行,则可以使用curl 来部署它:

curl -X POST http://localhost:1880/flows -H "Content-Type: application/json" --data "@myflow.json"

关于node-red - 如何在 Node-RED 中远程部署流文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42143597/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com