CABrouwers / node-red-contrib-telnet

Apache License 2.0
2 stars 0 forks source link

telnet - connection missing node #5

Closed bungernut closed 3 years ago

bungernut commented 3 years ago

I'm new to node-red so apologies if this is a setup error. I seem to be missing only the telnet-connection node in my install somehow.

image

,
> node-red-docker@1.3.5 start /usr/src/node-red,
> node $NODE_OPTIONS node_modules/node-red/red.js $FLOWS "--userDir" "/data",
,
27 May 15:09:01 - [info] ,
,
Welcome to Node-RED,
===================,
,
27 May 15:09:01 - [info] Node-RED version: v1.3.5,
27 May 15:09:01 - [info] Node.js  version: v10.24.1,
27 May 15:09:01 - [info] Linux 4.19.0-16-amd64 x64 LE,
27 May 15:09:02 - [info] Loading palette nodes,
27 May 15:09:03 - [info] Dashboard version 2.29.1 started at /ui,
27 May 15:09:03 - [warn] Missing node modules:,
27 May 15:09:03 - [warn]  - node-red-contrib-buffer-parser (3.1.5): buffer-parser, buffer-maker,
27 May 15:09:03 - [info] Removing modules from config,
27 May 15:09:03 - [info] Settings file  : /data/settings.js,
27 May 15:09:03 - [info] Context store  : 'default' [module=memory],
27 May 15:09:03 - [info] User directory : /data,
27 May 15:09:03 - [warn] Projects disabled : editorTheme.projects.enabled=false,
27 May 15:09:03 - [info] Flows file     : /data/flows.json,
27 May 15:09:03 - [warn] ,
,
---------------------------------------------------------------------,
Your flow credentials file is encrypted using a system-generated key.,
,
If the system-generated key is lost for any reason, your credentials,
file will not be recoverable, you will have to delete it and re-enter,
your credentials.,
,
You should set your own key using the 'credentialSecret' option in,
your settings file. Node-RED will then re-encrypt your credentials,
file using your chosen key the next time you deploy a change.,
---------------------------------------------------------------------,
,
27 May 15:09:03 - [info] Server now running at http://127.0.0.1:1880/,
27 May 15:09:03 - [info] Starting flows,
27 May 15:09:03 - [info] Started flows,

The Dockerfile that creates this is:

FROM nodered/node-red:latest
RUN npm cache verify
RUN for addonnodes in \
node-red-node-pi-gpiod \
node-red-dashboard \
node-red-node-ping \
node-red-contrib-influxdb \
node-red-contrib-boolean-logic \
node-red-contrib-pid \
node-red-contrib-modbus \
node-red-contrib-telnet-client \
; do \
npm install ${addonnodes} ;\
done;
bungernut commented 3 years ago

nevermind, I found out it's not a "node" and is accessed in a configure button in other nodes image