I have had MariaDB installed on my server for a while now. I previously used sudo apt install mariadb-server
to install.
I wish to upgrade this to 10.6.11 as this is the newest stable LTS version, but the Ubuntu distro only has 10.6.7 and won't allow me to upgrade using apt upgrade mariadb-server
.
I have tried removing the server using apt remove mariadb-server
, then adding the repo:
sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] https://mariadb.mirror.liquidtelecom.com/repo/10.6/ubuntu focal main'
... then installing, but it's a big ole mess. Even after the apt remove
, the server was still there. I did an apt purge and got rid of it, but when i try an apt install mariadb-server
, I get the following error:
The following packages have unmet dependencies: lists mariabd-server
And then quits. Obviously, I don't know what I'm doing.
I'd appreciate a step-by-step how to upgrade MariaDB beyond what's natively available in the Ubuntu distro.