Skip to content

Commit 991515c

Browse files
authored
PG-1300 Added PostGIS from tarballs (#749)
modified: docs/solutions/postgis-deploy.md modified: docs/tarball.md
1 parent 468cc99 commit 991515c

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

docs/solutions/postgis-deploy.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ The following document provides guidelines how to install PostGIS and how to run
6666
FROM pg_available_extensions WHERE name LIKE 'postgis%' or name LIKE 'address%';
6767
```
6868

69+
=== ":octicons-download-16: From tarballs"
70+
71+
PostGIS is included into binary tarball and is a part of the `percona-postgresql{{pgversion}}` binary. Use the [install from tarballs](../tarball/.md) tutorial to install it.
72+
73+
6974
## Enable PostGIS extension
7075

7176
3. Create a database and a schema for this database to store your data. A schema is a container that logically segments objects (tables, functions, views, and so on) for better management. Run the following commands from the `psql` terminal:

docs/tarball.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The tarballs include the following components:
1919

2020
| Component | Description |
2121
|-----------|-------------|
22-
| percona-postgresql{{pgversion}}| The latest version of PostgreSQL server and the following extensions: <br> - `pgaudit` <br> - `pgAudit_set_user` <br> - `pg_repack` <br> - `pg_stat_monitor` <br> - `pg_gather` <br> - `wal2json` <br> - `pgvector` <br> - the set of [contrib extensions](contrib.md)|
22+
| percona-postgresql{{pgversion}}| The latest version of PostgreSQL server and the following extensions: <br> - `pgaudit` <br> - `pgAudit_set_user` <br> - `pg_repack` <br> - `pg_stat_monitor` <br> - `pg_gather` <br> - `wal2json` <br> - `postGIS` <br> - the set of [contrib extensions](contrib.md)|
2323
| percona-haproxy | A high-availability solution and load-balancing solution |
2424
| percona-patroni | A high-availability solution for PostgreSQL |
2525
| percona-pgbackrest| A backup and restore tool |
@@ -147,7 +147,7 @@ The steps below install the tarballs for OpenSSL 3.x on x86_64 architecture. Use
147147
12. Connect to `psql`
148148
149149
```{.bash data-prompt="$"}
150-
$ /opt/pgdistro/percona-postgresql{{pgversion}}/bin/psql
150+
$ /opt/pgdistro/percona-postgresql{{pgversion}}/bin/psql -d postgres
151151
```
152152
153153
??? example "Sample output"
@@ -159,7 +159,7 @@ The steps below install the tarballs for OpenSSL 3.x on x86_64 architecture. Use
159159
postgres=#
160160
```
161161
162-
### Start the components
162+
## Start the components
163163
164164
After you unpacked the tarball and added the location of the components' binaries to the `$PATH` variable, the components are available for use. You can invoke a component by running its command-line tool.
165165

0 commit comments

Comments
 (0)