Skip to content

Commit 5fbab82

Browse files
authored
PG-1300 Added PostGIS from tarballs (#750)
modified: docs/solutions/postgis-deploy.md modified: docs/tarball.md
1 parent 55c9d0f commit 5fbab82

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

docs/solutions/postgis-deploy.md

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

67+
<<<<<<< HEAD
68+
=======
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+
74+
>>>>>>> 4059fe1b... PG-1300 Added PostGIS from tarballs
6775
## Enable PostGIS extension
6876

6977
1. 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 |
@@ -148,7 +148,7 @@ The steps below install the tarballs for OpenSSL 3.x on x86_64 architecture. Use
148148
12. Connect to `psql`
149149
150150
```{.bash data-prompt="$"}
151-
$ /opt/pgdistro/percona-postgresql{{pgversion}}/bin/psql
151+
$ /opt/pgdistro/percona-postgresql{{pgversion}}/bin/psql -d postgres
152152
```
153153
154154
??? example "Sample output"
@@ -160,7 +160,7 @@ The steps below install the tarballs for OpenSSL 3.x on x86_64 architecture. Use
160160
postgres=#
161161
```
162162
163-
### Start the components
163+
## Start the components
164164
165165
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.
166166

0 commit comments

Comments
 (0)