From 389cb0eaa343e7795b9a9b3ac67fc8b56637d271 Mon Sep 17 00:00:00 2001 From: Sanjeev Jyothikrishnan E Date: Sun, 3 Sep 2023 11:13:10 +0530 Subject: [PATCH] Update README.md added changes with respect to starting mariadb service using systemctl in section 'Install MariaDB' removed(commented): sudo service mariadb start added: sudo systemctl start mariadb --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 99e6c6f..302e0d3 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,8 @@ sudo systemctl enable firewalld ``` sudo yum install -y mariadb-server sudo vi /etc/my.cnf -sudo service mariadb start +#sudo service mariadb start --not working +sudo systemctl start mariadb --added this sudo systemctl enable mariadb ```