Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • 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
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. Support
  3. "Platform data" and "Other" disk usage

"Platform data" and "Other" disk usage

Scheduled Pinned Locked Moved Solved Support
cloudrondisk usagelogs
26 Posts 10 Posters 4.2k Views 10 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.
  • girishG Offline
    girishG Offline
    girish
    Staff
    wrote on last edited by
    #15

    The prune commands should be safe to run. Unless there is some Cloudron bug, it shouldn't remove anything.

    J 1 Reply Last reply
    0
    • girishG girish

      The prune commands should be safe to run. Unless there is some Cloudron bug, it shouldn't remove anything.

      J Offline
      J Offline
      jk
      wrote on last edited by
      #16

      @girish thank you.

      That worked for docker volume prune. The other command (docker image prune) did not actually clean anything up though, but the output of docker system df stays with 66% reclaimable.

      Any further ideas?

      1 Reply Last reply
      0
      • girishG girish

        @d19dotca Please check the size of /home/yellowtent/platformdata/logs. We have a logrotate issue which is not cleaning up logs properly. You can delete some of the old files there safely.

        yusfY Offline
        yusfY Offline
        yusf
        wrote on last edited by
        #17

        @girish said in "Platform data" and "Other" disk usage:

        We have a logrotate issue which is not cleaning up logs properly.

        I still need to continuously watch these log files not filling up the machine completely. Can you take another look at the log rotation feature?

        1 Reply Last reply
        1
        • girishG Offline
          girishG Offline
          girish
          Staff
          wrote on last edited by
          #18

          @yusf Do you know which log is taking up space? Maybe we miss a logrotation rule somewhere. You can find this by du -hcs /home/yellowtent/platformdata/logs/*

          d19dotcaD 1 Reply Last reply
          0
          • girishG girish

            @yusf Do you know which log is taking up space? Maybe we miss a logrotation rule somewhere. You can find this by du -hcs /home/yellowtent/platformdata/logs/*

            d19dotcaD Offline
            d19dotcaD Offline
            d19dotca
            wrote on last edited by d19dotca
            #19

            @girish For what it's worth, I ran that command and found the total size was 872 MB. Is that expected? It seems like a lot to me to be nearly a GB in size just for text files. I'd expect that to be more around the 200 MB mark or so, but I'm not sure of the logrotate rules and how much gets logged generally nor how quickly.

            I noticed one of the larger log files was around 47 MB on its own, and it looks to be from my Radicale app. It seems to be logging in DEBUG mode, which I presume is not intended? I'm guessing for production systems we'd like to keep logs in a normal INFO mode, right?

            --
            Dustin Dauncey
            www.d19.ca

            1 Reply Last reply
            0
            • girishG Offline
              girishG Offline
              girish
              Staff
              wrote on last edited by
              #20

              mm, OK. I looked into your own installation - https://paste.cloudron.io/eqixarerox.css (~800MB)

              logrotate configs are in /home/yellowtent/platformdata/logrotate.d

              • Some apps like 2f004a04-e256-426b-9485-e06a31adc2dd were missing configs. This is because when we added the new configs many releases ago, we didn't go back and re-generate it for all the apps. To fix this, simply enable and disable recovery mode and then the logrotate config will be generated.

              • For turn, the logrotate was not added when we added it in the previous release. I have fixed this now for next release.

              • For all apps/services, we keep up to 2 logs of 10M. This is why most of them are < 20M. So, this is mostly working as expected.

              • For the rest, I see that log files are > 20M. I wonder why... investigating.

              1 Reply Last reply
              0
              • girishG Offline
                girishG Offline
                girish
                Staff
                wrote on last edited by girish
                #21

                Found out why. If a log file is > 20M at rotation time, then it's never truncated. Looks like this is just how logrotate works.

                1 Reply Last reply
                0
                • necrevistonnezrN Offline
                  necrevistonnezrN Offline
                  necrevistonnezr
                  wrote on last edited by
                  #22

                  https://paste.cloudron.io/upozogutut.sql
                  For me it adds up to 699 MB

                  Is there a way to clean up those logs in between?

                  1 Reply Last reply
                  0
                  • girishG Offline
                    girishG Offline
                    girish
                    Staff
                    wrote on last edited by
                    #23

                    @necrevistonnezr If you go into /home/yellowtent/platformdata/logrotate, do you see 07e4e251-ed90-42ca-9ba3-e015b108f1e6 and c5c137fa-0221-4d42-b418-10e544cebad1 there? If not, go those apps (you can figure this out either by looking at the logs a bit or in the dashboard's URL) and start recovery mode and end recovery mode. This will generate the logrotate configs for them.

                    Once, the configs are in place, future logs will get rotated. But this does not help the current logs. You can just truncate them like:

                    truncate -s0 /home/yellowtent/platformdata/logs/07e4e251-ed90-42ca-9ba3-e015b108f1e6/app.log
                    
                    necrevistonnezrN 1 Reply Last reply
                    0
                    • girishG girish

                      @necrevistonnezr If you go into /home/yellowtent/platformdata/logrotate, do you see 07e4e251-ed90-42ca-9ba3-e015b108f1e6 and c5c137fa-0221-4d42-b418-10e544cebad1 there? If not, go those apps (you can figure this out either by looking at the logs a bit or in the dashboard's URL) and start recovery mode and end recovery mode. This will generate the logrotate configs for them.

                      Once, the configs are in place, future logs will get rotated. But this does not help the current logs. You can just truncate them like:

                      truncate -s0 /home/yellowtent/platformdata/logs/07e4e251-ed90-42ca-9ba3-e015b108f1e6/app.log
                      
                      necrevistonnezrN Offline
                      necrevistonnezrN Offline
                      necrevistonnezr
                      wrote on last edited by
                      #24

                      @girish Thanks, worked!

                      1 Reply Last reply
                      0
                      • foliovisionF Offline
                        foliovisionF Offline
                        foliovision
                        wrote on last edited by
                        #25

                        Hi Girish,

                        We've run into issues with reclaimable space as well. Here's where we stand now.

                        # docker system df
                        TYPE            TOTAL     ACTIVE    SIZE      RECLAIMABLE
                        Images          18        18        15.99GB   4.727GB (29%)
                        Containers      19        19        95.79kB   0B (0%)
                        Local Volumes   62        58        623.4MB   3.582kB (0%)
                        Build Cache     0         0         0B        0B
                        

                        This is after running docker image prune -a which removed 19 Images (saved 4 GB), 3 Containers, 324 Local Volumes (saved 2.2 GB). We have also already ran We tried docker volume prune and docker system prune too. These only saved about 100 MB each.

                        How do we reclaim the last 4.727GB of reclaimable space?

                        Thanks in advance for your good advice, Alec

                        PS. I've posted on this older thread as it's also about reclaimable space, to avoid too many duplicate threads on the forum.

                        1 Reply Last reply
                        1
                        • girishG Offline
                          girishG Offline
                          girish
                          Staff
                          wrote on last edited by
                          #26

                          @foliovision you can also try docker system prune -a --volumes but generally I have never succeeded in making that reclaimable space be less than 2GB in any server using docker (even without Cloudron).

                          1 Reply Last reply
                          2
                          Reply
                          • Reply as topic
                          Log in to reply
                          • Oldest to Newest
                          • Newest to Oldest
                          • Most Votes


                          • Login

                          • Don't have an account? Register

                          • Login or register to search.
                          • First post
                            Last post
                          0
                          • Categories
                          • Recent
                          • Tags
                          • Popular
                          • Bookmarks
                          • Search