|
|
@ -412,14 +412,13 @@ sudo apt install httpie links
|
|
|
|
|
|
|
|
|
|
|
|
## MariaDB
|
|
|
|
## MariaDB
|
|
|
|
|
|
|
|
|
|
|
|
Instalamos la última estable para Ubuntu Bionic desde los repos oficiales.
|
|
|
|
Instalamos la última estable para Ubuntu Fossa desde los repos oficiales.
|
|
|
|
|
|
|
|
|
|
|
|
Primero añadimos los reports
|
|
|
|
Primero añadimos los repos.
|
|
|
|
|
|
|
|
|
|
|
|
Añadimos la clave de firma:
|
|
|
|
Añadimos la clave de firma:
|
|
|
|
|
|
|
|
|
|
|
|
~~~~{bash}
|
|
|
|
~~~~{bash}
|
|
|
|
sudo apt-get install software-properties-common
|
|
|
|
|
|
|
|
sudo apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc'
|
|
|
|
sudo apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc'
|
|
|
|
~~~~
|
|
|
|
~~~~
|
|
|
|
|
|
|
|
|
|
|
@ -428,17 +427,17 @@ Ahora tenemos dos opciones:
|
|
|
|
Podemos ejecutar:
|
|
|
|
Podemos ejecutar:
|
|
|
|
|
|
|
|
|
|
|
|
~~~~
|
|
|
|
~~~~
|
|
|
|
sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] http://ftp.icm.edu.pl/pub/unix/database/mariadb/repo/10.4/ubuntu bionic main'
|
|
|
|
sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] http://mariadb.mirror.liteserver.nl/repo/10.5/ubuntu focal main'
|
|
|
|
~~~~
|
|
|
|
~~~~
|
|
|
|
|
|
|
|
|
|
|
|
O podemos crear un fichero `/etc/apt/apt.sources.list.d/MariaDB` con
|
|
|
|
O podemos crear un fichero `/etc/apt/apt.sources.list.d/MariaDB` con
|
|
|
|
el siguiente contenido (yo dejo las fuentes comentadas):
|
|
|
|
el siguiente contenido (yo dejo las fuentes comentadas):
|
|
|
|
|
|
|
|
|
|
|
|
~~~~
|
|
|
|
~~~~
|
|
|
|
# MariaDB 10.4 repository list - created 2020-01-26 10:37 UTC
|
|
|
|
# MariaDB 10.5 [Stable] repository list - created UTC
|
|
|
|
# http://downloads.mariadb.org/mariadb/repositories/
|
|
|
|
# https://mariadb.org/download-test/
|
|
|
|
deb [arch=amd64,arm64,ppc64el] http://ftp.ubuntu-tw.org/mirror/mariadb/repo/10.4/ubuntu bionic main
|
|
|
|
deb [arch=amd64] http://mariadb.mirror.liteserver.nl/repo/10.5/ubuntu focal main
|
|
|
|
# deb-src http://ftp.ubuntu-tw.org/mirror/mariadb/repo/10.4/ubuntu bionic main
|
|
|
|
# deb-src http://mariadb.mirror.liteserver.nl/repo/10.5/ubuntu focal main
|
|
|
|
~~~~
|
|
|
|
~~~~
|
|
|
|
|
|
|
|
|
|
|
|
Y ya solo nos queda lo de siempre:
|
|
|
|
Y ya solo nos queda lo de siempre:
|
|
|
@ -457,6 +456,8 @@ También podemos hacer login con el usuario `root`:
|
|
|
|
sudo mariadb -u root
|
|
|
|
sudo mariadb -u root
|
|
|
|
~~~~
|
|
|
|
~~~~
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
**Ojo**, hay que hacer `sudo`, el comando `mariadb -u root` no funciona.
|
|
|
|
|
|
|
|
|
|
|
|
Y ahora aseguramos la instación con:
|
|
|
|
Y ahora aseguramos la instación con:
|
|
|
|
|
|
|
|
|
|
|
|
~~~~
|
|
|
|
~~~~
|
|
|
|