Skip to content
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • 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

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. js-controller 3.2 jetzt im Latest!

NEWS

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

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

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

js-controller 3.2 jetzt im Latest!

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
575 Beiträge 70 Kommentatoren 145.0k Aufrufe 57 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • FeuersturmF Feuersturm

    @apollon77 sagte in js-controller 3.2 jetzt im Latest!:

    @feuersturm an sich wüsste ich nicht wie. Wenn wäre auch Admin und so langsamer. Daher auch: was heißt „träger“?

    Auch beim Zugriff auf den Admin kommt es mir so vor, dass er länger lädt bis alles komplett aufgebaut ist.
    Träge bei der VIS bedeutet in dem Fall, dass ich auf eine Schaltfläche drücke und das Umschalten + Aufbau der neuen View teilweise mehrere Sekunden dauert.

    Beide Container mit ioBroker liegen auf der selben internen Festplatte vom Nuc und haben die gleichen zugewiesenen Ressourcen. Ich werd jetzt erstmal wieder mein Produktivsystem 1-2 Tage laufen lassen und schauen ob es genau so "flott" ist wie damals. Nicht das es am Ende am Fully Browser liegt, da ich spontan nicht weiß, wann er das letzte Mal auf dem Tablet aktualisiert wurde.

    apollon77A Offline
    apollon77A Offline
    apollon77
    schrieb am zuletzt editiert von
    #288

    @feuersturm also bei Vis ist das umschalten der views komplett Browser seitig soweit Ich weiß. Da werden ja nur die Daten einmalig Anfang geladen und danach nur alle Updates übertragen.

    Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

    • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
    • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
    1 Antwort Letzte Antwort
    0
    • E eXectiX

      @feuersturm @apollon77

      Auch beim Zugriff auf den Admin kommt es mir so vor, dass er länger lädt bis alles komplett aufgebaut ist.

      Das Gefühl habe ich auch seit der 3.2!

      amg_666A Offline
      amg_666A Offline
      amg_666
      schrieb am zuletzt editiert von
      #289

      @exectix Kann ich nicht bestätigen, läuft gefühlt genauso gut wie die Vorgänger. Admin hat bei mir auch rumgezickt und war extrem langsam, Browser-Cache löschen hat da - warum auch immer - was gebracht, scheint also kein js-controller Problem zu sein.

      iobroker auf proxmox container

      1 Antwort Letzte Antwort
      1
      • UweRLPU Offline
        UweRLPU Offline
        UweRLP
        schrieb am zuletzt editiert von
        #290

        Hallo kann das jemand nachvollziehen?

        C:\Program Files\iobroker\iobroker003>iobroker status all
        iobroker is running on this host.
        
        
        
        SYSTEM/memoryLimitMB: 0
        SYSTEM/hostname: HP-ED800(iobroker003)
        NETWORK/IPv4: true
        NETWORK/IPv6: true
        NETWORK/useSystemNpm: true
        OBJECTS/type: file
        OBJECTS/host: 127.0.0.1
        OBJECTS/port: 9001
        OBJECTS/user:
        OBJECTS/pass:
        OBJECTS/noFileCache: false
        OBJECTS/connectTimeout: 2000
        OBJECTS/OPTIONS/retryStrategy: reconnectCount => {
                    if (!ready && initError && ignoreErrors) {
                        return new Error('No more tries');
                    }
                    if (this.stop) {
                        return new Error('Client has stopped ... no retries anymore');
                    }
                    if (ready && reconnectCount >= retry_max_count) {
                        return new Error('Stop trying to reconnect');
                    }
                    // A function that receives an options object as parameter including the retry attempt,
                    // the total_retry_time indicating how much time passed since the last time connected,
                    // the error why the connection was lost and the number of times_connected in total.
                    // If you return a number from this function, the retry will happen exactly after that
                    // time in milliseconds. If you return a non-number, no further retry will happen and
                    // all offline commands are flushed with errors. Return an error to return that
                    // specific error to all offline commands.
        
                    if (!ready) {
                        return 300;
                    } else {
                        return retry_max_delay;
                    }
                    /*if (options.error.code === 'ECONNREFUSED') {
                        // End reconnecting on a specific error and flush all commands with a individual error
                        return new Error('The server refused the connection');
                    }
                    if (options.total_retry_time > 1000 * 60 * 60) {
                        // End reconnecting after a specific timeout and flush all commands with a individual error
                        return new Error('Retry time exhausted');
                    }
                    if (options.times_connected > 10) {
                        // End reconnecting with built in error
                        return undefined;
                    }
                    // reconnect after
                    return Math.max(options.attempt * 100, 3000);*/
                }
        OBJECTS/OPTIONS/enableReadyCheck: true
        OBJECTS/OPTIONS/host: 127.0.0.1
        OBJECTS/OPTIONS/port: 9001
        OBJECTS/OPTIONS/db: 0
        OBJECTS/OPTIONS/family: 0
        OBJECTS/OPTIONS/autoResubscribe: false
        OBJECTS/OPTIONS/connectionName:
        OBJECTS/maxQueue: 1000
        STATES/type: file
        STATES/host: 127.0.0.1
        STATES/port: 9000
        STATES/maxQueue: 1000
        STATES/OPTIONS/retryStrategy: reconnectCount => {
                    if (!ready && initError) {
                        return new Error('No more tries');
                    }
                    if (this.stop) {
                        return new Error('Client has stopped ... no retries anymore');
                    }
                    if (ready && reconnectCount >= retry_max_count) {
                        return new Error('Stop trying to reconnect');
                    }
                    // A function that receives an options object as parameter including the retry attempt,
                    // the total_retry_time indicating how much time passed since the last time connected,
                    // the error why the connection was lost and the number of times_connected in total.
                    // If you return a number from this function, the retry will happen exactly after that
                    // time in milliseconds. If you return a non-number, no further retry will happen and
                    // all offline commands are flushed with errors. Return an error to return that
                    // specific error to all offline commands.
        
                    if (!ready) {
                        return 300;
                    }
                    return retry_max_delay;
                    /*if (options.error.code === 'ECONNREFUSED') {
                        // End reconnecting on a specific error and flush all commands with a individual error
                        return new Error('The server refused the connection');
                    }
                    if (options.total_retry_time > 1000 * 60 * 60) {
                        // End reconnecting after a specific timeout and flush all commands with a individual error
                        return new Error('Retry time exhausted');
                    }
                    if (options.times_connected > 10) {
                        // End reconnecting with built in error
                        return undefined;
                    }
                    // reconnect after
                    return Math.max(options.attempt * 100, 3000);*/
                }
        STATES/OPTIONS/enableReadyCheck: true
        STATES/OPTIONS/host: 127.0.0.1
        STATES/OPTIONS/port: 9000
        STATES/OPTIONS/db: 0
        STATES/OPTIONS/family: 0
        STATES/OPTIONS/autoResubscribe: false
        STATES/OPTIONS/connectionName:
        LOG/level: info
        LOG/maxDays: 7
        LOG/noStdout: true
        LOG/TRANSPORT/FILE1/type: file
        LOG/TRANSPORT/FILE1/enabled: true
        LOG/TRANSPORT/FILE1/filename: log/iobroker
        LOG/TRANSPORT/FILE1/fileext: .log
        LOG/TRANSPORT/SYSLOG1/type: syslog
        LOG/TRANSPORT/SYSLOG1/enabled: false
        LOG/TRANSPORT/SYSLOG1/host: localhost
        LOG/TRANSPORT/SYSLOG1/protocol: udp4
        LOG/TRANSPORT/SYSLOG1/localhost: iobroker
        dataDir: ../../iobroker-data/
        
        C:\Program Files\iobroker\iobroker003>
        

        Ausser obige Auffälligkeit läuft die 3.2.11 unter Windows problemfrei.

        apollon77A 1 Antwort Letzte Antwort
        0
        • DiginixD Offline
          DiginixD Offline
          Diginix
          schrieb am zuletzt editiert von Diginix
          #291

          @unclesam sagte in js-controller 3.2 jetzt im Latest!:

          @diginix Zu LE: das ist bekannt und lässt sich (ohne Fix in Greenlock) nicht beheben. Einzige Möglichkeit ist, auch lokal auf Port 443 zu wechseln.

          Wo soll ich denn den Port 443 noch einstellen bzw auf ihn wechseln?
          In der web.0 Instanz ist er ja schon eingetragen wegen LE.
          Admin nutzt https aber eben mit 8081 und den default Zertifikaten.

          Bis JS-Controller 3.1 waren die lokalen URLs für flot, materialui usw. auch mit https Protokoll:
          https://192.168.2.47/flot/preset.html
          Da kommt aber nun als Fehler

          ERR_SSL_VERSION_OR_CIPHER_MISMATCH
          

          Und mit Port 80

          ERR_EMPTY_RESPONSE
          

          Auch ohne Fix wäre ich über ein Workaround sehr dankbar. Ich fürchte der Fix lässt länger auf sich warten.

          ..:: So long! Tom ::..

          NUC7i3 (Ubuntu Proxmox VM) | Echo Dots 2+3. Gen | Xiaomi Sensoren | Mi Robot 1S | Yeelight | Sonoff | Shelly | H801 RGB | Gosund SP1 | NodeMCU+ESP32 | Kostal Plenticore PV+BYD | openWB

          UncleSamU 1 Antwort Letzte Antwort
          0
          • UweRLPU UweRLP

            Hallo kann das jemand nachvollziehen?

            C:\Program Files\iobroker\iobroker003>iobroker status all
            iobroker is running on this host.
            
            
            
            SYSTEM/memoryLimitMB: 0
            SYSTEM/hostname: HP-ED800(iobroker003)
            NETWORK/IPv4: true
            NETWORK/IPv6: true
            NETWORK/useSystemNpm: true
            OBJECTS/type: file
            OBJECTS/host: 127.0.0.1
            OBJECTS/port: 9001
            OBJECTS/user:
            OBJECTS/pass:
            OBJECTS/noFileCache: false
            OBJECTS/connectTimeout: 2000
            OBJECTS/OPTIONS/retryStrategy: reconnectCount => {
                        if (!ready && initError && ignoreErrors) {
                            return new Error('No more tries');
                        }
                        if (this.stop) {
                            return new Error('Client has stopped ... no retries anymore');
                        }
                        if (ready && reconnectCount >= retry_max_count) {
                            return new Error('Stop trying to reconnect');
                        }
                        // A function that receives an options object as parameter including the retry attempt,
                        // the total_retry_time indicating how much time passed since the last time connected,
                        // the error why the connection was lost and the number of times_connected in total.
                        // If you return a number from this function, the retry will happen exactly after that
                        // time in milliseconds. If you return a non-number, no further retry will happen and
                        // all offline commands are flushed with errors. Return an error to return that
                        // specific error to all offline commands.
            
                        if (!ready) {
                            return 300;
                        } else {
                            return retry_max_delay;
                        }
                        /*if (options.error.code === 'ECONNREFUSED') {
                            // End reconnecting on a specific error and flush all commands with a individual error
                            return new Error('The server refused the connection');
                        }
                        if (options.total_retry_time > 1000 * 60 * 60) {
                            // End reconnecting after a specific timeout and flush all commands with a individual error
                            return new Error('Retry time exhausted');
                        }
                        if (options.times_connected > 10) {
                            // End reconnecting with built in error
                            return undefined;
                        }
                        // reconnect after
                        return Math.max(options.attempt * 100, 3000);*/
                    }
            OBJECTS/OPTIONS/enableReadyCheck: true
            OBJECTS/OPTIONS/host: 127.0.0.1
            OBJECTS/OPTIONS/port: 9001
            OBJECTS/OPTIONS/db: 0
            OBJECTS/OPTIONS/family: 0
            OBJECTS/OPTIONS/autoResubscribe: false
            OBJECTS/OPTIONS/connectionName:
            OBJECTS/maxQueue: 1000
            STATES/type: file
            STATES/host: 127.0.0.1
            STATES/port: 9000
            STATES/maxQueue: 1000
            STATES/OPTIONS/retryStrategy: reconnectCount => {
                        if (!ready && initError) {
                            return new Error('No more tries');
                        }
                        if (this.stop) {
                            return new Error('Client has stopped ... no retries anymore');
                        }
                        if (ready && reconnectCount >= retry_max_count) {
                            return new Error('Stop trying to reconnect');
                        }
                        // A function that receives an options object as parameter including the retry attempt,
                        // the total_retry_time indicating how much time passed since the last time connected,
                        // the error why the connection was lost and the number of times_connected in total.
                        // If you return a number from this function, the retry will happen exactly after that
                        // time in milliseconds. If you return a non-number, no further retry will happen and
                        // all offline commands are flushed with errors. Return an error to return that
                        // specific error to all offline commands.
            
                        if (!ready) {
                            return 300;
                        }
                        return retry_max_delay;
                        /*if (options.error.code === 'ECONNREFUSED') {
                            // End reconnecting on a specific error and flush all commands with a individual error
                            return new Error('The server refused the connection');
                        }
                        if (options.total_retry_time > 1000 * 60 * 60) {
                            // End reconnecting after a specific timeout and flush all commands with a individual error
                            return new Error('Retry time exhausted');
                        }
                        if (options.times_connected > 10) {
                            // End reconnecting with built in error
                            return undefined;
                        }
                        // reconnect after
                        return Math.max(options.attempt * 100, 3000);*/
                    }
            STATES/OPTIONS/enableReadyCheck: true
            STATES/OPTIONS/host: 127.0.0.1
            STATES/OPTIONS/port: 9000
            STATES/OPTIONS/db: 0
            STATES/OPTIONS/family: 0
            STATES/OPTIONS/autoResubscribe: false
            STATES/OPTIONS/connectionName:
            LOG/level: info
            LOG/maxDays: 7
            LOG/noStdout: true
            LOG/TRANSPORT/FILE1/type: file
            LOG/TRANSPORT/FILE1/enabled: true
            LOG/TRANSPORT/FILE1/filename: log/iobroker
            LOG/TRANSPORT/FILE1/fileext: .log
            LOG/TRANSPORT/SYSLOG1/type: syslog
            LOG/TRANSPORT/SYSLOG1/enabled: false
            LOG/TRANSPORT/SYSLOG1/host: localhost
            LOG/TRANSPORT/SYSLOG1/protocol: udp4
            LOG/TRANSPORT/SYSLOG1/localhost: iobroker
            dataDir: ../../iobroker-data/
            
            C:\Program Files\iobroker\iobroker003>
            

            Ausser obige Auffälligkeit läuft die 3.2.11 unter Windows problemfrei.

            apollon77A Offline
            apollon77A Offline
            apollon77
            schrieb am zuletzt editiert von
            #292

            @uwerlp sagte in js-controller 3.2 jetzt im Latest!:

            Ausser obige Auffälligkeit

            Was ist die Auffälligkeit?

            status "all" liefert genau diese Ausgabe .. es fehlen glaube ich nur die Instanzen noch dazu

            Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

            • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
            • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
            UweRLPU 1 Antwort Letzte Antwort
            0
            • apollon77A apollon77

              @uwerlp sagte in js-controller 3.2 jetzt im Latest!:

              Ausser obige Auffälligkeit

              Was ist die Auffälligkeit?

              status "all" liefert genau diese Ausgabe .. es fehlen glaube ich nur die Instanzen noch dazu

              UweRLPU Offline
              UweRLPU Offline
              UweRLP
              schrieb am zuletzt editiert von
              #293

              @apollon77

              Diese Ausgabe

              OBJECTS/OPTIONS/retryStrategy: reconnectCount => {
                          if (!ready && initError && ignoreErrors) {
                              return new Error('No more tries');
                          }
                          if (this.stop) {
                              return new Error('Client has stopped ... no retries anymore');
                          }
                          if (ready && reconnectCount >= retry_max_count) {
                              return new Error('Stop trying to reconnect');
                          }
                          // A function that receives an options object as parameter including the retry attempt,
                          // the total_retry_time indicating how much time passed since the last time connected,
                          // the error why the connection was lost and the number of times_connected in total.
                          // If you return a number from this function, the retry will happen exactly after that
                          // time in milliseconds. If you return a non-number, no further retry will happen and
                          // all offline commands are flushed with errors. Return an error to return that
                          // specific error to all offline commands.
              
                          if (!ready) {
                              return 300;
                          } else {
                              return retry_max_delay;
                          }
                          /*if (options.error.code === 'ECONNREFUSED') {
                              // End reconnecting on a specific error and flush all commands with a individual error
                              return new Error('The server refused the connection');
                          }
                          if (options.total_retry_time > 1000 * 60 * 60) {
                              // End reconnecting after a specific timeout and flush all commands with a individual error
                              return new Error('Retry time exhausted');
                          }
                          if (options.times_connected > 10) {
                              // End reconnecting with built in error
                              return undefined;
                          }
                          // reconnect after
                          return Math.max(options.attempt * 100, 3000);*/
                      }
              

              und das

              STATES/OPTIONS/retryStrategy: reconnectCount => {
                          if (!ready && initError) {
                              return new Error('No more tries');
                          }
                          if (this.stop) {
                              return new Error('Client has stopped ... no retries anymore');
                          }
                          if (ready && reconnectCount >= retry_max_count) {
                              return new Error('Stop trying to reconnect');
                          }
                          // A function that receives an options object as parameter including the retry attempt,
                          // the total_retry_time indicating how much time passed since the last time connected,
                          // the error why the connection was lost and the number of times_connected in total.
                          // If you return a number from this function, the retry will happen exactly after that
                          // time in milliseconds. If you return a non-number, no further retry will happen and
                          // all offline commands are flushed with errors. Return an error to return that
                          // specific error to all offline commands.
              
                          if (!ready) {
                              return 300;
                          }
                          return retry_max_delay;
                          /*if (options.error.code === 'ECONNREFUSED') {
                              // End reconnecting on a specific error and flush all commands with a individual error
                              return new Error('The server refused the connection');
                          }
                          if (options.total_retry_time > 1000 * 60 * 60) {
                              // End reconnecting after a specific timeout and flush all commands with a individual error
                              return new Error('Retry time exhausted');
                          }
                          if (options.times_connected > 10) {
                              // End reconnecting with built in error
                              return undefined;
                          }
                          // reconnect after
                          return Math.max(options.attempt * 100, 3000);*/
                      }
              
              

              habe ich als Fehlermeldung interpretiert.
              Wenn die Ausgabe so in Ordnung ist dann mein Fehler 😊

              foxriver76F Thomas BraunT 2 Antworten Letzte Antwort
              0
              • DiginixD Diginix

                @unclesam sagte in js-controller 3.2 jetzt im Latest!:

                @diginix Zu LE: das ist bekannt und lässt sich (ohne Fix in Greenlock) nicht beheben. Einzige Möglichkeit ist, auch lokal auf Port 443 zu wechseln.

                Wo soll ich denn den Port 443 noch einstellen bzw auf ihn wechseln?
                In der web.0 Instanz ist er ja schon eingetragen wegen LE.
                Admin nutzt https aber eben mit 8081 und den default Zertifikaten.

                Bis JS-Controller 3.1 waren die lokalen URLs für flot, materialui usw. auch mit https Protokoll:
                https://192.168.2.47/flot/preset.html
                Da kommt aber nun als Fehler

                ERR_SSL_VERSION_OR_CIPHER_MISMATCH
                

                Und mit Port 80

                ERR_EMPTY_RESPONSE
                

                Auch ohne Fix wäre ich über ein Workaround sehr dankbar. Ich fürchte der Fix lässt länger auf sich warten.

                UncleSamU Offline
                UncleSamU Offline
                UncleSam
                Developer
                schrieb am zuletzt editiert von
                #294

                @diginix Was ich nicht verstehe: wieso benutzt du LE für interne Server? LE ist ja eigentlich für externe Server gedacht und da gibt es nur einen Port 443. Oder wie löst du das? Split-Horizon-DNS?

                Bitte bei Problemen mit meinen Adaptern, Issue auf GitHub erfassen: Loxone | I2C | Luxtronik2
                ♡-lichen Dank an meine Sponsoren

                DiginixD 1 Antwort Letzte Antwort
                0
                • UweRLPU UweRLP

                  @apollon77

                  Diese Ausgabe

                  OBJECTS/OPTIONS/retryStrategy: reconnectCount => {
                              if (!ready && initError && ignoreErrors) {
                                  return new Error('No more tries');
                              }
                              if (this.stop) {
                                  return new Error('Client has stopped ... no retries anymore');
                              }
                              if (ready && reconnectCount >= retry_max_count) {
                                  return new Error('Stop trying to reconnect');
                              }
                              // A function that receives an options object as parameter including the retry attempt,
                              // the total_retry_time indicating how much time passed since the last time connected,
                              // the error why the connection was lost and the number of times_connected in total.
                              // If you return a number from this function, the retry will happen exactly after that
                              // time in milliseconds. If you return a non-number, no further retry will happen and
                              // all offline commands are flushed with errors. Return an error to return that
                              // specific error to all offline commands.
                  
                              if (!ready) {
                                  return 300;
                              } else {
                                  return retry_max_delay;
                              }
                              /*if (options.error.code === 'ECONNREFUSED') {
                                  // End reconnecting on a specific error and flush all commands with a individual error
                                  return new Error('The server refused the connection');
                              }
                              if (options.total_retry_time > 1000 * 60 * 60) {
                                  // End reconnecting after a specific timeout and flush all commands with a individual error
                                  return new Error('Retry time exhausted');
                              }
                              if (options.times_connected > 10) {
                                  // End reconnecting with built in error
                                  return undefined;
                              }
                              // reconnect after
                              return Math.max(options.attempt * 100, 3000);*/
                          }
                  

                  und das

                  STATES/OPTIONS/retryStrategy: reconnectCount => {
                              if (!ready && initError) {
                                  return new Error('No more tries');
                              }
                              if (this.stop) {
                                  return new Error('Client has stopped ... no retries anymore');
                              }
                              if (ready && reconnectCount >= retry_max_count) {
                                  return new Error('Stop trying to reconnect');
                              }
                              // A function that receives an options object as parameter including the retry attempt,
                              // the total_retry_time indicating how much time passed since the last time connected,
                              // the error why the connection was lost and the number of times_connected in total.
                              // If you return a number from this function, the retry will happen exactly after that
                              // time in milliseconds. If you return a non-number, no further retry will happen and
                              // all offline commands are flushed with errors. Return an error to return that
                              // specific error to all offline commands.
                  
                              if (!ready) {
                                  return 300;
                              }
                              return retry_max_delay;
                              /*if (options.error.code === 'ECONNREFUSED') {
                                  // End reconnecting on a specific error and flush all commands with a individual error
                                  return new Error('The server refused the connection');
                              }
                              if (options.total_retry_time > 1000 * 60 * 60) {
                                  // End reconnecting after a specific timeout and flush all commands with a individual error
                                  return new Error('Retry time exhausted');
                              }
                              if (options.times_connected > 10) {
                                  // End reconnecting with built in error
                                  return undefined;
                              }
                              // reconnect after
                              return Math.max(options.attempt * 100, 3000);*/
                          }
                  
                  

                  habe ich als Fehlermeldung interpretiert.
                  Wenn die Ausgabe so in Ordnung ist dann mein Fehler 😊

                  foxriver76F Offline
                  foxriver76F Offline
                  foxriver76
                  Developer
                  schrieb am zuletzt editiert von
                  #295

                  @uwerlp Ausgabe ist so i. O., allerdings ist aufgefallen, dass das auflisten der Instanzen fehlt, daher gut dass du es gepostet hast 😉

                  Videotutorials & mehr

                  Hier könnt ihr mich unterstützen.

                  1 Antwort Letzte Antwort
                  1
                  • UweRLPU UweRLP

                    @apollon77

                    Diese Ausgabe

                    OBJECTS/OPTIONS/retryStrategy: reconnectCount => {
                                if (!ready && initError && ignoreErrors) {
                                    return new Error('No more tries');
                                }
                                if (this.stop) {
                                    return new Error('Client has stopped ... no retries anymore');
                                }
                                if (ready && reconnectCount >= retry_max_count) {
                                    return new Error('Stop trying to reconnect');
                                }
                                // A function that receives an options object as parameter including the retry attempt,
                                // the total_retry_time indicating how much time passed since the last time connected,
                                // the error why the connection was lost and the number of times_connected in total.
                                // If you return a number from this function, the retry will happen exactly after that
                                // time in milliseconds. If you return a non-number, no further retry will happen and
                                // all offline commands are flushed with errors. Return an error to return that
                                // specific error to all offline commands.
                    
                                if (!ready) {
                                    return 300;
                                } else {
                                    return retry_max_delay;
                                }
                                /*if (options.error.code === 'ECONNREFUSED') {
                                    // End reconnecting on a specific error and flush all commands with a individual error
                                    return new Error('The server refused the connection');
                                }
                                if (options.total_retry_time > 1000 * 60 * 60) {
                                    // End reconnecting after a specific timeout and flush all commands with a individual error
                                    return new Error('Retry time exhausted');
                                }
                                if (options.times_connected > 10) {
                                    // End reconnecting with built in error
                                    return undefined;
                                }
                                // reconnect after
                                return Math.max(options.attempt * 100, 3000);*/
                            }
                    

                    und das

                    STATES/OPTIONS/retryStrategy: reconnectCount => {
                                if (!ready && initError) {
                                    return new Error('No more tries');
                                }
                                if (this.stop) {
                                    return new Error('Client has stopped ... no retries anymore');
                                }
                                if (ready && reconnectCount >= retry_max_count) {
                                    return new Error('Stop trying to reconnect');
                                }
                                // A function that receives an options object as parameter including the retry attempt,
                                // the total_retry_time indicating how much time passed since the last time connected,
                                // the error why the connection was lost and the number of times_connected in total.
                                // If you return a number from this function, the retry will happen exactly after that
                                // time in milliseconds. If you return a non-number, no further retry will happen and
                                // all offline commands are flushed with errors. Return an error to return that
                                // specific error to all offline commands.
                    
                                if (!ready) {
                                    return 300;
                                }
                                return retry_max_delay;
                                /*if (options.error.code === 'ECONNREFUSED') {
                                    // End reconnecting on a specific error and flush all commands with a individual error
                                    return new Error('The server refused the connection');
                                }
                                if (options.total_retry_time > 1000 * 60 * 60) {
                                    // End reconnecting after a specific timeout and flush all commands with a individual error
                                    return new Error('Retry time exhausted');
                                }
                                if (options.times_connected > 10) {
                                    // End reconnecting with built in error
                                    return undefined;
                                }
                                // reconnect after
                                return Math.max(options.attempt * 100, 3000);*/
                            }
                    
                    

                    habe ich als Fehlermeldung interpretiert.
                    Wenn die Ausgabe so in Ordnung ist dann mein Fehler 😊

                    Thomas BraunT Online
                    Thomas BraunT Online
                    Thomas Braun
                    Most Active
                    schrieb am zuletzt editiert von
                    #296

                    @uwerlp
                    Nicht alles wo das Wort 'Error' drin vorkommt ist auch eine Error-Meldung.
                    Das was du da gefunden hast ist doch nur die retryStrategy für den Fall, das die aufgeführten Errors im System auftauchen.

                    Linux-Werkzeugkasten:
                    https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                    NodeJS Fixer Skript:
                    https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                    iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                    1 Antwort Letzte Antwort
                    0
                    • K Kueppert

                      Hallo zusammen,
                      ich habe seit dem Update (hab aber zusätzlich auch apt update und upgrade gemacht) das "Problem", dass bei TOP nur noch "node" steht und nicht mehr, was dahinter steckt?
                      19dd07ce-8c23-4bd2-a5f8-a9c2cb2eedc2-image.png

                      E Offline
                      E Offline
                      ente34
                      schrieb am zuletzt editiert von
                      #297

                      @kueppert
                      oder mit Taste "c" in top

                      1 Antwort Letzte Antwort
                      0
                      • E eXectiX

                        @feuersturm @apollon77

                        Auch beim Zugriff auf den Admin kommt es mir so vor, dass er länger lädt bis alles komplett aufgebaut ist.

                        Das Gefühl habe ich auch seit der 3.2!

                        FeuersturmF Online
                        FeuersturmF Online
                        Feuersturm
                        schrieb am zuletzt editiert von
                        #298

                        @exectix sagte in js-controller 3.2 jetzt im Latest!:

                        @feuersturm @apollon77

                        Auch beim Zugriff auf den Admin kommt es mir so vor, dass er länger lädt bis alles komplett aufgebaut ist.

                        Das Gefühl habe ich auch seit der 3.2!

                        @apollon77 @eXectiX Vermutlich hängt es mit dem Fully Browser zusammen. Heute Nachmittag lief meine eigentliche Produktivinstanz auch deutlich träger als sonst. Nachdem ich den Fully Browser dann zu und wieder auf gemacht habe war es wieder flotter. Hat also erstmal nichts mit dem js-controller zu tun, werde vermutlich ein neue Diskussion dazu aufmachen.

                        1 Antwort Letzte Antwort
                        1
                        • UncleSamU UncleSam

                          @diginix Was ich nicht verstehe: wieso benutzt du LE für interne Server? LE ist ja eigentlich für externe Server gedacht und da gibt es nur einen Port 443. Oder wie löst du das? Split-Horizon-DNS?

                          DiginixD Offline
                          DiginixD Offline
                          Diginix
                          schrieb am zuletzt editiert von
                          #299

                          @unclesam sagte in js-controller 3.2 jetzt im Latest!:

                          @diginix Was ich nicht verstehe: wieso benutzt du LE für interne Server? LE ist ja eigentlich für externe Server gedacht und da gibt es nur einen Port 443. Oder wie löst du das? Split-Horizon-DNS?

                          Ich habe eine myfritz Domain mit der ich von außen auf MaterialUI zugreife und für die ist auch das LE Cert.
                          Aber wenn ich im Heimnetz bin habe ich bisher dann logischerweise lokale IPs genutzt.
                          Wozu gibt es LE denn, wenn nicht genau für das was ich damit mache?
                          Es klang so, als ob man weiterhin parallel auch lokale IPs nutzen könne, auch ohne, dass greenlock ein Fix erhält.

                          ..:: So long! Tom ::..

                          NUC7i3 (Ubuntu Proxmox VM) | Echo Dots 2+3. Gen | Xiaomi Sensoren | Mi Robot 1S | Yeelight | Sonoff | Shelly | H801 RGB | Gosund SP1 | NodeMCU+ESP32 | Kostal Plenticore PV+BYD | openWB

                          apollon77A 1 Antwort Letzte Antwort
                          0
                          • DiginixD Diginix

                            @unclesam sagte in js-controller 3.2 jetzt im Latest!:

                            @diginix Was ich nicht verstehe: wieso benutzt du LE für interne Server? LE ist ja eigentlich für externe Server gedacht und da gibt es nur einen Port 443. Oder wie löst du das? Split-Horizon-DNS?

                            Ich habe eine myfritz Domain mit der ich von außen auf MaterialUI zugreife und für die ist auch das LE Cert.
                            Aber wenn ich im Heimnetz bin habe ich bisher dann logischerweise lokale IPs genutzt.
                            Wozu gibt es LE denn, wenn nicht genau für das was ich damit mache?
                            Es klang so, als ob man weiterhin parallel auch lokale IPs nutzen könne, auch ohne, dass greenlock ein Fix erhält.

                            apollon77A Offline
                            apollon77A Offline
                            apollon77
                            schrieb am zuletzt editiert von
                            #300

                            @diginix mal ne blöde Frage: wenn du lokal zugreifst per ip kam Dann bisher immer eine ssl Warnung oder?! Weil der Domain Name hat ja nicht gepasst oder?!

                            Aber ja die Änderung ist scheinbar das jetzt nur noch der fqdn Zugriff von Greenlock verarbeitet wird und nicht einfach die certs so genutzt werden. 😞

                            Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

                            • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
                            • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
                            DiginixD 1 Antwort Letzte Antwort
                            0
                            • apollon77A apollon77

                              @diginix mal ne blöde Frage: wenn du lokal zugreifst per ip kam Dann bisher immer eine ssl Warnung oder?! Weil der Domain Name hat ja nicht gepasst oder?!

                              Aber ja die Änderung ist scheinbar das jetzt nur noch der fqdn Zugriff von Greenlock verarbeitet wird und nicht einfach die certs so genutzt werden. 😞

                              DiginixD Offline
                              DiginixD Offline
                              Diginix
                              schrieb am zuletzt editiert von
                              #301

                              @apollon77 Ja, genau der Browser hat das nat. bemerkt und als unsicher markiert, aber der Webserver hat ja geliefert. Was er eben nun nicht mehr macht.

                              ..:: So long! Tom ::..

                              NUC7i3 (Ubuntu Proxmox VM) | Echo Dots 2+3. Gen | Xiaomi Sensoren | Mi Robot 1S | Yeelight | Sonoff | Shelly | H801 RGB | Gosund SP1 | NodeMCU+ESP32 | Kostal Plenticore PV+BYD | openWB

                              apollon77A 1 Antwort Letzte Antwort
                              0
                              • DiginixD Diginix

                                @apollon77 Ja, genau der Browser hat das nat. bemerkt und als unsicher markiert, aber der Webserver hat ja geliefert. Was er eben nun nicht mehr macht.

                                apollon77A Offline
                                apollon77A Offline
                                apollon77
                                schrieb am zuletzt editiert von
                                #302

                                @diginix Ja das ist blöd, mal schauen ob wir was hinbekommen. Effektiv ists aber so ne Sache. Sauberer wäre eine web Instanz zu haben die du von extern nutzt und eine andere für Lokal 🙂

                                Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

                                • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
                                • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
                                DiginixD 1 Antwort Letzte Antwort
                                0
                                • apollon77A apollon77

                                  @diginix Ja das ist blöd, mal schauen ob wir was hinbekommen. Effektiv ists aber so ne Sache. Sauberer wäre eine web Instanz zu haben die du von extern nutzt und eine andere für Lokal 🙂

                                  DiginixD Offline
                                  DiginixD Offline
                                  Diginix
                                  schrieb am zuletzt editiert von
                                  #303

                                  @apollon77 Supi.
                                  Würde denn eine zweite web Instanz Stand heute etwas nützen?
                                  Wär ja kein Problem die zu installierend, LE darin nicht zu aktivieren und z.B. Port 80 zu verwenden.
                                  Aber kommen die anderen Frontend Adapter damit klar?

                                  ..:: So long! Tom ::..

                                  NUC7i3 (Ubuntu Proxmox VM) | Echo Dots 2+3. Gen | Xiaomi Sensoren | Mi Robot 1S | Yeelight | Sonoff | Shelly | H801 RGB | Gosund SP1 | NodeMCU+ESP32 | Kostal Plenticore PV+BYD | openWB

                                  apollon77A 1 Antwort Letzte Antwort
                                  0
                                  • DiginixD Diginix

                                    @apollon77 Supi.
                                    Würde denn eine zweite web Instanz Stand heute etwas nützen?
                                    Wär ja kein Problem die zu installierend, LE darin nicht zu aktivieren und z.B. Port 80 zu verwenden.
                                    Aber kommen die anderen Frontend Adapter damit klar?

                                    apollon77A Offline
                                    apollon77A Offline
                                    apollon77
                                    schrieb am zuletzt editiert von
                                    #304

                                    @diginix Am Ende kannst Du denke die gleichen alle über die andere Web Instanz auch erreichen ... musst nur angeben das es alle web's sind und nicht nur eine Instanz

                                    Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

                                    • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
                                    • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
                                    DiginixD 1 Antwort Letzte Antwort
                                    1
                                    • apollon77A apollon77

                                      @diginix Am Ende kannst Du denke die gleichen alle über die andere Web Instanz auch erreichen ... musst nur angeben das es alle web's sind und nicht nur eine Instanz

                                      DiginixD Offline
                                      DiginixD Offline
                                      Diginix
                                      schrieb am zuletzt editiert von
                                      #305

                                      @apollon77
                                      Bei den betroffenen Instanzen kann man doch aber gar nicht auswählen mit welcher web Instanz sie arbeiten:
                                      c8d36d2b-24aa-46c8-acbf-677cc9c086fe-image.png

                                      Oder was meinst du mit "angeben dass es alle web's sind..."?

                                      ..:: So long! Tom ::..

                                      NUC7i3 (Ubuntu Proxmox VM) | Echo Dots 2+3. Gen | Xiaomi Sensoren | Mi Robot 1S | Yeelight | Sonoff | Shelly | H801 RGB | Gosund SP1 | NodeMCU+ESP32 | Kostal Plenticore PV+BYD | openWB

                                      apollon77A 1 Antwort Letzte Antwort
                                      0
                                      • DiginixD Diginix

                                        @apollon77
                                        Bei den betroffenen Instanzen kann man doch aber gar nicht auswählen mit welcher web Instanz sie arbeiten:
                                        c8d36d2b-24aa-46c8-acbf-677cc9c086fe-image.png

                                        Oder was meinst du mit "angeben dass es alle web's sind..."?

                                        apollon77A Offline
                                        apollon77A Offline
                                        apollon77
                                        schrieb am zuletzt editiert von
                                        #306

                                        @diginix Dann sollten die in allen webs drin sein. Versuchs mal

                                        Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

                                        • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
                                        • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
                                        DiginixD O 2 Antworten Letzte Antwort
                                        0
                                        • apollon77A apollon77

                                          @diginix Dann sollten die in allen webs drin sein. Versuchs mal

                                          DiginixD Offline
                                          DiginixD Offline
                                          Diginix
                                          schrieb am zuletzt editiert von Diginix
                                          #307

                                          @apollon77 Oh man das war jetzt echt zu einfach! 👍 🤣 Bist mein Held!
                                          ist jetzt ja noch besser als vorher, weil ohne Login möglich und sauber mit http auf Port 80 oder ein anderer freier.

                                          ..:: So long! Tom ::..

                                          NUC7i3 (Ubuntu Proxmox VM) | Echo Dots 2+3. Gen | Xiaomi Sensoren | Mi Robot 1S | Yeelight | Sonoff | Shelly | H801 RGB | Gosund SP1 | NodeMCU+ESP32 | Kostal Plenticore PV+BYD | openWB

                                          1 Antwort Letzte Antwort
                                          1
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

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

                                          683

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe