From 315032f88c81dde4c04e917120587a0cdff51a42 Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Wed, 11 Jan 2023 12:22:59 -0300 Subject: [PATCH] Fix MariaDB and MySQL names capitalization --- modules/ROOT/nav.adoc | 2 +- modules/ROOT/pages/_partials/proc_expose-outside-mysql.adoc | 6 +++--- .../pages/_partials/proc_installing-mariadb-module.adoc | 2 +- .../_partials/proc_installing-mysql-from-container.adoc | 4 ++-- .../_partials/proc_installing-mysql-from-fedora-repo.adoc | 6 +++--- .../pages/_partials/proc_installing-mysql-from-oracle.adoc | 2 +- modules/ROOT/pages/manage-sql-server.adoc | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/modules/ROOT/nav.adoc b/modules/ROOT/nav.adoc index 73beca3..85e44bc 100644 --- a/modules/ROOT/nav.adoc +++ b/modules/ROOT/nav.adoc @@ -114,7 +114,7 @@ * Databases ** xref:postgresql.adoc[PostgreSQL] -** xref:installing-mysql-mariadb.adoc[Installing, Configuring and Troubleshooting MySql/MariaDB] +** xref:installing-mysql-mariadb.adoc[Installing, Configuring and Troubleshooting MySQL/MariaDB] ** xref:manage-sql-server.adoc[How to Manage your SQL Server from GUI] * Printing and scanning diff --git a/modules/ROOT/pages/_partials/proc_expose-outside-mysql.adoc b/modules/ROOT/pages/_partials/proc_expose-outside-mysql.adoc index 196b8f6..7ad3c36 100644 --- a/modules/ROOT/pages/_partials/proc_expose-outside-mysql.adoc +++ b/modules/ROOT/pages/_partials/proc_expose-outside-mysql.adoc @@ -1,4 +1,4 @@ -= How To Allow Remote Access MYSQL/MariaDB/MYSQL Community += How To Allow Remote Access MySQL/MariaDB/MYSQL Community == Add New Rule to Firewalld @@ -24,8 +24,8 @@ systemctl restart firewalld.service Configuration files: -* MySql -> `/etc/my.cnf/` -* MySql Community -> `/etc/my.cnf.d/community-mysql-server.cnf` +* MySQL -> `/etc/my.cnf/` +* MySQL Community -> `/etc/my.cnf.d/community-mysql-server.cnf` * MariaDB -> `/etc/my.conf` NOTE: you can ensure that with the following command `rpm -qc [package]`. diff --git a/modules/ROOT/pages/_partials/proc_installing-mariadb-module.adoc b/modules/ROOT/pages/_partials/proc_installing-mariadb-module.adoc index 721976a..8cd503c 100644 --- a/modules/ROOT/pages/_partials/proc_installing-mariadb-module.adoc +++ b/modules/ROOT/pages/_partials/proc_installing-mariadb-module.adoc @@ -18,7 +18,7 @@ At this point you can verify that the available RPM provides the 10.4 verison of $ dnf list mariadb-server ---- -To install mariadb server: +To install MariaDB server: ---- $ sudo dnf module install mariadb/server diff --git a/modules/ROOT/pages/_partials/proc_installing-mysql-from-container.adoc b/modules/ROOT/pages/_partials/proc_installing-mysql-from-container.adoc index 0c835cf..8b719ff 100644 --- a/modules/ROOT/pages/_partials/proc_installing-mysql-from-container.adoc +++ b/modules/ROOT/pages/_partials/proc_installing-mysql-from-container.adoc @@ -13,7 +13,7 @@ podman pull {mysql/mysql-server|mariadb/server} podman logs {mysql|mariadb} ---- -== Starting a MYSQL Server Instance +== Starting a MySQL Server Instance The command's below contain the random password generated for the root user; @@ -47,7 +47,7 @@ you must reset the server root password by issuing this statement: mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'password'; ---- -== Connecting to Mariadb Server from within the Container +== Connecting to MariaDB Server from within the Container ---- podman exec -it mariadb bash diff --git a/modules/ROOT/pages/_partials/proc_installing-mysql-from-fedora-repo.adoc b/modules/ROOT/pages/_partials/proc_installing-mysql-from-fedora-repo.adoc index 02ddacf..4ac7c1e 100644 --- a/modules/ROOT/pages/_partials/proc_installing-mysql-from-fedora-repo.adoc +++ b/modules/ROOT/pages/_partials/proc_installing-mysql-from-fedora-repo.adoc @@ -1,13 +1,13 @@ [id='install-from-fedora-main-repo'] = Install from Fedora Main Repo -The community provide a MySql package in the main repo. +The community provide a MySQL package in the main repo. ---- sudo dnf install {community-mysql-server|mariadb-server} ---- -== Configuring MySql/MariaDB +== Configuring MySQL/MariaDB Enable the service at boot and start: @@ -36,7 +36,7 @@ At this point you can verify that the available RPM provides the 10.4 verison of dnf list mariadb-server ---- -To install mariadb server: +To install MariaDB server: ---- sudo dnf module install mariadb/server diff --git a/modules/ROOT/pages/_partials/proc_installing-mysql-from-oracle.adoc b/modules/ROOT/pages/_partials/proc_installing-mysql-from-oracle.adoc index c636357..87f34df 100644 --- a/modules/ROOT/pages/_partials/proc_installing-mysql-from-oracle.adoc +++ b/modules/ROOT/pages/_partials/proc_installing-mysql-from-oracle.adoc @@ -43,7 +43,7 @@ sudo mysql_secure_installation Then, answer the security questions as you prefer. or just say **yes** to all of them. -== Using MYSQL +== Using MySQL ---- sudo mysql -u root -p diff --git a/modules/ROOT/pages/manage-sql-server.adoc b/modules/ROOT/pages/manage-sql-server.adoc index 2d35f89..adff476 100644 --- a/modules/ROOT/pages/manage-sql-server.adoc +++ b/modules/ROOT/pages/manage-sql-server.adoc @@ -2,7 +2,7 @@ For database management, it is more user-friendly to use graphical tools: -- MySQL/Mariadb: +- MySQL/MariaDB: ** phpMyAdmin.noarch : A web interface for MySQL and MariaDB