From 10d7fc6e9dc9bd57e8f6680f422dc16f87eefc07 Mon Sep 17 00:00:00 2001 From: Ganna Zhyrnova <112796922+gannazhyrnova@users.noreply.github.com> Date: Mon, 12 Aug 2024 12:36:54 +0300 Subject: [PATCH 1/2] 042-database-servers-mysql.md Grammar Check --- .../books/web_services/042-database-servers-mysql.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/books/web_services/042-database-servers-mysql.md b/docs/books/web_services/042-database-servers-mysql.md index e07f821ca7..efcd60ed47 100644 --- a/docs/books/web_services/042-database-servers-mysql.md +++ b/docs/books/web_services/042-database-servers-mysql.md @@ -1,6 +1,6 @@ --- author: Antoine Le Morvan -contributors: Steven Spencer +contributors: Steven Spencer, Ganna Zhyrnova title: Part 4.2 Database Servers MySQL --- @@ -14,9 +14,9 @@ In this chapter, you will learn how to install MySQL server. --- -**Objectives**: In this chapter, you will learn how to: +**Objectives**: You will learn how to: -:heavy_check_mark: install, configure and secure MariaDB server and MySQL server; +:heavy_check_mark: install, configure, and secure the MariaDB server and MySQL server; :checkered_flag: **RDBMS**, **database**, **MariaDB**, **MySQL** @@ -43,14 +43,14 @@ and start the `mysqld` service: sudo systemctl enable mysqld.service --now ``` -You can now follow the previous chapter replacing the following commands: +You can now follow the previous chapter by replacing the following commands: * `mariadb` => `mysql` * `mariadb-admin` => `mysql_admin` * `mariadb-dump` => `mysql_dump` * `mariadb-secure-installation` => `mysql_secure_installation` -To install the latest version of mysql-server, you will have to install a different repository. +You will have to install a different repository to install the latest version of MySQL server. Visit this page: https://dev.mysql.com/downloads/repo/yum/ and copy the repository URL. @@ -123,7 +123,7 @@ Do not forget to re-enable and restart your server: sudo systemctl enable mysqld.service --now ``` -### Check your Knowledge MySQL +### Check your Knowledge of MySQL :heavy_check_mark: Which MySQL database version is installed by default? From a3716cb766ec5fe4f9fad137df52056075235b70 Mon Sep 17 00:00:00 2001 From: sspencerwire Date: Mon, 12 Aug 2024 12:27:17 -0500 Subject: [PATCH 2/2] Update docs/books/web_services/042-database-servers-mysql.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Serge Croisé --- docs/books/web_services/042-database-servers-mysql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/books/web_services/042-database-servers-mysql.md b/docs/books/web_services/042-database-servers-mysql.md index efcd60ed47..0d097aef5d 100644 --- a/docs/books/web_services/042-database-servers-mysql.md +++ b/docs/books/web_services/042-database-servers-mysql.md @@ -50,7 +50,7 @@ You can now follow the previous chapter by replacing the following commands: * `mariadb-dump` => `mysql_dump` * `mariadb-secure-installation` => `mysql_secure_installation` -You will have to install a different repository to install the latest version of MySQL server. +You will have to use a different repository to install the latest version of MySQL server. Visit this page: https://dev.mysql.com/downloads/repo/yum/ and copy the repository URL.