How to upgrade MariaDB to Version11

barite

Verified User
Joined
Sep 5, 2020
Messages
16
I try to use command to update the MariaDB version to newest version, but failed.
Someone know how to do it?
 
it still alpha, but for process to upgrade, you need one by one version upgrades.

Example if you want to upgrade v10.2 to v11. It need multiple upgrading.
10.2 -> 10.5,
10.5 -> 10.6
10.6 -> 10.7
..... unti....
10.9 -> 11
 
Hello,

The provided information is too ambiguous. If you want us to help you, first help us to understand your issue better. Provide steps you perform and errors you got. It will be even more helpful if you provide last 10-20 lines from a console output.

update the MariaDB version to newest version, but failed.
 
Unless you need something offered by version 11, you should be updating to the latest long term version, which is 10.11
 
But actually DirectAdmin can not upgrade to 10.11, I now have V10.6, I even can not upgrade to 10.7 version.

I use these code, but still keep 10.6 Version
Code:
cd /usr/local/directadmin/custombuild
./build update
./build set mysql_backup yes
./build set "mariadb" 10.7
./build set mysql_inst "mariadb"
./build "mariadb"
 
You can install MariaDB 10.11 using an official RPM repository and yum/dnf avoiding CustomBuild for it.
So I can use this to upgrade mariadb 10.6 to 10.11 ¿safe?
Code:
sudo sed -i 's/10.6/10.11/' /etc/yum.repos.d/MariaDB.repo


for upgrade mariadb 10.6 to 10.7 i have an error
Code:
10.7 is not a valid setting for mariadb option.
and I can't find the error log file
 
Back
Top