From ccdd2dc9ad0a345b27b21194f6994785db56287c Mon Sep 17 00:00:00 2001 From: Matej Rada <69515690+predyy@users.noreply.github.com> Date: Thu, 20 Mar 2025 12:43:09 +0100 Subject: [PATCH] Updated MySQL to PostgreSQL to reflect the package that is actually installed. --- .../04-setting-up-a-local-postgresql-database.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/04-postgresql/04-setting-up-a-local-postgresql-database.mdx b/content/04-postgresql/04-setting-up-a-local-postgresql-database.mdx index 7a40058f..a1664a32 100644 --- a/content/04-postgresql/04-setting-up-a-local-postgresql-database.mdx +++ b/content/04-postgresql/04-setting-up-a-local-postgresql-database.mdx @@ -330,7 +330,7 @@ You can either choose to use the version of PostgreSQL available in your distrib Both CentOS and Fedora provide versions of PostgreSQL server as packages within their default repositories. The PostgreSQL version may be older than those found on the PostgreSQL website, but this is the simplest way to install on these distributions. -To install PostgreSQL server, use your distribution's package manager to install the `mysql-server` package: +To install PostgreSQL server, use your distribution's package manager to install the `postgresql-server` package: For **CentOS** use the `yum` package manager: @@ -344,7 +344,7 @@ For **Fedora** use the `dnf` package manager: sudo dnf install postgresql-server ``` -Once the MySQL package is installed, initialize the database by typing: +Once the PostgreSQL package is installed, initialize the database by typing: ``` sudo postgresql-setup initdb