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
  • 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
Brand Logo

Cloudron Forum

Offical apps | Community apps | Demo | Docs | Install
  1. Cloudron Forum
  2. Support
  3. MySQL binlogs growing unbounded — 145 GB, no expiry set?

MySQL binlogs growing unbounded — 145 GB, no expiry set?

Scheduled Pinned Locked Moved Solved Support
disk usageubuntu 26.04ubuntumysqldist upgrade
32 Posts 5 Posters 503 Views 5 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.
  • jamesJ
    jamesJ
    james
    Staff
    wrote last edited by
    #23

    Hello @jayonrails
    I am currently trying to reproduce if the Ubuntu 24 to Ubuntu 26 upgrade resets the my.cnf.

    1 Reply Last reply
    2
    • C
      C
      CRBear
      wrote last edited by
      #24

      Yes, this is the Ubuntu host system MySQL under /var/lib/mysql, not the MySQL addon service running in Docker.

      The Cloudron dashboard shows:

      Cloudron activation time: 2 years ago
      Cloudron version: 10.0.5
      Ubuntu: 26.04.1 LTS
      

      So the activation is approximately from 2024 and therefore well after skip-log-bin was added in 2021.

      Regarding the Ubuntu 24 → 26 upgrade: I used the default N/O option to keep the currently installed configuration files when prompted.

      I also checked /var/log/apt/term.log. For the MySQL 8.4 installation itself I cannot see any configuration-file prompt. Instead, the relevant part is:

      Setting up mysql-server (8.4.11-0ubuntu0.26.04.1)…
      update-alternatives: using /etc/mysql/mysql.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode
      

      Cloudron's own template still contains:

      /home/yellowtent/box/setup/start/mysql.cnf
      

      including:

      # disable bin logs. they are only useful in replication mode
      skip-log-bin
      

      but skip-log-bin is no longer present anywhere under /etc/mysql.

      I have not changed or deleted anything yet. I will wait for your guidance before making any changes, so please let me know what you would like me to do next.

      I can also provide any further diagnostics that may help with reproducing this.

      Thank you very much.

      1 Reply Last reply
      2
      • jamesJ
        jamesJ
        james
        Staff
        wrote last edited by james
        #25

        Hello @jayonrails and @crbear
        I have merged the two topics into this one.


        I have reproduced the issue, and it comes from upgrading Ubuntu 24 to Ubuntu 26.
        A documentation update is deployed as of writing this.

        The issue is that Ubuntu upgrade does uninstall the MySQL server on the system and both of you did correctly follow the guide and run:

        systemctl stop box
        apt install mysql-server
        systemctl start box
        

        This installed the MySQL server with the apt package default configuration and not the Cloudron configurations.
        To fix this please run the following command from your ssh root/sudo session:

        bash /home/yellowtent/box/setup/start.sh
        

        This will ensure all services on the root system including MySQL are configured correctly.


        Thank you again for bringing this to our attention.

        1 Reply Last reply
        2
        • jamesJ
          jamesJ
          james
          Staff
          wrote last edited by
          #26

          Hello @jayonrails and @crbear
          After running the command please report if this resolved the issue for you.

          note: binlogs might not be purged automatically

          If that is the case for you please run:

          mysql -uroot -ppassword -e "RESET BINARY LOGS AND GTIDS;"
          

          if that also does not clean up the binlog files in /var/lib/mysql/ stop the box.service and mysql.service and delete the files manually.

          Example:

          systemctl stop box.service mysql.service
          # this will ask you for every file for confirmation
          rm -rfi /var/lib/mysql/binlog.*
          rm: remove regular file '/var/lib/mysql/binlog.000003'? y
          rm: remove regular file '/var/lib/mysql/binlog.000004'? y
          rm: remove regular file '/var/lib/mysql/binlog.index'? y
          systemctl status mysql.service box.service
          
          1 Reply Last reply
          1
          • C
            C
            CRBear
            wrote last edited by
            #27

            Thank you very much - the issue is fully resolved now.

            I ran bash /home/yellowtent/box/setup/start.sh, confirmed that skip-log-bin is present again and @@log_bin = 0.

            RESET BINARY LOGS AND GTIDS; did not remove the existing files, so I followed your fallback procedure, stopped box.service and mysql.service, removed /var/lib/mysql/binlog.*, and started both services again.

            Current status:

            /var/lib/mysql: 337M
            /: 58G used / 86G available / 41%
            @@log_bin = 0

            Everything is running normally again.

            Thank you again for the incredibly fast and excellent support, and especially for reproducing the issue and updating the documentation so quickly. Much appreciated!

            1 Reply Last reply
            2
            • J
              J
              jayonrails
              translator
              wrote last edited by
              #28

              @james I cannot maintain this until the weekend, so I would leave FreeScout stopped and report back in a few days.

              root@my:~# 
              root@my:~# mysql -uroot -ppassword -e "RESET BINARY LOGS AND GTIDS;"
              mysql: [Warning] Using a password on the command line interface can be insecure.
              root@my:~# mysql -uroot -ppassword -e "SHOW BINARY LOGS;"
              mysql: [Warning] Using a password on the command line interface can be insecure.
              +---------------+-----------+-----------+
              | Log_name      | File_size | Encrypted |
              +---------------+-----------+-----------+
              | binlog.000001 |   3783544 | No        |
              +---------------+-----------+-----------+
              

              This seems fine for now, let see if it blows up again...

              jamesJ 1 Reply Last reply
              1
              • jamesJ james has marked this topic as solved
              • J jayonrails

                @james I cannot maintain this until the weekend, so I would leave FreeScout stopped and report back in a few days.

                root@my:~# 
                root@my:~# mysql -uroot -ppassword -e "RESET BINARY LOGS AND GTIDS;"
                mysql: [Warning] Using a password on the command line interface can be insecure.
                root@my:~# mysql -uroot -ppassword -e "SHOW BINARY LOGS;"
                mysql: [Warning] Using a password on the command line interface can be insecure.
                +---------------+-----------+-----------+
                | Log_name      | File_size | Encrypted |
                +---------------+-----------+-----------+
                | binlog.000001 |   3783544 | No        |
                +---------------+-----------+-----------+
                

                This seems fine for now, let see if it blows up again...

                jamesJ
                jamesJ
                james
                Staff
                wrote last edited by james
                #29

                Hello @jayonrails
                This is not a Freescout issue.
                Please run the instructed commands so the MySQL system server has the correct configuration again.
                If you don't do this, it could also lead to future issues like a wrong character set and a wrong collation for databases created in the future by apps, which in turn could lead to backup restore issues.

                It is highly advised to run the commands I have provided to ensure that the MySQL system server is running as intended by Cloudron.

                1 Reply Last reply
                1
                • J
                  J
                  jayonrails
                  translator
                  wrote last edited by
                  #30

                  The topic has been merged and I haven’t seen the post you’re referring to. Thanks, will take care of it.

                  1 Reply Last reply
                  2
                  • J
                    J
                    jayonrails
                    translator
                    wrote last edited by
                    #31

                    This seems fine now, @james ?

                    root@my:~# systemctl stop box
                    root@my:~# apt install mysql-server
                    mysql-server is already the newest version (8.4.11-0ubuntu0.26.04.1).
                    The following package was automatically installed and is no longer required:
                      libevent-pthreads-2.1-7t64
                    Use 'apt autoremove' to remove it.
                    
                    Summary:
                      Upgrading: 0, Installing: 0, Removing: 0, Not Upgrading: 15
                    root@my:~# systemctl start box
                    root@my:~# bash /home/yellowtent/box/setup/start.sh
                    2026-09-23T10:43:05 ==> start: Cloudron Start
                    media:x:500:
                    2026-09-23T10:43:05 ==> start: Configuring docker
                    Synchronizing state of apparmor.service with SysV service script with /usr/lib/systemd/systemd-sysv-install.
                    Executing: /usr/lib/systemd/systemd-sysv-install enable apparmor
                    2026-09-23T10:43:06 ==> start: Ensuring directories
                    2026-09-23T10:43:06 ==> start: Configuring journald
                    2026-09-23T10:43:06 ==> start: Setting up unbound
                    2026-09-23T10:43:06 ==> start: Adding systemd services
                    Synchronizing state of unbound.service with SysV service script with /usr/lib/systemd/systemd-sysv-install.
                    Executing: /usr/lib/systemd/systemd-sysv-install enable unbound
                    Synchronizing state of cron.service with SysV service script with /usr/lib/systemd/systemd-sysv-install.
                    Executing: /usr/lib/systemd/systemd-sysv-install enable cron
                    Synchronizing state of rpcbind.service with SysV service script with /usr/lib/systemd/systemd-sysv-install.
                    Executing: /usr/lib/systemd/systemd-sysv-install disable rpcbind
                    2026-09-23T10:43:12 ==> start: Configuring sudoers
                    2026-09-23T10:43:12 ==> start: Configuring logrotate
                    2026-09-23T10:43:12 ==> start: Adding motd message for admins
                    2026-09-23T10:43:12 ==> start: Configuring nginx
                    2026-09-23T10:43:13 ==> start: Stopping mysql
                    2026-09-23T10:43:17 ==> start: Starting mysql
                    mysqladmin: [Warning] Using a password on the command line interface can be insecure.
                    Warning: Since password will be sent to server in plain text, use ssl connection to ensure password safety.
                    mysql: [Warning] Using a password on the command line interface can be insecure.
                    mysql: [Warning] Using a password on the command line interface can be insecure.
                    2026-09-23T10:43:17 ==> start: Migrating data
                    [INFO] No migrations to run
                    [INFO] Done
                    2026-09-23T10:43:18 ==> start: Changing ownership
                    2026-09-23T10:43:18 ==> start: Starting cloudron-syslog
                    2026-09-23T10:43:18 ==> start: Starting Cloudron
                    2026-09-23T10:43:20 ==> start: Almost done
                    root@my:~# mysql -uroot -ppassword -e "SHOW BINARY LOGS;"
                    mysql: [Warning] Using a password on the command line interface can be insecure.
                    ERROR 1381 (HY000) at line 1: You are not using binary logging
                    
                    1 Reply Last reply
                    0
                    • jamesJ
                      jamesJ
                      james
                      Staff
                      wrote last edited by
                      #32

                      Hello @jayonrails

                      The only instruction was:

                      james said:

                      To fix this please run the following command from your ssh root/sudo session:

                      bash /home/yellowtent/box/setup/start.sh
                      

                      But you also did run:

                      systemctl stop box
                      apt install mysql-server
                      systemctl start box
                      

                      From the log it looks like everything worked out correctly.
                      Please make sure to carefully read provided instructions in the future since you did run commands that where not instruced to be executed.

                      Please also read https://forum.cloudron.io/post/129886 which explains that the binlogs might not be purged correctly and how to clean it up.
                      Otherwise some binlog files might remain and block some diskspace.

                      1 Reply Last reply
                      2

                      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


                      • Login

                      • Don't have an account? Register

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