Install Mariadb 10.4 di CentOS 7

circle-exclamation

Buat MariaDB Yum Repository

Buat file repository

vi /etc/yum.repos.d/MariaDB.repo

Tambahkan baris berikut ke dalam MariaDB.repo di terminal anda

[mariadb]
name = MariaDB
baseurl = https://download.nus.edu.sg/mirror/mariadb/yum/10.4/centos/$releasever/$basearch
module_hotfixes = 1
gpgkey = https://download.nus.edu.sg/mirror/mariadb/yum/RPM-GPG-KEY-MariaDB
gpgcheck = 1

Atau download file MariaDB.repoarrow-up-right dan copy paste file tersebut ke directory /etc/yum.repos.d

Install MariaDB di CentOS 7

Jalankan perintah berikut untuk memulai install MariaDB

sudo yum install MariaDB-server MariaDB-client

Setelah install selesai, start dan enable service database server

Secure MariaDB CentOS 7

secure mariadb di centos 7

Menjalankan MariaDB di CentOS 7

Jalankan service MySQL

Buat User Remote

Masuk ke dalam shell MariaDB, dengan perintah berikut

Selanjutnya buat user remote

Last updated