Membangun Web Server CentOS 7 #3 : Installasi MariaDB 10.10
Login pada sistem CentOS.
Install epel repository terlebih dahulu.
yum install epel-release
yum repolist
yum --disablerepo="*" --enablerepo="epel" list available
Lakukan update pasca installasi epel.
Baca Lainnya :- Membuat Zone dan Mengaktifkan Service ataupun Port di Firewalld CentOS 7
- Membangun Web Server CentOS 7 #2 : Installasi Apache
- Mengatasi Not Found Pada CodeIgniter Di Server Apache
- Cara Reset Password Root CentOS 7
- Membangun Web Server CentOS 7 #1 : Installasi CentOS 7
yum update
Installasi MariaDB 10.10.
yum install wget
wget https://downloads.mariadb.com/MariaDB/mariadb_repo_setup
chmod +x mariadb_repo_setup
sudo ./mariadb_repo_setup
yum install MariaDB-server
systemctl enable mariadb
systemctl start mariadb
Setelah installasi MariaDB selesai, lakukan konfigurasi keamanan pada MariaDB.
mariadb-secure-installation
Ikuti langkahnya dan pilih proses seperti di bawah ini.
Enter current passwor for root (enter for none) : #isikan dengan password root dari CentOS
Switch to unix_socket authentication [Y/n] #pilih n
Change the root password? [Y/n] #pilih Y untuk merubah password mariadb
Remove anonymous users? [Y/n] #pilih Y
Disallow root login remotely? [Y/n] #pilih n
Remove test database and access to it? [Y/n] #pilih Y
Reload privileges tables now? [Y/n] #pilih Y
Cek versi MariaDB dengan perintah berikut
mysql -v
Atau dengan login ke MariaDB.
mysql -u root -p
Sekian artikel singkat tentang Membangun Web Server CentOS 7 #3 : Installasi MariaDB 10.10 semoga bermanfaat untuk pembaca semua.