From 100c42bf4ad1d87bdda8780e78d4b497a916e781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serge=20Crois=C3=A9?= Date: Thu, 4 Jul 2024 15:45:09 +0200 Subject: [PATCH] Update 04-databases-servers.md (grammar, spelling, ...) - open-source as an adjective - RDBMS according to https://en.wiktionary.org/wiki/RDBMS - include instead of includes --- docs/books/web_services/04-databases-servers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/books/web_services/04-databases-servers.md b/docs/books/web_services/04-databases-servers.md index 47100436e4..44785cfabc 100644 --- a/docs/books/web_services/04-databases-servers.md +++ b/docs/books/web_services/04-databases-servers.md @@ -9,7 +9,7 @@ tags: title: Part 4. Databases servers --- -MySQL, MariaDB and PostgreSQL are open source RDBMS (Relational DataBase Managed System). +MySQL, MariaDB and PostgreSQL are open-source RDBMS (Relational DataBase Management System). ## MariaDB and MySQL @@ -162,7 +162,7 @@ As you can see, data is in the `/var/lib/mysql` per default. This folder can req ### Security -MariaDB and Mysql includes a script to help you secure your server. It remove for example remote root logins and sample users, the less-secure default options. +MariaDB and Mysql include a script to help you secure your server. It remove for example remote root logins and sample users, the less-secure default options. Use the `mariadb-secure-installation` and secure your server: @@ -181,7 +181,7 @@ The script will prompt you to provide a password for your root user. lrwxrwxrwx. 1 root root 27 Oct 12 2023 /usr/bin/mysql_secure_installation -> mariadb-secure-installation ``` -If providing a password each time you have to use mariadb's commands is a problem, you can set up a `~/.my.cnf` file with your credentials, that will be use per default by mariadb to connect to your server. +If providing a password each time you have to use mariadb's commands is a problem, you can set up a `~/.my.cnf` file with your credentials, that will be used per default by mariadb to connect to your server. ```bash [client]