All pages
Powered by GitBook
1 of 1

Loading...

Upgrading Between Major MariaDB Versions

General instructions for performing major version upgrades (e.g., 10.3 to 10.4) on Linux, covering repository updates, backup recommendations, and using `mariadb-upgrade`.

MariaDB is designed to allow easy upgrades. You should be able to trivially upgrade from ANY earlier MariaDB version to the latest one (for example .x to MariaDB 10.11.x), usually in a few seconds. This is also mainly true for any MySQL version < 8.0 to and up.

Upgrades are normally easy because:

  • All MariaDB table data files are backward compatible

  • The MariaDB connection protocol is backward compatible. You don't normally need to upgrade any of your old clients to be able to connect to a newer MariaDB version.

  • The MariaDB replica can be of any newer version than the primary.

MariaDB Corporation regularly runs tests to check that one can upgrade from to the latest MariaDB version without any trouble. All older versions should work too (as long as the storage engines you were using are still around).

Note that if you are using , you have to follow the !

Requirements for Doing an Upgrade Between Major Versions

  • Go through the individual version upgrade notes (listed below) to look for any major changes or configuration options that have changed.

  • Ensure that the target MariaDB version supports the storage engines you are using. For example, in 10.5 is not supported.

  • Back up the database (just in case). At least, take a copy of the mysql system database directory under the data directory with (called mysqldump in and earlier) as most of the upgrade changes are done there (adding new fields and new system tables etc).

Note that rpms don't support upgrading between major versions, only minor like 10.4.1 to 10.4.2. If you are using rpms, you should de-install the old MariaDB rpms and install the new MariaDB rpms before running . Note that when installing the new rpms, may be run automatically. There is no problem with running many times.

Recommended Steps

  • If you have a , first upgrade one replica and when you have verified that the replica works well, upgrade the rest of the replicas (if any). Then , upgrade the primary, and change the replica to a primary.

  • If you don't have a primary-replica setup, then , and do the upgrade.

Step by Step Instructions for Upgrades

  • Upgrade MariaDB binaries and libraries, preferably without starting MariaDB.

  • If the MariaDB server process, was not started as part of the upgrade, start it by executing mariadbd --skip-grant-tables. This may produce some warnings about some system tables not being up to date, but you can ignore these for now as will fix that.

  • Run

Work Done by mariadb-upgrade

The main work done when upgrading is done by running . The main things it does are:

  • Updating the system tables in the mysql database to the newest version. This is very quick.

  • also runs to check if there have been any collation changes between the major versions. This recreates indexes in old tables that are using any of the changed collations. This can take a bit of time if there are a lot of tables or there are many tables which used the changed collation. The last time a collation changed was in MariaDB/MySQL 5.1.23.

Post Upgrade Work

Check the for any problems during upgrade. If there are any warnings in the log files, do your best to get rid of them!

The common warnings/errors are:

  • Using obsolete options. If this is the case, remove them from your .

  • Check the manual for that have been added since your last MariaDB version.

  • Test that your application works as before. The main difference from before is that because of optimizer improvements your application should work better than before, but in some rare cases the optimizer may get something wrong. In this case, you can try to use , or to fix the queries.

If Something Goes Wrong

  • First, check the to see if you are using configure options that are not supported anymore.

  • Check the upgrade notices for the MariaDB release that you are upgrading to.

  • File an issue in the so that we know about the issue and can provide a fix to make upgrades even better.

  • Add a comment to this manual entry for how we can improve it.

Disaster Recovery

In the unlikely event something goes wrong, you can try the following:

  • Remove the InnoDB tables from the mysql data directory. They are:

    • gtid_slave_pos

    • innodb_table_stats

Downgrading

MariaDB server is not designed for downgrading. That said, in most cases, as long as you haven't run any or statements and you have a of your old mysql database , you should be able to downgrade to your previous version by doing the following:

  • Do a clean shutdown. For this special case you have to set to 0,before taking down the new MariaDB server, to ensure there are no redo or undo logs that need to be applied on the downgraded server.

  • Delete the tables in the mysql database (if you didn't use the option --add-drop-table to )

  • Delete the new MariaDB installation

See Also

This page is licensed: CC BY-SA / Gnu FDL

Cleanly shutdown the server. This is necessary because even if data files are compatible between versions, recovery logs may not be.

  • Ensure that the innodb_fast_shutdown variable is not 2 (fast crash shutdown). The default of this variable is 1.

  • innodb_force_recovery must be less than 3.

Restart MariaDB server.
innodb_index_stats
  • transaction_registry

  • Move the mysql data directory to mysql-old and run mariadb-install-db to generate a new one.

  • After the above, you have to add back your old users.

  • When done, delete the mysql-old data directory.

  • Install the old MariaDB version
  • Start the server with mariadbd --skip-grant-tables

  • Install the old mysql database

  • Execute in the mariadb client FLUSH PRIVILEGES

  • Upgrading from MariaDB 10.5 to MariaDB 10.6
  • Upgrading from MariaDB 10.4 to MariaDB 10.5

  • innodb_fast_shutdown

  • TokuDB
    mariadb-dump --add-drop-table mysql
    mariadb-upgrade
    mariadb-upgrade
    mariadb-upgrade
    primary-replica setup
    upgrade one replica to primary
    take a backup
    shutdown MariaDB
    mariadbd
    mariadb-upgrade
    mariadb-upgrade
    mariadb-upgrade
    mariadb-upgrade
    mariadb-check --check-upgrade
    MariaDB error log
    my.cnf files
    new features
    explain
    optimizer_switch
    MariaDB error log
    ALTER TABLE
    CREATE TABLE
    mariadb-dump
    innodb_fast_shutdown
    mariadb-dump
    Upgrading from MySQL to MariaDB
    Upgrading from MariaDB 10.11 to MariaDB 11.4
    Upgrading from MariaDB 10.6 to MariaDB 10.11
    Upgrading from MariaDB 10.6 to MariaDB 10.7
    MariaDB Galera Cluster
    Galera upgrading instructions
    Galera upgrading instructions
    MariaDB 10.3
    MariaDB 10.4
    MariaDB 5.5
    MariaDB 10.3
    optimizer trace
    MariaDB bug tracker