This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://mariadb.com/kb/en/library/upgrading-from-mariadb-103-to-mariadb-104/ | |
# Add MariaDB APT repo | |
sudo apt-get update | |
sudo apt-get install software-properties-common | |
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8 | |
sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] http://sfo1.mirrors.digitalocean.com/mariadb/repo/10.4/ubuntu bionic main' | |
sudo apt-get update | |
# Stop MariaDB | |
sudo systemctl stop mysql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://mariadb.com/kb/en/library/upgrading-from-mariadb-103-to-mariadb-104/ | |
# Add MariaDB APT repo | |
sudo apt-get update | |
sudo apt-get install software-properties-common | |
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8 | |
sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] http://sfo1.mirrors.digitalocean.com/mariadb/repo/10.4/ubuntu bionic main' | |
sudo apt-get update | |
# Stop MariaDB | |
sudo systemctl stop mysql |