diff --git a/README.md b/README.md index 98086c2..e3c0118 100644 --- a/README.md +++ b/README.md @@ -45,5 +45,18 @@ reboot nmtui ``` +## 2. Mariadb +Files: None + +Steps: + +```bash +dnf install mariadb mariadb-server +sctl enable mariadb +sctl start mariadb +mysql_secure_installation +mysql -p +GRANT ALL PRIVILEGES ON *.* TO 'root'@'...ip...' IDENTIFIED BY '...password...' WITH GRANT OPTION; +```