question

tomhei avatar image
tomhei asked

Node-RED Node "write file"

Ich möchte auf dem Filesystem eine Datei speichern. Ich verwende die node "write file" und bekommen eine Meldung, dass ich keine Zugriffsrechte habe (Error: EACCES: permission denied, open .......). Was muss ich machen wenn ich eine Datei auf dem File-System ablegen will ?

Venus OSNode-REDRaspberry Pi
2 |3000

Up to 8 attachments (including images) can be used with a maximum of 190.8 MiB each and 286.6 MiB total.

3 Answers
d-ferdi avatar image
d-ferdi answered ·

hallo,

du darft nicht nur einen dateinamen angeben, du musst auch den pfad angeben und ich wuerde dir empfehlen, eine sd-karte einzusetzen und die daten dort zu speichern.

ich benutze dazu eine mysql-datenbank.

tschuess

2 |3000

Up to 8 attachments (including images) can be used with a maximum of 190.8 MiB each and 286.6 MiB total.

Dirk-Jan Faber (Victron Energy) avatar image
Dirk-Jan Faber (Victron Energy) answered ·

That is covered by https://www.victronenergy.com/live/venus-os:large#q1write_read_file_gives_erroreaccesspermission_denied:

Q1: Write/read file gives "Error: EACCESS: permission denied'

Since Venus OS 2.90 and on wards, Node-RED no longer runs as user root, but as user nodered. This means that the Node-RED flows are only allowed to access files and directories that are owned by the nodered user. These files typically start below /data/home/nodered/. So modifying the storage location to something like /data/home/nodered/storage.txt ought to work.


2 comments
2 |3000

Up to 8 attachments (including images) can be used with a maximum of 190.8 MiB each and 286.6 MiB total.

d-ferdi avatar image d-ferdi commented ·
@Dirk-Jan Faber (Victron Energy)

hello,

i have some good ideas to make victron products better and some are possible, to use node-red to realize them.

i have also some problems with venus-os which make things, which it should not make like ignoring configured limits!

but i have no posiblity to contact the right persons at victron to discuse my ideas and the problems with things, which should not happend.

can you hellp me with that?

goodby

0 Likes 0 ·
Show more comments
axlnb avatar image
axlnb answered ·

Bei mir funktionierte es wie folgt.

In der Remote-Konsole unter Einstellungen und Allgemeines lange auf rechts klicken -> Superuser bzw. root öffnet sich. Dann für root ein Passwort festlegen und SSH auf LAN aktivieren..

Über SSH und der IP einloggen, anmelden mit root und dem vergebenen Passwort. Dann das Verzeichnis /data/home öffnen, bzw. folgende Befehle eingeben:

cd ..

cd ..

cd data

cd home

Dann die Rechte vergeben:

chmod +r nodered

chmod +w nodered


Über die Remote-Konsole dann wieder, unter Einstellungen und Allgemeines, als Benutzer & Installateur anmelden mit Passwort ZZZ


Nun kann unter /data/home/nodered/... geschrieben und gelesen werden

2 |3000

Up to 8 attachments (including images) can be used with a maximum of 190.8 MiB each and 286.6 MiB total.