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

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

Community Forum

donate donate
  1. ioBroker Community Home
  2. English
  3. Off Topic
  4. Problems using influxDB on an external SSD

NEWS

  • Neuer ioBroker-Blog online: Monatsrückblick März/April 2026
    BluefoxB
    Bluefox
    8
    1
    1.6k

  • Verwendung von KI bitte immer deutlich kennzeichnen
    HomoranH
    Homoran
    10
    1
    671

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    18
    1
    1.2k

Problems using influxDB on an external SSD

Scheduled Pinned Locked Moved Off Topic
48 Posts 8 Posters 10.0k Views 7 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • HomoranH Homoran

    @mathias2803 sagte in Problems using influxDB on an external SSD:

    An was siehst du das?

    eben nicht, das war Bedingung:

    @thomas-braun sagte in Problems using influxDB on an external SSD:

    Wie sehen die Rechte an /media/data aus, wenn das Dateisystem nicht gemounted ist?

    deswegen die Nachfrage

    M Offline
    M Offline
    Mathias2803
    wrote on last edited by
    #39

    @homoran

    In der influxdb.conf taucht auch keine "media/data" auf sondern nur folgende Einstellungen:

    [meta]
      dir = "/mnt/mySSD/InfluxDB/meta"
    [data]
      dir = "/mnt/mySSD/InfluxDB/data"
      wal-dir = "/mnt/mySSD/InfluxDB/wal"
      series-id-set-cache-size = 100
    [http]
      enabled = true
      bind-address = ":8086"
      auth-enabled = false
      log-enabled = true
      write-tracing = false
      pprof-enabled = false
      https-enabled = false
      https-certificate = "/etc/ssl/influxdb.pem"
    

    Alles andere sind nur Kommentare.

    Thomas BraunT 1 Reply Last reply
    0
    • M Mathias2803

      @homoran

      In der influxdb.conf taucht auch keine "media/data" auf sondern nur folgende Einstellungen:

      [meta]
        dir = "/mnt/mySSD/InfluxDB/meta"
      [data]
        dir = "/mnt/mySSD/InfluxDB/data"
        wal-dir = "/mnt/mySSD/InfluxDB/wal"
        series-id-set-cache-size = 100
      [http]
        enabled = true
        bind-address = ":8086"
        auth-enabled = false
        log-enabled = true
        write-tracing = false
        pprof-enabled = false
        https-enabled = false
        https-certificate = "/etc/ssl/influxdb.pem"
      

      Alles andere sind nur Kommentare.

      Thomas BraunT Online
      Thomas BraunT Online
      Thomas Braun
      Most Active
      wrote on last edited by
      #40

      @mathias2803

      Sorry, das mit /media/data war aus meinem Beispiel, dein Mountpunkt lautet ja /mnt/mySSD

      Was steht denn jetzt in der /etc/fstab drin?

      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

      M 1 Reply Last reply
      0
      • Thomas BraunT Thomas Braun

        @mathias2803

        Sorry, das mit /media/data war aus meinem Beispiel, dein Mountpunkt lautet ja /mnt/mySSD

        Was steht denn jetzt in der /etc/fstab drin?

        M Offline
        M Offline
        Mathias2803
        wrote on last edited by
        #41

        @thomas-braun

        sudo nano /etc/fstab:

        proc            /proc           proc    defaults          0       0
        PARTUUID=f0881a94-01  /boot           vfat    defaults          0       2
        PARTUUID=f0881a94-02  /               ext4    defaults,noatime  0       1
        # a swapfile is not a swap partition, no line here
        #   use  dphys-swapfile swap[on|off]  for that
        UUID="49441976-e29b-4acc-a8ee-71f4eb91255c" /mnt/mySSD ext4 nofail,rw 0 2
        
        Thomas BraunT 1 Reply Last reply
        0
        • M Mathias2803

          @thomas-braun

          sudo nano /etc/fstab:

          proc            /proc           proc    defaults          0       0
          PARTUUID=f0881a94-01  /boot           vfat    defaults          0       2
          PARTUUID=f0881a94-02  /               ext4    defaults,noatime  0       1
          # a swapfile is not a swap partition, no line here
          #   use  dphys-swapfile swap[on|off]  for that
          UUID="49441976-e29b-4acc-a8ee-71f4eb91255c" /mnt/mySSD ext4 nofail,rw 0 2
          
          Thomas BraunT Online
          Thomas BraunT Online
          Thomas Braun
          Most Active
          wrote on last edited by
          #42

          @mathias2803
          Da fehlt die Option 'defaults'.

          Muss also mindestens so aussehen:

          UUID="49441976-e29b-4acc-a8ee-71f4eb91255c" /mnt/mySSD ext4 defaults 0 2
          

          nofail würde ich nicht setzen und rw ist schon in defaults drin.

          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

          M 1 Reply Last reply
          0
          • Thomas BraunT Thomas Braun

            @mathias2803
            Da fehlt die Option 'defaults'.

            Muss also mindestens so aussehen:

            UUID="49441976-e29b-4acc-a8ee-71f4eb91255c" /mnt/mySSD ext4 defaults 0 2
            

            nofail würde ich nicht setzen und rw ist schon in defaults drin.

            M Offline
            M Offline
            Mathias2803
            wrote on last edited by
            #43

            @thomas-braun

            Falls ich "nofail" nicht habe, würde das System doch beim Hochfahren hängen bleiben, wenn etwas mit der Platte nicht in Ordnung ist, oder?

            Was beeinflusst das "defaults"?

            Thomas BraunT 1 Reply Last reply
            0
            • M Mathias2803

              @thomas-braun

              Falls ich "nofail" nicht habe, würde das System doch beim Hochfahren hängen bleiben, wenn etwas mit der Platte nicht in Ordnung ist, oder?

              Was beeinflusst das "defaults"?

              Thomas BraunT Online
              Thomas BraunT Online
              Thomas Braun
              Most Active
              wrote on last edited by
              #44

              @mathias2803

              nofail
              Do not report errors for this device if it does not exist.
              
              defaults
              Use default options: rw, suid, dev, exec, auto, nouser, async, and relatime.
              

              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

              M 2 Replies Last reply
              0
              • Thomas BraunT Thomas Braun

                @mathias2803

                nofail
                Do not report errors for this device if it does not exist.
                
                defaults
                Use default options: rw, suid, dev, exec, auto, nouser, async, and relatime.
                
                M Offline
                M Offline
                Mathias2803
                wrote on last edited by
                #45

                @thomas-braun

                Danke,

                Muss ich noch irgendwie einstellen, dass er mit dem Infux Service warten muss bis das Mount fertig ist?

                Ich habe folgende Seite gefunden, kann es aber nicht auf mich "umsetzten". Bringt das etwas?

                https://unix.stackexchange.com/questions/246935/set-systemd-service-to-execute-after-fstab-mount

                1 Reply Last reply
                0
                • Thomas BraunT Thomas Braun

                  @mathias2803

                  nofail
                  Do not report errors for this device if it does not exist.
                  
                  defaults
                  Use default options: rw, suid, dev, exec, auto, nouser, async, and relatime.
                  
                  M Offline
                  M Offline
                  Mathias2803
                  wrote on last edited by
                  #46

                  @thomas-braun

                  Hat sich nichts geändert, oder?
                  Ist da alles in Ordnung?

                  
                  pi@ioBroker:~ $ ls -la /mnt/mySSD
                  insgesamt 628
                  drwxr-xr-x 5 root root   4096 Okt  1  2021 .
                  drwxrwxrwx 3 root root   4096 Sep 23  2021 ..
                  drwxrwxrwx 2 root root 614400 Apr 12 02:00 Influx-BackUp
                  drwxrwxrwx 5 root root   4096 Okt  1  2021 InfluxDB
                  drwx------ 2 root root  16384 Sep 28  2021 lost+found
                  
                  M 1 Reply Last reply
                  0
                  • M Mathias2803

                    @thomas-braun

                    Hat sich nichts geändert, oder?
                    Ist da alles in Ordnung?

                    
                    pi@ioBroker:~ $ ls -la /mnt/mySSD
                    insgesamt 628
                    drwxr-xr-x 5 root root   4096 Okt  1  2021 .
                    drwxrwxrwx 3 root root   4096 Sep 23  2021 ..
                    drwxrwxrwx 2 root root 614400 Apr 12 02:00 Influx-BackUp
                    drwxrwxrwx 5 root root   4096 Okt  1  2021 InfluxDB
                    drwx------ 2 root root  16384 Sep 28  2021 lost+found
                    
                    M Offline
                    M Offline
                    Mathias2803
                    wrote on last edited by
                    #47

                    Von Influx habe ich auch noch einen Artikel gefunden. Leider ist da auch sehr viel Info für jemanden, der sich mit Linux wenig auskennt.

                    Habe ich etwas aus diesem Bericht nicht beachtet?

                    https://docs.influxdata.com/influxdb/v2.2/reference/config-options/

                    crunchipC 1 Reply Last reply
                    0
                    • M Mathias2803

                      Von Influx habe ich auch noch einen Artikel gefunden. Leider ist da auch sehr viel Info für jemanden, der sich mit Linux wenig auskennt.

                      Habe ich etwas aus diesem Bericht nicht beachtet?

                      https://docs.influxdata.com/influxdb/v2.2/reference/config-options/

                      crunchipC Away
                      crunchipC Away
                      crunchip
                      Forum Testing Most Active Developer
                      wrote on last edited by
                      #48

                      @mathias2803 hab das gerade zufällig gesehen, vllt hilft es auf die Sprünge
                      https://centurio.net/2018/11/21/configure-influxdb-to-store-its-data-in-a-different-folder/
                      bzw
                      https://centurio.net/2018/11/21/auto-mount-nfs-shares-on-raspbian/

                      umgestiegen von Proxmox auf Unraid

                      1 Reply Last reply
                      0

                      Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                      Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                      With your input, this post could be even better 💗

                      Register Login
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      Support us

                      ioBroker
                      Community Adapters
                      Donate

                      520

                      Online

                      32.9k

                      Users

                      83.0k

                      Topics

                      1.3m

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

                      • Don't have an account? Register

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