Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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
Expand Down
Loading