Skip to content
  • Home
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. Raspi Permission denied

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.8k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    2.2k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    16
    1
    3.2k

Raspi Permission denied

Scheduled Pinned Locked Moved ioBroker Allgemein
59 Posts 12 Posters 5.8k Views 9 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Damrak2022D Damrak2022

    @liv-in-sky So, es gibt Neuigkeiten. Ich habe nun meine SD Karte am iMac formatiert und dann Raspberry light und anschließend Biobroker über die Konsole installiert.
    Im Abschnitt 3 von 4 bei der Iobroker Installation gab es eine Menge Warnmeldungen mit denen ich nichts anfangen kann - siehe hier:

    In file included from ../../nan/nan.h:58,
                     from ../src/main.cpp:3:
    /home/pi/.cache/node-gyp/12.22.11/include/node/node.h:736:7: warning: cast between incompatible function types from ‘void (*)(v8::Local<v8::Object>)’ to ‘node::addon_register_func’ {aka ‘void (*)(v8::Local<v8::Object>, v8::Local<v8::Value>, void*)’} [-Wcast-function-type]
      736 |       (node::addon_register_func) (regfunc),                          \
          |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /home/pi/.cache/node-gyp/12.22.11/include/node/node.h:770:3: note: in expansion of macro ‘NODE_MODULE_X’
      770 |   NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT (readability/null_usage)
          |   ^~~~~~~~~~~~~
    ../src/main.cpp:42:1: note: in expansion of macro ‘NODE_MODULE’
       42 | NODE_MODULE(diskusage, Init)
          | ^~~~~~~~~~~
    In file included from ../../nan/nan.h:58,
                     from ../src/unix_dgram.cc:5:
    /home/pi/.cache/node-gyp/12.22.11/include/node/node.h:736:7: warning: cast between incompatible function types from ‘void (*)(v8::Local<v8::Object>)’ to ‘node::addon_register_func’ {aka ‘void (*)(v8::Local<v8::Object>, v8::Local<v8::Value>, void*)’} [-Wcast-function-type]
      736 |       (node::addon_register_func) (regfunc),                          \
          |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /home/pi/.cache/node-gyp/12.22.11/include/node/node.h:770:3: note: in expansion of macro ‘NODE_MODULE_X’
      770 |   NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT (readability/null_usage)
          |   ^~~~~~~~~~~~~
    ../src/unix_dgram.cc:404:1: note: in expansion of macro ‘NODE_MODULE’
      404 | NODE_MODULE(unix_dgram, Initialize)
          | ^~~~~~~~~~~
    ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Open(Nan::NAN_METHOD_ARGS_TYPE)’:
    ../src/serialport.cpp:78:51: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
       78 |   uv_queue_work(uv_default_loop(), req, EIO_Open, (uv_after_work_cb)EIO_AfterOpen);
          |                                                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Update(Nan::NAN_METHOD_ARGS_TYPE)’:
    ../src/serialport.cpp:135:53: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
      135 |   uv_queue_work(uv_default_loop(), req, EIO_Update, (uv_after_work_cb)EIO_AfterUpdate);
          |                                                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Close(Nan::NAN_METHOD_ARGS_TYPE)’:
    ../src/serialport.cpp:175:52: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
      175 |   uv_queue_work(uv_default_loop(), req, EIO_Close, (uv_after_work_cb)EIO_AfterClose);
          |                                                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Flush(Nan::NAN_METHOD_ARGS_TYPE)’:
    ../src/serialport.cpp:215:52: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
      215 |   uv_queue_work(uv_default_loop(), req, EIO_Flush, (uv_after_work_cb)EIO_AfterFlush);
          |                                                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Set(Nan::NAN_METHOD_ARGS_TYPE)’:
    ../src/serialport.cpp:271:50: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
      271 |   uv_queue_work(uv_default_loop(), req, EIO_Set, (uv_after_work_cb)EIO_AfterSet);
          |                                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Get(Nan::NAN_METHOD_ARGS_TYPE)’:
    ../src/serialport.cpp:316:50: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
      316 |   uv_queue_work(uv_default_loop(), req, EIO_Get, (uv_after_work_cb)EIO_AfterGet);
          |                                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE GetBaudRate(Nan::NAN_METHOD_ARGS_TYPE)’:
    ../src/serialport.cpp:366:58: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
      366 |   uv_queue_work(uv_default_loop(), req, EIO_GetBaudRate, (uv_after_work_cb)EIO_AfterGetBaudRate);
          |                                                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../src/serialport.cpp: In function ‘Nan::NAN_METHOD_RETURN_TYPE Drain(Nan::NAN_METHOD_ARGS_TYPE)’:
    ../src/serialport.cpp:412:52: warning: cast between incompatible function types from ‘void (*)(uv_work_t*)’ {aka ‘void (*)(uv_work_s*)’} to ‘uv_after_work_cb’ {aka ‘void (*)(uv_work_s*, int)’} [-Wcast-function-type]
      412 |   uv_queue_work(uv_default_loop(), req, EIO_Drain, (uv_after_work_cb)EIO_AfterDrain);
          |                                                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../src/serialport.cpp: At global scope:
    ../src/serialport.cpp:433:28: warning: unnecessary parentheses in declaration of ‘ToParityEnum’ [-Wparentheses]
      433 | SerialPortParity NAN_INLINE(ToParityEnum(const v8::Local<v8::String>& v8str)) {
          |                            ^
    ../src/serialport.cpp:452:30: warning: unnecessary parentheses in declaration of ‘ToStopBitEnum’ [-Wparentheses]
      452 | SerialPortStopBits NAN_INLINE(ToStopBitEnum(double stopBits)) {
          |                              ^
    In file included from ../../../nan/nan.h:58,
                     from ../src/./serialport.h:13,
                     from ../src/serialport.cpp:1:
    /home/pi/.cache/node-gyp/12.22.11/include/node/node.h:736:7: warning: cast between incompatible function types from ‘void (*)(Nan::ADDON_REGISTER_FUNCTION_ARGS_TYPE)’ {aka ‘void (*)(v8::Local<v8::Object>)’} to ‘node::addon_register_func’ {aka ‘void (*)(v8::Local<v8::Object>, v8::Local<v8::Value>, void*)’} [-Wcast-function-type]
      736 |       (node::addon_register_func) (regfunc),                          \
          |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /home/pi/.cache/node-gyp/12.22.11/include/node/node.h:770:3: note: in expansion of macro ‘NODE_MODULE_X’
      770 |   NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT (readability/null_usage)
          |   ^~~~~~~~~~~~~
    ../src/serialport.cpp:486:1: note: in expansion of macro ‘NODE_MODULE’
      486 | NODE_MODULE(serialport, init);
          | ^~~~~~~~~~~
    ../src/serialport_unix.cpp: In function ‘int setup(int, OpenBaton*)’:
    ../src/serialport_unix.cpp:179:82: warning: ‘%s’ directive output may be truncated writing up to 1023 bytes into a region of size 1005 [-Wformat-truncation=]
      179 |     snprintf(data->errorString, sizeof(data->errorString), "Error %s Cannot open %s", strerror(errno), data->path);
          |                                                                                  ^~
    ../src/serialport_unix.cpp:179:13: note: ‘snprintf’ output 20 or more bytes (assuming 1043) into a destination of size 1024
      179 |     snprintf(data->errorString, sizeof(data->errorString), "Error %s Cannot open %s", strerror(errno), data->path);
          |     ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../src/serialport_unix.cpp: In function ‘void EIO_Open(uv_work_t*)’:
    ../src/serialport_unix.cpp:89:84: warning: ‘%s’ directive output may be truncated writing up to 1023 bytes into a region of size 1003 [-Wformat-truncation=]
       89 |     snprintf(data->errorString, sizeof(data->errorString), "Error: %s, cannot open %s", strerror(errno), data->path);
          |                                                                                    ^~
    ../src/serialport_unix.cpp:89:13: note: ‘snprintf’ output 22 or more bytes (assuming 1045) into a destination of size 1024
       89 |     snprintf(data->errorString, sizeof(data->errorString), "Error: %s, cannot open %s", strerror(errno), data->path);
          |     ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    ===================================
    

    Danach habe ich es geschafft das iobroker Backup von Google Drive wieder einzuspielen.
    Die Backups von "historydb" und "javascript" habe ich noch nicht eingespielt.
    Ich kann iobroker nun über die IP Adresse aufrufen, allerdings wird mir beim Aufrufen der Instanzen unten "Session timeout und Cannot read host Information timeout" usw angezeigt.
    Ich als Laie vermute mal es liegt an den Warmeldungen im 3. Installationsteil von IOBroker.

    Mit welchen Befehlen kann ich das nun über die Konsole in Ordnung bringen?

    liv-in-skyL Offline
    liv-in-skyL Offline
    liv-in-sky
    wrote on last edited by
    #21

    @damrak2022

    gute lösung, dass alles neu zu machen

    wegen instanze-tab - schon browser cache gelöscht ?

    Damrak2022D 1 Reply Last reply
    0
    • crunchipC crunchip

      @damrak2022 sagte in Raspi Permission denied:

      Die Backups von "historydb" und "javascript" habe ich noch nicht eingespielt

      das ist doch schon im Backup beinhaltet

      @damrak2022 sagte in Raspi Permission denied:

      Ich kann iobroker nun über die IP Adresse aufrufen, allerdings wird mir beim Aufrufen der Instanzen unten "Session timeout und Cannot read host Information timeout" usw angezeigt.

      das kommt, denk ich, wenn er gerade ausgelastet ist bzw am "arbeiten " ist(hab ich auch gelegentlich)

      @damrak2022 sagte in Raspi Permission denied:

      iegt an den Warmeldungen im 3. Installationsteil von IOBroker.

      die sind normal, alles ok

      @damrak2022 sagte in Raspi Permission denied:

      Ich habe nun meine SD Karte am iMac formatiert

      die alte, oder eine neue?

      Damrak2022D Offline
      Damrak2022D Offline
      Damrak2022
      wrote on last edited by
      #22

      @crunchip Formatiert habe ich die alte, da eine neue im Moment nicht verfügbar ist.

      Momentan sieht es gut aus. Auch die Instanzen sind da und ich starte gerade alle Adapter neu.

      Mit besten Grüßen
      Andy

      1 Reply Last reply
      0
      • liv-in-skyL liv-in-sky

        @damrak2022

        gute lösung, dass alles neu zu machen

        wegen instanze-tab - schon browser cache gelöscht ?

        Damrak2022D Offline
        Damrak2022D Offline
        Damrak2022
        wrote on last edited by Damrak2022
        #23

        @liv-in-sky Ich wollte gerade über Instanzen die Vis aufrufen, bekomme da aber eine leere Seite angezeigt, wo steht: File edit.html not found: {}
        Was tun?

        Diese Fehler stehen im Log

        host.raspberrypi
        2022-03-28 08:19:05.368	error	Cannot download and install adapter "vis@1.4.12". To retry it disable/enable the adapter or restart host. Also check the error messages in the log!
        host.raspberrypi
        2022-03-28 08:19:03.342	error	iobroker npm-install: host.raspberrypi Cannot install iobroker.vis@1.4.12: 6
        
        vis.0
        2022-03-28 08:18:57.795	error	Not exists
        
        vis.0
        2022-03-28 08:18:57.794	error	Error: Not exists at Object.maybeCallbackWithError (/opt/iobroker/node_modules/@iobroker/js-controller-common/lib/common/tools.js:2973:17) at ObjectsInRedisClient._readFile (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1043:26) at Immediate.<anonymous> (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1092:29) at processImmediate (internal/timers.js:463:21)
        
        vis.0
        2022-03-28 08:18:57.792	error	unhandled promise rejection: Not exists
        
        vis.0
        2022-03-28 08:18:57.791	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
        host.raspberrypi
        2022-03-28 08:18:20.122	error	iobroker npm-install: host.raspberrypi Cannot install iobroker.vis@1.4.12: 6
        
        vis.0
        2022-03-28 08:18:16.632	error	Not exists
        
        vis.0
        2022-03-28 08:18:16.631	error	Error: Not exists at Object.maybeCallbackWithError (/opt/iobroker/node_modules/@iobroker/js-controller-common/lib/common/tools.js:2973:17) at ObjectsInRedisClient._readFile (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1043:26) at Immediate.<anonymous> (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1092:29) at processImmediate (internal/timers.js:463:21)
        
        vis.0
        2022-03-28 08:18:16.629	error	unhandled promise rejection: Not exists
        
        vis.0
        2022-03-28 08:18:16.628	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
        host.raspberrypi
        2022-03-28 08:17:33.303	error	iobroker npm-install: host.raspberrypi Cannot install iobroker.vis@1.4.12: 6
        
        vis.0
        2022-03-28 08:17:29.341	error	Not exists
        
        vis.0
        2022-03-28 08:17:29.340	error	Error: Not exists at Object.maybeCallbackWithError (/opt/iobroker/node_modules/@iobroker/js-controller-common/lib/common/tools.js:2973:17) at ObjectsInRedisClient._readFile (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1043:26) at Immediate.<anonymous> (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1092:29) at processImmediate (internal/timers.js:463:21)
        
        vis.0
        2022-03-28 08:17:29.338	error	unhandled promise rejection: Not exists
        
        vis.0
        2022-03-28 08:17:29.337	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
        host.raspberrypi
        2022-03-28 08:16:52.412	error	iobroker npm-install: host.raspberrypi Cannot install iobroker.vis@1.4.12: 6
        
        vis.0
        2022-03-28 08:16:43.538	error	Not exists
        
        vis.0
        2022-03-28 08:16:43.537	error	Error: Not exists at Object.maybeCallbackWithError (/opt/iobroker/node_modules/@iobroker/js-controller-common/lib/common/tools.js:2973:17) at ObjectsInRedisClient._readFile (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1043:26) at Immediate.<anonymous> (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1092:29) at processImmediate (internal/timers.js:463:21)
        
        vis.0
        2022-03-28 08:16:43.531	error	unhandled promise rejection: Not exists
        
        vis.0
        2022-03-28 08:16:43.530	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
        
        

        Mit besten Grüßen
        Andy

        liv-in-skyL 1 Reply Last reply
        0
        • Damrak2022D Damrak2022

          @liv-in-sky Ich wollte gerade über Instanzen die Vis aufrufen, bekomme da aber eine leere Seite angezeigt, wo steht: File edit.html not found: {}
          Was tun?

          Diese Fehler stehen im Log

          host.raspberrypi
          2022-03-28 08:19:05.368	error	Cannot download and install adapter "vis@1.4.12". To retry it disable/enable the adapter or restart host. Also check the error messages in the log!
          host.raspberrypi
          2022-03-28 08:19:03.342	error	iobroker npm-install: host.raspberrypi Cannot install iobroker.vis@1.4.12: 6
          
          vis.0
          2022-03-28 08:18:57.795	error	Not exists
          
          vis.0
          2022-03-28 08:18:57.794	error	Error: Not exists at Object.maybeCallbackWithError (/opt/iobroker/node_modules/@iobroker/js-controller-common/lib/common/tools.js:2973:17) at ObjectsInRedisClient._readFile (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1043:26) at Immediate.<anonymous> (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1092:29) at processImmediate (internal/timers.js:463:21)
          
          vis.0
          2022-03-28 08:18:57.792	error	unhandled promise rejection: Not exists
          
          vis.0
          2022-03-28 08:18:57.791	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
          host.raspberrypi
          2022-03-28 08:18:20.122	error	iobroker npm-install: host.raspberrypi Cannot install iobroker.vis@1.4.12: 6
          
          vis.0
          2022-03-28 08:18:16.632	error	Not exists
          
          vis.0
          2022-03-28 08:18:16.631	error	Error: Not exists at Object.maybeCallbackWithError (/opt/iobroker/node_modules/@iobroker/js-controller-common/lib/common/tools.js:2973:17) at ObjectsInRedisClient._readFile (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1043:26) at Immediate.<anonymous> (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1092:29) at processImmediate (internal/timers.js:463:21)
          
          vis.0
          2022-03-28 08:18:16.629	error	unhandled promise rejection: Not exists
          
          vis.0
          2022-03-28 08:18:16.628	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
          host.raspberrypi
          2022-03-28 08:17:33.303	error	iobroker npm-install: host.raspberrypi Cannot install iobroker.vis@1.4.12: 6
          
          vis.0
          2022-03-28 08:17:29.341	error	Not exists
          
          vis.0
          2022-03-28 08:17:29.340	error	Error: Not exists at Object.maybeCallbackWithError (/opt/iobroker/node_modules/@iobroker/js-controller-common/lib/common/tools.js:2973:17) at ObjectsInRedisClient._readFile (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1043:26) at Immediate.<anonymous> (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1092:29) at processImmediate (internal/timers.js:463:21)
          
          vis.0
          2022-03-28 08:17:29.338	error	unhandled promise rejection: Not exists
          
          vis.0
          2022-03-28 08:17:29.337	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
          host.raspberrypi
          2022-03-28 08:16:52.412	error	iobroker npm-install: host.raspberrypi Cannot install iobroker.vis@1.4.12: 6
          
          vis.0
          2022-03-28 08:16:43.538	error	Not exists
          
          vis.0
          2022-03-28 08:16:43.537	error	Error: Not exists at Object.maybeCallbackWithError (/opt/iobroker/node_modules/@iobroker/js-controller-common/lib/common/tools.js:2973:17) at ObjectsInRedisClient._readFile (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1043:26) at Immediate.<anonymous> (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:1092:29) at processImmediate (internal/timers.js:463:21)
          
          vis.0
          2022-03-28 08:16:43.531	error	unhandled promise rejection: Not exists
          
          vis.0
          2022-03-28 08:16:43.530	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
          
          
          liv-in-skyL Offline
          liv-in-skyL Offline
          liv-in-sky
          wrote on last edited by
          #24

          @damrak2022

          evtl vis nochmal uploaden

          Image 1.png

          1 Reply Last reply
          0
          • Damrak2022D Offline
            Damrak2022D Offline
            Damrak2022
            wrote on last edited by Damrak2022
            #25

            @liv-in-sky Da tut sich garnichts.
            Wenn ich in die Instanzeinstellungen der Vis gehe sehe ich das hier

            Bildschirmfoto_2022-03-28_um_09_37_58.png

            Bin mal 15 Minuten weg

            Mit besten Grüßen
            Andy

            liv-in-skyL 1 Reply Last reply
            0
            • Damrak2022D Damrak2022

              @liv-in-sky Da tut sich garnichts.
              Wenn ich in die Instanzeinstellungen der Vis gehe sehe ich das hier

              Bildschirmfoto_2022-03-28_um_09_37_58.png

              Bin mal 15 Minuten weg

              liv-in-skyL Offline
              liv-in-skyL Offline
              liv-in-sky
              wrote on last edited by
              #26

              @damrak2022

              in der iobroker console (iterm) mal folgendes eingeben

              iobroker upload vis
              
              Damrak2022D 1 Reply Last reply
              0
              • liv-in-skyL liv-in-sky

                @damrak2022

                in der iobroker console (iterm) mal folgendes eingeben

                iobroker upload vis
                
                Damrak2022D Offline
                Damrak2022D Offline
                Damrak2022
                wrote on last edited by Damrak2022
                #27

                @liv-in-sky Inn bekomme ich folgende Meldung:

                pi@raspberrypi:~ $ iobroker upload vis
                INFO: Directory "for vis.admin" was not found! Nothing was uploaded or deleted.
                Cannot find io-package.json for "vis"
                INFO: Directory "for vis" was not found! Nothing was uploaded or deleted.
                pi@raspberrypi:~ $ upload vis
                -bash: upload: command not found
                pi@raspberrypi:~ $
                

                Dann habe ich noch das versucht:

                pi@raspberrypi:~ $ cd /opt/iobroker
                pi@raspberrypi:/opt/iobroker $ iobroker stop vis
                The adapter "vis.0" was stopped.
                pi@raspberrypi:/opt/iobroker $ iobroker upload vis
                INFO: Directory "for vis.admin" was not found! Nothing was uploaded or deleted.
                Cannot find io-package.json for "vis"
                INFO: Directory "for vis" was not found! Nothing was uploaded or deleted.
                pi@raspberrypi:/opt/iobroker $
                

                Mit besten Grüßen
                Andy

                B 2 Replies Last reply
                0
                • crunchipC Offline
                  crunchipC Offline
                  crunchip
                  Forum Testing Most Active
                  wrote on last edited by
                  #28

                  @damrak2022 probier es mit

                  iob del vis.0
                  iob add vis
                  

                  umgestiegen von Proxmox auf Unraid

                  haselchenH Damrak2022D 2 Replies Last reply
                  0
                  • crunchipC crunchip

                    @damrak2022 probier es mit

                    iob del vis.0
                    iob add vis
                    
                    haselchenH Offline
                    haselchenH Offline
                    haselchen
                    Most Active
                    wrote on last edited by haselchen
                    #29

                    Irrtum , deswegen gelöscht

                    Synology DS218+ & 2 x Fujitsu Esprimo (VM/Container) + FritzBox7590 + 2 AVM 3000 Repeater & Homematic & HUE & Osram & Xiaomi, NPM 10.9.4, Nodejs 22.21.0 ,JS Controller 7.0.7 ,Admin 7.7.19

                    1 Reply Last reply
                    0
                    • liv-in-skyL Offline
                      liv-in-skyL Offline
                      liv-in-sky
                      wrote on last edited by
                      #30

                      wir arbeiten gerade daran ........

                      1 Reply Last reply
                      0
                      • crunchipC crunchip

                        @damrak2022 probier es mit

                        iob del vis.0
                        iob add vis
                        
                        Damrak2022D Offline
                        Damrak2022D Offline
                        Damrak2022
                        wrote on last edited by
                        #31

                        @crunchip So mit Hilfe von @liv-in-sky geht wieder alles. Das eine Problem as ich hatte war das mir die Vis nicht angezeigt wurde. Zum Glück ist jetzt alles wieder vorhanden. Danke an alle!

                        Mit besten Grüßen
                        Andy

                        crunchipC 1 Reply Last reply
                        0
                        • Damrak2022D Damrak2022

                          @crunchip So mit Hilfe von @liv-in-sky geht wieder alles. Das eine Problem as ich hatte war das mir die Vis nicht angezeigt wurde. Zum Glück ist jetzt alles wieder vorhanden. Danke an alle!

                          crunchipC Offline
                          crunchipC Offline
                          crunchip
                          Forum Testing Most Active
                          wrote on last edited by
                          #32

                          @damrak2022 und woran lag es nun bzw was habt ihr gemacht?

                          umgestiegen von Proxmox auf Unraid

                          1 Reply Last reply
                          0
                          • sigi234S Online
                            sigi234S Online
                            sigi234
                            Forum Testing Most Active
                            wrote on last edited by
                            #33

                            @damrak2022

                            Wie gelöst?

                            Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                            Immer Daten sichern!

                            Damrak2022D 1 Reply Last reply
                            0
                            • sigi234S sigi234

                              @damrak2022

                              Wie gelöst?

                              Damrak2022D Offline
                              Damrak2022D Offline
                              Damrak2022
                              wrote on last edited by
                              #34

                              @sigi234 das kann @liv-in-sky besser beantworten. Es hatte wohl etwas mit einer falschen repositiry zu tun. Da hat ersann einiges umgestellt und dann konnte auch die vis neu installiert werden.

                              Mit besten Grüßen
                              Andy

                              1 Reply Last reply
                              0
                              • LatziL Online
                                LatziL Online
                                Latzi
                                wrote on last edited by
                                #35

                                @liv-in-sky
                                ich habe exakt das gleiche Problem (nur kein Raspi sondern VM unter proxmox):

                                latzi@ioBroker:/opt/iobroker$ iobroker upload vis
                                INFO: Directory "for vis.admin" was not found! Nothing was uploaded or deleted.
                                Cannot find io-package.json for "vis"
                                INFO: Directory "for vis" was not found! Nothing was uploaded or deleted.
                                latzi@ioBroker:/opt/iobroker$
                                
                                

                                Ich hab zuvor den Server getauscht und ein Backup eingespielt, bis auf vis funktioniert soweit mal alles.

                                Kannst du mir hier bitte weiterhelfen?

                                liv-in-skyL 1 Reply Last reply
                                0
                                • LatziL Latzi

                                  @liv-in-sky
                                  ich habe exakt das gleiche Problem (nur kein Raspi sondern VM unter proxmox):

                                  latzi@ioBroker:/opt/iobroker$ iobroker upload vis
                                  INFO: Directory "for vis.admin" was not found! Nothing was uploaded or deleted.
                                  Cannot find io-package.json for "vis"
                                  INFO: Directory "for vis" was not found! Nothing was uploaded or deleted.
                                  latzi@ioBroker:/opt/iobroker$
                                  
                                  

                                  Ich hab zuvor den Server getauscht und ein Backup eingespielt, bis auf vis funktioniert soweit mal alles.

                                  Kannst du mir hier bitte weiterhelfen?

                                  liv-in-skyL Offline
                                  liv-in-skyL Offline
                                  liv-in-sky
                                  wrote on last edited by
                                  #36

                                  @latzi

                                  Soweit ich mich erinnere habe ich die repo Einstellungen wieder gerade biegen müssen
                                  Siehe hier
                                  https://forum.iobroker.net/post/784483

                                  Weiss aber nicht, ob das auch dein Problem ist

                                  1 Reply Last reply
                                  0
                                  • Damrak2022D Damrak2022

                                    @liv-in-sky Inn bekomme ich folgende Meldung:

                                    pi@raspberrypi:~ $ iobroker upload vis
                                    INFO: Directory "for vis.admin" was not found! Nothing was uploaded or deleted.
                                    Cannot find io-package.json for "vis"
                                    INFO: Directory "for vis" was not found! Nothing was uploaded or deleted.
                                    pi@raspberrypi:~ $ upload vis
                                    -bash: upload: command not found
                                    pi@raspberrypi:~ $
                                    

                                    Dann habe ich noch das versucht:

                                    pi@raspberrypi:~ $ cd /opt/iobroker
                                    pi@raspberrypi:/opt/iobroker $ iobroker stop vis
                                    The adapter "vis.0" was stopped.
                                    pi@raspberrypi:/opt/iobroker $ iobroker upload vis
                                    INFO: Directory "for vis.admin" was not found! Nothing was uploaded or deleted.
                                    Cannot find io-package.json for "vis"
                                    INFO: Directory "for vis" was not found! Nothing was uploaded or deleted.
                                    pi@raspberrypi:/opt/iobroker $
                                    
                                    B Offline
                                    B Offline
                                    babl
                                    wrote on last edited by babl
                                    #37

                                    gelöscht

                                    1 Reply Last reply
                                    0
                                    • Damrak2022D Damrak2022

                                      @liv-in-sky Inn bekomme ich folgende Meldung:

                                      pi@raspberrypi:~ $ iobroker upload vis
                                      INFO: Directory "for vis.admin" was not found! Nothing was uploaded or deleted.
                                      Cannot find io-package.json for "vis"
                                      INFO: Directory "for vis" was not found! Nothing was uploaded or deleted.
                                      pi@raspberrypi:~ $ upload vis
                                      -bash: upload: command not found
                                      pi@raspberrypi:~ $
                                      

                                      Dann habe ich noch das versucht:

                                      pi@raspberrypi:~ $ cd /opt/iobroker
                                      pi@raspberrypi:/opt/iobroker $ iobroker stop vis
                                      The adapter "vis.0" was stopped.
                                      pi@raspberrypi:/opt/iobroker $ iobroker upload vis
                                      INFO: Directory "for vis.admin" was not found! Nothing was uploaded or deleted.
                                      Cannot find io-package.json for "vis"
                                      INFO: Directory "for vis" was not found! Nothing was uploaded or deleted.
                                      pi@raspberrypi:/opt/iobroker $
                                      
                                      B Offline
                                      B Offline
                                      babl
                                      wrote on last edited by
                                      #38
                                      This post is deleted!
                                      liv-in-skyL GlasfaserG 2 Replies Last reply
                                      0
                                      • B babl

                                        This post is deleted!

                                        liv-in-skyL Offline
                                        liv-in-skyL Offline
                                        liv-in-sky
                                        wrote on last edited by
                                        #39
                                        This post is deleted!
                                        B 1 Reply Last reply
                                        0
                                        • liv-in-skyL liv-in-sky

                                          This post is deleted!

                                          B Offline
                                          B Offline
                                          babl
                                          wrote on last edited by babl
                                          #40
                                          This post is deleted!
                                          Thomas BraunT liv-in-skyL 3 Replies Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate
                                          FAQ Cloud / IOT
                                          HowTo: Node.js-Update
                                          HowTo: Backup/Restore
                                          Downloads
                                          BLOG

                                          820

                                          Online

                                          32.4k

                                          Users

                                          81.5k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Home
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe