Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

042-database-servers-mysql.md #2252

Merged
merged 2 commits into from
Aug 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/books/web_services/042-database-servers-mysql.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
author: Antoine Le Morvan
contributors: Steven Spencer
contributors: Steven Spencer, Ganna Zhyrnova
title: Part 4.2 Database Servers MySQL
---

Expand All @@ -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**

Expand All @@ -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 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.

Expand Down Expand Up @@ -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?

Expand Down
Loading