Debian 12’de varsayılan olarak MariaDB'nin 10.x sürümü bulunur, ancak bazı uygulamalar için daha yeni bir sürüm gereklidir. Bu kılavuz, MariaDB 11.3 sürümüne güncelleme sürecini açıklar.
1. Depoyu Ekleyin
/etc/apt/sources.list.d/
apt install curl
curl -LsS https://r.mariadb.com/downloads/mariadb_repo_setup | sudo bash -s -- --mariadb-server-version="mariadb-11.3"
2. Yüklü Paketleri Güncelleyin
apt update
apt upgrade
systemctl stop mariadb
apt install --only-upgrade mariadb-server
apt autoremove
systemctl daemon-reload
systemctl start mariadb
2.1 Başlatma Hatası Durumunda, Aşağıdaki Ayarları Yorum Satırına Alın
/etc/mysql/mariadb.conf.d/
provider_bzip2.cnf
#provider_bzip2=force_plus_permanent
provider_lz4.cnf
#provider_lz4=force_plus_permanent
provider_lzma.cnf
#provider_lzma=force_plus_permanent
provider_lzo.cnf
#provider_lzo=force_plus_permanent
provider_snappy.cnf
#provider_snappy=force_plus_permanent
3. Veritabanlarını Güncelleme
service mariadb restart
mariadb-upgrade
Eğer gerekliyse şifre kullanarak:
mariadb-upgrade -u root -p
Güncelleme tamamlandı. Sürümü kontrol etmek için aşağıdaki komutları kullanabilirsiniz:
dpkg -l | grep mariadb
veya
mariadb
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 3
Server version: 11.3.2-MariaDB-1:11.3.2+maria~deb12 mariadb.org binary distribution
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
No Comments Yet