Skip to content
  • Home
  • 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

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. [gelöst] Backitup - NAS ?

NEWS

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    17
    1
    428

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    17
    1
    5.0k

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    1.4k

[gelöst] Backitup - NAS ?

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
96 Beiträge 6 Kommentatoren 600 Aufrufe 5 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.
  • HumidorH Humidor

    @Thomas-Braun

    Docker - Terminal - Influx

    root@influxdb:/# sudo service influxdb stop                                      
    bash: sudo: command not found                                                    
    root@influxdb:/#       
    

    Terminal - Syno

    Richard@ds1621:~$ sudo service influxdb stop
    Password: 
    sudo: service: command not found
    Richard@ds1621:~$ 
    
    

    im Docker kann ich ja die Influx starten/stoppen
    dann nur der Befehl aus dem Syno Terminal?

    sudo influxd recovery auth create-operator --org <deine_org> --username <dein_user> --bolt-path /var/lib/influxdb2/influxd.bolt
    

    Aber - influx kennt die Syno nicht, da es im Docker läuft.

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

    @Humidor

    Wenn du schon als root herumhüpfst braucht es natürlich kein sudo mehr...

    Und das Kommando 'service' gibt es in modernen Setups nicht mehr. Hatte ich aber weiter oben bereits geschrieben...

    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

    HumidorH 1 Antwort Letzte Antwort
    0
    • Thomas BraunT Thomas Braun

      @Humidor

      Wenn du schon als root herumhüpfst braucht es natürlich kein sudo mehr...

      Und das Kommando 'service' gibt es in modernen Setups nicht mehr. Hatte ich aber weiter oben bereits geschrieben...

      HumidorH Online
      HumidorH Online
      Humidor
      schrieb am zuletzt editiert von Humidor
      #88

      @Thomas-Braun

      root@influxdb:/# influxd stop                                                     
      Error: unknown command "stop" for "influxd"                                       
      root@influxdb:/
      

      influx läuft im docker auf der syno, ich kann diesen nicht stoppen und dann einen Befehl in Terminal absetzten.
      dh es muss von außerhalb gemacht werden, aber wie kommt man auf den Docker Container rein? auch wenn dieser gestoppt wurde? gar nicht vermute ich mal.

      BG

      Marc BergM 1 Antwort Letzte Antwort
      0
      • HumidorH Humidor

        @Thomas-Braun

        root@influxdb:/# influxd stop                                                     
        Error: unknown command "stop" for "influxd"                                       
        root@influxdb:/
        

        influx läuft im docker auf der syno, ich kann diesen nicht stoppen und dann einen Befehl in Terminal absetzten.
        dh es muss von außerhalb gemacht werden, aber wie kommt man auf den Docker Container rein? auch wenn dieser gestoppt wurde? gar nicht vermute ich mal.

        Marc BergM Offline
        Marc BergM Offline
        Marc Berg
        Most Active
        schrieb am zuletzt editiert von
        #89

        @Humidor sagte in Backitup - NAS ?:

        dh es muss von außerhalb gemacht werden

        innerhalb des Containers:

        su influxdb
        cd /var/lib/influxdb2
        cp influxd.bolt influxd2.bolt
        influxd recovery auth create-operator --org <deine_org> --username <dein_user> --bolt-path /var/lib/influxdb2/influxd2.bolt
        mv influxd2.bolt influxd.bolt
        

        Container neustarten. Wenn etwas nicht funktioniert, ALLES zeigen (in Codetags).

        NUC10I3+Ubuntu+Docker+ioBroker+influxDB2+Node Red+EMQX+Grafana

        Pi-hole, Traefik, Checkmk, Conbee II+Zigbee2MQTT, ESPSomfy-RTS, LoRaWAN, Arduino, KiCad

        Benutzt das Voting im Beitrag, wenn er euch geholfen hat.

        HumidorH 1 Antwort Letzte Antwort
        2
        • Marc BergM Marc Berg

          @Humidor sagte in Backitup - NAS ?:

          dh es muss von außerhalb gemacht werden

          innerhalb des Containers:

          su influxdb
          cd /var/lib/influxdb2
          cp influxd.bolt influxd2.bolt
          influxd recovery auth create-operator --org <deine_org> --username <dein_user> --bolt-path /var/lib/influxdb2/influxd2.bolt
          mv influxd2.bolt influxd.bolt
          

          Container neustarten. Wenn etwas nicht funktioniert, ALLES zeigen (in Codetags).

          HumidorH Online
          HumidorH Online
          Humidor
          schrieb am zuletzt editiert von
          #90

          @Marc-Berg sagte in Backitup - NAS ?:

          influxd recovery auth create-operator --org <deine_org> --username <dein_user> --bolt-path /var/lib/influxdb2/influxd2.bolt

          root@influxdb:/# su influxdb                                                     
          influxdb@influxdb:/$ cd /var/lib/influxdb2                                       
          influxdb@influxdb:/var/lib/influxdb2$ cp influxd.bolt influxd2.bolt              
          influxdb@influxdb:/var/lib/influxdb2$ influxd recovery auth create-operator --org
           iobroker_data --username iobroker --bolt-path /var/lib/influxdb2/influxd2.bolt  
          2026-03-17T05:25:56.453443Z     info    Resources opened        {"log_id": "11fZy
          dP0000", "system": "bolt-kvstore", "path": "/var/lib/influxdb2/influxd2.bolt"}   
          Error: could not find org "iobroker_data": organization name "iobroker_data" not 
          found                                                                            
          See 'influxd -h' for help                                                        
          influxdb@influxdb:/var/lib/influxdb2$ 
          

          Bildschirmfoto 2026-03-17 um 06.27.53.png

          BG

          Marc BergM 1 Antwort Letzte Antwort
          0
          • HumidorH Humidor

            @Marc-Berg sagte in Backitup - NAS ?:

            influxd recovery auth create-operator --org <deine_org> --username <dein_user> --bolt-path /var/lib/influxdb2/influxd2.bolt

            root@influxdb:/# su influxdb                                                     
            influxdb@influxdb:/$ cd /var/lib/influxdb2                                       
            influxdb@influxdb:/var/lib/influxdb2$ cp influxd.bolt influxd2.bolt              
            influxdb@influxdb:/var/lib/influxdb2$ influxd recovery auth create-operator --org
             iobroker_data --username iobroker --bolt-path /var/lib/influxdb2/influxd2.bolt  
            2026-03-17T05:25:56.453443Z     info    Resources opened        {"log_id": "11fZy
            dP0000", "system": "bolt-kvstore", "path": "/var/lib/influxdb2/influxd2.bolt"}   
            Error: could not find org "iobroker_data": organization name "iobroker_data" not 
            found                                                                            
            See 'influxd -h' for help                                                        
            influxdb@influxdb:/var/lib/influxdb2$ 
            

            Bildschirmfoto 2026-03-17 um 06.27.53.png

            Marc BergM Offline
            Marc BergM Offline
            Marc Berg
            Most Active
            schrieb am zuletzt editiert von
            #91

            @Humidor

            Du verwechselst Bucket mit Organization. Die organization steht u.a. inder Instanz-Konfiguration

            82129c9b-5bc2-4378-890d-b8b8e7e0aef0-grafik.png

            NUC10I3+Ubuntu+Docker+ioBroker+influxDB2+Node Red+EMQX+Grafana

            Pi-hole, Traefik, Checkmk, Conbee II+Zigbee2MQTT, ESPSomfy-RTS, LoRaWAN, Arduino, KiCad

            Benutzt das Voting im Beitrag, wenn er euch geholfen hat.

            HumidorH 1 Antwort Letzte Antwort
            1
            • Marc BergM Marc Berg

              @Humidor

              Du verwechselst Bucket mit Organization. Die organization steht u.a. inder Instanz-Konfiguration

              82129c9b-5bc2-4378-890d-b8b8e7e0aef0-grafik.png

              HumidorH Online
              HumidorH Online
              Humidor
              schrieb zuletzt editiert von Humidor
              #92

              @Marc-Berg ohhh

              root@influxdb:/# su influxdb                                                                                                        
              influxdb@influxdb:/$ cd /var/lib/influxdb2                                                                                          
              influxdb@influxdb:/var/lib/influxdb2$ cp influxd.bolt influxd2.bolt                                                                 
              influxdb@influxdb:/var/lib/influxdb2$ influxd recovery auth create-operator --org                                                   
               private --username iobroker --bolt-path /var/lib/influxdb2/influxd2.bolt                                                           
              2026-03-17T13:24:13.305151Z     info    Resources opened        {"log_id": "11f~L                                                   
              9U0000", "system": "bolt-kvstore", "path": "/var/lib/influxdb2/influxd2.bolt"}                                                      
              ID                      User Name       User ID                 Description     T                                                   
              oken                                                                            P                                                   
              ermissions                                                                                                                          
              1065b092f71e7000        iobroker        0b40d64fd1337000        iobroker        G                                                   
              xG_6HrDZhgMVq2SJI2IpmqjNoiXhJ3iNnHADnADmfVdosKzGt3UBj9F2PMKRHgnU_sr3VSV1BPX939KBf                                                   
              gtCQ==  [read:orgs/3cf840bcb0779b40/annotations write:orgs/3cf840bcb0779b40/annot                                                   
              ations read:orgs/3cf840bcb0779b40/authorizations write:orgs/3cf840bcb0779b40/auth                                                   
              orizations read:orgs/3cf840bcb0779b40/buckets write:orgs/3cf840bcb0779b40/buckets                                                   
               read:orgs/3cf840bcb0779b40/checks write:orgs/3cf840bcb0779b40/checks read:orgs/3                                                   
              cf840bcb0779b40/dashboards write:orgs/3cf840bcb0779b40/dashboards read:orgs/3cf84                                                   
              0bcb0779b40/dbrp write:orgs/3cf840bcb0779b40/dbrp read:orgs/3cf840bcb0779b40/docu                                                   
              ments write:orgs/3cf840bcb0779b40/documents read:orgs/3cf840bcb0779b40/labels wri                                                   
              te:orgs/3cf840bcb0779b40/labels read:orgs/3cf840bcb0779b40/notebooks write:orgs/3                                                   
              cf840bcb0779b40/notebooks read:orgs/3cf840bcb0779b40/notificationEndpoints write:                                                   
              orgs/3cf840bcb0779b40/notificationEndpoints read:orgs/3cf840bcb0779b40/notificati                                                   
              onRules write:orgs/3cf840bcb0779b40/notificationRules read:orgs/3cf840bcb0779b40                                                    
              read:orgs/3cf840bcb0779b40/remotes write:orgs/3cf840bcb0779b40/remotes read:orgs/                                                   
              3cf840bcb0779b40/replications write:orgs/3cf840bcb0779b40/replications read:orgs/                                                   
              3cf840bcb0779b40/scrapers write:orgs/3cf840bcb0779b40/scrapers read:orgs/3cf840bc                                                   
              b0779b40/secrets write:orgs/3cf840bcb0779b40/secrets read:orgs/3cf840bcb0779b40/s                                                   
              ources write:orgs/3cf840bcb0779b40/sources read:orgs/3cf840bcb0779b40/tasks write                                                   
              :orgs/3cf840bcb0779b40/tasks read:orgs/3cf840bcb0779b40/telegrafs write:orgs/3cf8                                                   
              40bcb0779b40/telegrafs read:users/0b40d64fd1337000 write:users/0b40d64fd1337000 r                                                   
              ead:orgs/3cf840bcb0779b40/variables write:orgs/3cf840bcb0779b40/variables read:or                                                   
              gs/3cf840bcb0779b40/views write:orgs/3cf840bcb0779b40/views]                                                                        
              106afd525ebf8000        iobroker        0b40d64fd1337000        iobroker's Recove                                                   
              ry Token        Wzu-RSNsbH3FXk853bmgreJXrnrdveggT7XFKbSXqMyYrj8NWmq-TbDPR4eyX391l                                                   
              AOaauF0CFtAT6CLZrhjmQ== [read:authorizations write:authorizations read:buckets wr                                                   
              ite:buckets read:dashboards write:dashboards read:orgs write:orgs read:sources wr                                                   
              ite:sources read:tasks write:tasks read:telegrafs write:telegrafs read:users writ                                                   
              e:users read:variables write:variables read:scrapers write:scrapers read:secrets                                                    
              write:secrets read:labels write:labels read:views write:views read:documents writ                                                   
              e:documents read:notificationRules write:notificationRules read:notificationEndpo                                                   
              ints write:notificationEndpoints read:checks write:checks read:dbrp write:dbrp re                                                   
              ad:notebooks write:notebooks read:annotations write:annotations read:remotes writ                                                   
              e:remotes read:replications write:replications]                                                                                     
              influxdb@influxdb:/var/lib/influxdb2$ mv influxd2.bolt influxd.bolt                                                                 
              influxdb@influxdb:/var/lib/influxdb2$                                    
              

              es steht keine neuer drin:

              {
              	"links": {
              		"self": "/api/v2/authorizations"
              	},
              	"authorizations": [
              		{
              			"id": "1065b092f71e7000",
              			"token": "GxG_6HrDZhgMVq2SJI2IpmqjNoiXhJ3iNnHADnADmfVdosKzGt3UBj9F2PMKRHgnU_sr3VSV1BPX939KBfgtCQ==",
              			"status": "active",
              			"description": "iobroker",
              			"orgID": "3cf840bcb0779b40",
              			"org": "private",
              			"userID": "0b40d64fd1337000",
              			"user": "iobroker",
              			"permissions": [
              				{
              					"action": "read",
              					"resource": {
              						"type": "annotations",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "annotations",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "authorizations",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "authorizations",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "buckets",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "buckets",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "checks",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "checks",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "dashboards",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "dashboards",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "dbrp",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "dbrp",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "documents",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "documents",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "labels",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "labels",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "notebooks",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "notebooks",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "notificationEndpoints",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "notificationEndpoints",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "notificationRules",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "notificationRules",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "orgs",
              						"id": "3cf840bcb0779b40",
              						"name": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "remotes",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "remotes",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "replications",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "replications",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "scrapers",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "scrapers",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "secrets",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "secrets",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "sources",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "sources",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "tasks",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "tasks",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "telegrafs",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "telegrafs",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "users",
              						"id": "0b40d64fd1337000",
              						"name": "iobroker"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "users",
              						"id": "0b40d64fd1337000",
              						"name": "iobroker"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "variables",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "variables",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "read",
              					"resource": {
              						"type": "views",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				},
              				{
              					"action": "write",
              					"resource": {
              						"type": "views",
              						"orgID": "3cf840bcb0779b40",
              						"org": "private"
              					}
              				}
              			],
              			"links": {
              				"self": "/api/v2/authorizations/1065b092f71e7000",
              				"user": "/api/v2/users/0b40d64fd1337000"
              			},
              			"createdAt": "2026-03-13T11:36:30.044527627+01:00",
              			"updatedAt": "2026-03-13T11:36:30.044527627+01:00"
              		}
              	]
              }
              

              OK brauchte einen Neustart der Container nun steht ein Recovery drin. Ich teste.

              Jungs! läuft !!! ist schon bei 7GB 😳

              sooo, 16GB influx gebackupt ! wow

              Super, nun funktiniert wieder alles, ich bin happy und sage vielen Dank and euch für die Hilfe und Geduld! 👍👌🍾

              BG

              Marc BergM 1 Antwort Letzte Antwort
              0
              • HumidorH Humidor

                @Marc-Berg ohhh

                root@influxdb:/# su influxdb                                                                                                        
                influxdb@influxdb:/$ cd /var/lib/influxdb2                                                                                          
                influxdb@influxdb:/var/lib/influxdb2$ cp influxd.bolt influxd2.bolt                                                                 
                influxdb@influxdb:/var/lib/influxdb2$ influxd recovery auth create-operator --org                                                   
                 private --username iobroker --bolt-path /var/lib/influxdb2/influxd2.bolt                                                           
                2026-03-17T13:24:13.305151Z     info    Resources opened        {"log_id": "11f~L                                                   
                9U0000", "system": "bolt-kvstore", "path": "/var/lib/influxdb2/influxd2.bolt"}                                                      
                ID                      User Name       User ID                 Description     T                                                   
                oken                                                                            P                                                   
                ermissions                                                                                                                          
                1065b092f71e7000        iobroker        0b40d64fd1337000        iobroker        G                                                   
                xG_6HrDZhgMVq2SJI2IpmqjNoiXhJ3iNnHADnADmfVdosKzGt3UBj9F2PMKRHgnU_sr3VSV1BPX939KBf                                                   
                gtCQ==  [read:orgs/3cf840bcb0779b40/annotations write:orgs/3cf840bcb0779b40/annot                                                   
                ations read:orgs/3cf840bcb0779b40/authorizations write:orgs/3cf840bcb0779b40/auth                                                   
                orizations read:orgs/3cf840bcb0779b40/buckets write:orgs/3cf840bcb0779b40/buckets                                                   
                 read:orgs/3cf840bcb0779b40/checks write:orgs/3cf840bcb0779b40/checks read:orgs/3                                                   
                cf840bcb0779b40/dashboards write:orgs/3cf840bcb0779b40/dashboards read:orgs/3cf84                                                   
                0bcb0779b40/dbrp write:orgs/3cf840bcb0779b40/dbrp read:orgs/3cf840bcb0779b40/docu                                                   
                ments write:orgs/3cf840bcb0779b40/documents read:orgs/3cf840bcb0779b40/labels wri                                                   
                te:orgs/3cf840bcb0779b40/labels read:orgs/3cf840bcb0779b40/notebooks write:orgs/3                                                   
                cf840bcb0779b40/notebooks read:orgs/3cf840bcb0779b40/notificationEndpoints write:                                                   
                orgs/3cf840bcb0779b40/notificationEndpoints read:orgs/3cf840bcb0779b40/notificati                                                   
                onRules write:orgs/3cf840bcb0779b40/notificationRules read:orgs/3cf840bcb0779b40                                                    
                read:orgs/3cf840bcb0779b40/remotes write:orgs/3cf840bcb0779b40/remotes read:orgs/                                                   
                3cf840bcb0779b40/replications write:orgs/3cf840bcb0779b40/replications read:orgs/                                                   
                3cf840bcb0779b40/scrapers write:orgs/3cf840bcb0779b40/scrapers read:orgs/3cf840bc                                                   
                b0779b40/secrets write:orgs/3cf840bcb0779b40/secrets read:orgs/3cf840bcb0779b40/s                                                   
                ources write:orgs/3cf840bcb0779b40/sources read:orgs/3cf840bcb0779b40/tasks write                                                   
                :orgs/3cf840bcb0779b40/tasks read:orgs/3cf840bcb0779b40/telegrafs write:orgs/3cf8                                                   
                40bcb0779b40/telegrafs read:users/0b40d64fd1337000 write:users/0b40d64fd1337000 r                                                   
                ead:orgs/3cf840bcb0779b40/variables write:orgs/3cf840bcb0779b40/variables read:or                                                   
                gs/3cf840bcb0779b40/views write:orgs/3cf840bcb0779b40/views]                                                                        
                106afd525ebf8000        iobroker        0b40d64fd1337000        iobroker's Recove                                                   
                ry Token        Wzu-RSNsbH3FXk853bmgreJXrnrdveggT7XFKbSXqMyYrj8NWmq-TbDPR4eyX391l                                                   
                AOaauF0CFtAT6CLZrhjmQ== [read:authorizations write:authorizations read:buckets wr                                                   
                ite:buckets read:dashboards write:dashboards read:orgs write:orgs read:sources wr                                                   
                ite:sources read:tasks write:tasks read:telegrafs write:telegrafs read:users writ                                                   
                e:users read:variables write:variables read:scrapers write:scrapers read:secrets                                                    
                write:secrets read:labels write:labels read:views write:views read:documents writ                                                   
                e:documents read:notificationRules write:notificationRules read:notificationEndpo                                                   
                ints write:notificationEndpoints read:checks write:checks read:dbrp write:dbrp re                                                   
                ad:notebooks write:notebooks read:annotations write:annotations read:remotes writ                                                   
                e:remotes read:replications write:replications]                                                                                     
                influxdb@influxdb:/var/lib/influxdb2$ mv influxd2.bolt influxd.bolt                                                                 
                influxdb@influxdb:/var/lib/influxdb2$                                    
                

                es steht keine neuer drin:

                {
                	"links": {
                		"self": "/api/v2/authorizations"
                	},
                	"authorizations": [
                		{
                			"id": "1065b092f71e7000",
                			"token": "GxG_6HrDZhgMVq2SJI2IpmqjNoiXhJ3iNnHADnADmfVdosKzGt3UBj9F2PMKRHgnU_sr3VSV1BPX939KBfgtCQ==",
                			"status": "active",
                			"description": "iobroker",
                			"orgID": "3cf840bcb0779b40",
                			"org": "private",
                			"userID": "0b40d64fd1337000",
                			"user": "iobroker",
                			"permissions": [
                				{
                					"action": "read",
                					"resource": {
                						"type": "annotations",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "annotations",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "authorizations",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "authorizations",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "buckets",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "buckets",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "checks",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "checks",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "dashboards",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "dashboards",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "dbrp",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "dbrp",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "documents",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "documents",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "labels",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "labels",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "notebooks",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "notebooks",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "notificationEndpoints",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "notificationEndpoints",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "notificationRules",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "notificationRules",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "orgs",
                						"id": "3cf840bcb0779b40",
                						"name": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "remotes",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "remotes",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "replications",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "replications",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "scrapers",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "scrapers",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "secrets",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "secrets",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "sources",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "sources",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "tasks",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "tasks",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "telegrafs",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "telegrafs",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "users",
                						"id": "0b40d64fd1337000",
                						"name": "iobroker"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "users",
                						"id": "0b40d64fd1337000",
                						"name": "iobroker"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "variables",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "variables",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "read",
                					"resource": {
                						"type": "views",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				},
                				{
                					"action": "write",
                					"resource": {
                						"type": "views",
                						"orgID": "3cf840bcb0779b40",
                						"org": "private"
                					}
                				}
                			],
                			"links": {
                				"self": "/api/v2/authorizations/1065b092f71e7000",
                				"user": "/api/v2/users/0b40d64fd1337000"
                			},
                			"createdAt": "2026-03-13T11:36:30.044527627+01:00",
                			"updatedAt": "2026-03-13T11:36:30.044527627+01:00"
                		}
                	]
                }
                

                OK brauchte einen Neustart der Container nun steht ein Recovery drin. Ich teste.

                Jungs! läuft !!! ist schon bei 7GB 😳

                sooo, 16GB influx gebackupt ! wow

                Super, nun funktiniert wieder alles, ich bin happy und sage vielen Dank and euch für die Hilfe und Geduld! 👍👌🍾

                Marc BergM Offline
                Marc BergM Offline
                Marc Berg
                Most Active
                schrieb zuletzt editiert von
                #93

                @Humidor sagte in [gelöst] Backitup - NAS ?:

                sooo, 16GB influx gebackupt ! wow

                Mindestens Faktor 100 zu groß. Schau mal hier ein, ob das auf dich zutrifft:

                https://forum.iobroker.net/topic/73784/gelöst-speicherbelegung-influxdb2-nach-containerisierung

                NUC10I3+Ubuntu+Docker+ioBroker+influxDB2+Node Red+EMQX+Grafana

                Pi-hole, Traefik, Checkmk, Conbee II+Zigbee2MQTT, ESPSomfy-RTS, LoRaWAN, Arduino, KiCad

                Benutzt das Voting im Beitrag, wenn er euch geholfen hat.

                HumidorH 1 Antwort Letzte Antwort
                0
                • Marc BergM Marc Berg

                  @Humidor sagte in [gelöst] Backitup - NAS ?:

                  sooo, 16GB influx gebackupt ! wow

                  Mindestens Faktor 100 zu groß. Schau mal hier ein, ob das auf dich zutrifft:

                  https://forum.iobroker.net/topic/73784/gelöst-speicherbelegung-influxdb2-nach-containerisierung

                  HumidorH Online
                  HumidorH Online
                  Humidor
                  schrieb zuletzt editiert von Humidor
                  #94

                  @Marc-Berg Scraper ist keiner drin, beim Bucket size laden, lädt und lädt er......

                  nach fast 10min
                  Bildschirmfoto 2026-03-17 um 16.33.34.png

                  BG

                  Marc BergM 1 Antwort Letzte Antwort
                  0
                  • HumidorH Humidor

                    @Marc-Berg Scraper ist keiner drin, beim Bucket size laden, lädt und lädt er......

                    nach fast 10min
                    Bildschirmfoto 2026-03-17 um 16.33.34.png

                    Marc BergM Offline
                    Marc BergM Offline
                    Marc Berg
                    Most Active
                    schrieb zuletzt editiert von
                    #95

                    @Humidor

                    Brauchst du 62 Millionen Datensätze allein für den einen Datenpunkt?

                    Und alle anderen?

                    b6c3ac37-35a4-4aca-9cd2-00af5403a46c-grafik.png

                    Was ist bei der Historisierung am Datenpunkt eingestellt? Sekündliches Aufzeichnen?

                    NUC10I3+Ubuntu+Docker+ioBroker+influxDB2+Node Red+EMQX+Grafana

                    Pi-hole, Traefik, Checkmk, Conbee II+Zigbee2MQTT, ESPSomfy-RTS, LoRaWAN, Arduino, KiCad

                    Benutzt das Voting im Beitrag, wenn er euch geholfen hat.

                    HumidorH 1 Antwort Letzte Antwort
                    0
                    • Marc BergM Marc Berg

                      @Humidor

                      Brauchst du 62 Millionen Datensätze allein für den einen Datenpunkt?

                      Und alle anderen?

                      b6c3ac37-35a4-4aca-9cd2-00af5403a46c-grafik.png

                      Was ist bei der Historisierung am Datenpunkt eingestellt? Sekündliches Aufzeichnen?

                      HumidorH Online
                      HumidorH Online
                      Humidor
                      schrieb zuletzt editiert von
                      #96

                      @Marc-Berg Nein, ich will nur jetzt aktuell und detaillierte Aufzeichnungen haben. Gibt es die Möglichkeit nach Zeit das auszudünnen? In einem Jahr brauch ich absolut kein Detail in der Sekunde, da reichen Minuten oder mehr.

                      BG

                      1 Antwort Letzte Antwort
                      0
                      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

                      584

                      Online

                      32.7k

                      Benutzer

                      82.5k

                      Themen

                      1.3m

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

                      • Du hast noch kein Konto? Registrieren

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