Skip to content

Commit

Permalink
DISTPG-633 Updated install instructions with renamed packages (#479)
Browse files Browse the repository at this point in the history
DISTPG-633 Updated install instructions with renamed packages

modified:   docs/apt.md
	modified:   docs/solutions/postgis-deploy.md
	modified:   docs/yum.md
  • Loading branch information
nastena1606 authored Nov 30, 2023
1 parent b28e02a commit a80f386
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions docs/solutions/postgis-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The following document provides guidelines how to install PostGIS and how to run
As other components of Percona Distribution for PostgreSQL, PostGIS is available from Percona repositories. Use the [`percona-release`](https://docs.percona.com/percona-software-repositories/installing.html) repository management tool to enable the repository.

```{.bash data-prompt="$"}
$ sudo percona-release setup ppg15
$ sudo percona-release setup ppg{{pgversion}}
```

2. Install PostGIS packages
Expand Down Expand Up @@ -59,12 +59,12 @@ The following document provides guidelines how to install PostGIS and how to run
$ sudo yum install percona-postgis33_{{pgversion}} percona-postgis33_{{pgversion}}-client
```

This installs the set of PostGIS extensions. To check what extensions are available, run the following query from the `psql` terminal:
This installs the set of PostGIS extensions. To check what extensions are available, run the following query from the `psql` terminal:

```sql
SELECT name, default_version,installed_version
FROM pg_available_extensions WHERE name LIKE 'postgis%' or name LIKE 'address%';
```
```sql
SELECT name, default_version,installed_version
FROM pg_available_extensions WHERE name LIKE 'postgis%' or name LIKE 'address%';
```

## Enable PostGIS extension

Expand Down
6 changes: 3 additions & 3 deletions docs/yum.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ $ sudo yum -y install curl
Install `pgaudit`:

```{.bash data-prompt="$"}
$ sudo yum install percona-pgaudit
$ sudo yum install percona-pgaudit{{pgversion}}
```

Install `pgBackRest`:
Expand Down Expand Up @@ -329,8 +329,8 @@ $ sudo yum -y install curl
```{.bash data-prompt="$"}
$ sudo yum install percona-pgpool-II-pg{{pgversion}}
```

Some extensions require additional setup in order to use them with Percona Distribution for PostgreSQL. For more information, refer to [Enabling extensions](enable-extensions.md).
Some extensions require additional setup in order to use them with Percona Distribution for PostgreSQL. For more information, refer to [Enabling extensions](enable-extensions.md).

### Start the service

Expand Down

0 comments on commit a80f386

Please sign in to comment.