Details
-
Task
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
None
Description
XHR GET https://downloads.mariadb.org/rest-api/repo-instructions/?distro=Ubuntu&distroRelease=focal&releaseVersion=10.6&builtin=false&mirror=realworldgroup
|
[HTTP/1.1 200 OK 1023ms]
|
|
Here are the commands to run to install MariaDB 10.6 from the MariaDB repository on your Ubuntu system:
|
|
sudo apt-get install software-properties-common dirmngr apt-transport-https
|
sudo apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc'
|
sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] https://mirror.realcompute.io/mariadb/repo/10.6/ubuntu focal main'
|
|
|
Once the key is imported and the repository added you can install MariaDB 10.6 from the MariaDB repository with:
|
|
sudo apt update
|
sudo apt install mariadb-server
|
|
|
See Installing MariaDB .deb Files for more information and for instructions on installing MariaDB Galera Cluster. You can also create a custom MariaDB sources.list file. To do so, after importing the signing key as outlined above, copy and paste the following into a file under /etc/apt/sources.list.d (we suggest naming the file MariaDB.listt or something similar), or add it to the bottom of your /etc/apt/sources.list file.
|
|
# MariaDB 10.6 repository list - created UTC
|
# https://mariadb.org/download/
|
deb [arch=amd64] https://mirror.realcompute.io/mariadb/repo/10.6/ubuntu focal main
|
deb-src https://mirror.realcompute.io/mariadb/repo/10.6/ubuntu focal main
|
|
|
If you need debug packages, add the debug component to your sources.list with:
|
|
sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] https://mirror.realcompute.io/mariadb/repo/10.6/ubuntu focal main/debug'
|
|
|
MariaDB debug packages will now show up when searching for 'mariadb' with apt or apt-cache and are distinguished by the '-dbgsym' suffix. Debug packages are generally only needed during development and usually should not be installed unless you know that you need them.
|
|
On the API:
1. The middle cut/paste only lists amd64 - it should be all arches (or none?).
2. "created UTC" looks odd. Either include a time identifier or omit.
3. From 10.5 and 10.6 now includes s390x as an architecture (for Ubuntu 20.04 focal only), others probably next release.
On UI:
After "Choose a distribution" and selecting one, and then "Choose a MariaDB Server version" and choosing one. If I change the distro, the MariaDB version is also cleared. Couldn't we keep this if its supported on the changed distro?