You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| xref:master/5.1.adoc[postgis] | 3.5.4 | Provides geospatial data support for IvorySQL, including spatial indexes, spatial functions, and geographic object storage | Geographic Information Systems (GIS), map services, location data analysis
15
16
| xref:master/5.2.adoc[pgvector] | 0.8.1 | Supports vector similarity search, can be used to store and retrieve high-dimensional vector data| AI applications, image retrieval, recommendation systems, semantic search
16
17
| xref:master/5.3.adoc[pgddl (DDL Extractor)] | 0.31 | Extracts DDL (Data Definition Language) statements from databases, facilitating version management and migration | Database version control, CI/CD integration, structure comparison and synchronization
Copy file name to clipboardExpand all lines: EN/modules/ROOT/pages/master/5.1.adoc
+34-86Lines changed: 34 additions & 86 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,108 +11,56 @@ IvorySQL is fully compatible with PostgreSQL, allowing for seamless integration
11
11
Users can select the installation method for PostGIS that best suits their development environment from the https://postgis.net/documentation/getting_started/#installing-postgis[PostGIS installation page].
12
12
13
13
=== Source Code Installation
14
-
Apart from the installation methods provided by the PostGIS community, the IvorySQL community also offers a source code installation method, with CentOS Stream 9 (x86_64) as the environment for source code installation.
14
+
In addition to the installation methods provided by the PostGIS community, the IvorySQL community also offers a source code installation method, with Ubuntu 24.04 (x86_64) as the installation environment.
15
15
16
16
[NOTE]
17
-
Please make sure that IvorySQL version 3.0 or newer is installed in the environment.
17
+
Please ensure that **IvorySQL 5.0 or above** is installed in the environment.
$ ./configure --with-pgconfig=/path/to/pg_config eg: /opt/IvorySQL-5/bin/pg_config, if ivorysql installation directory is /opt/IvorySQL-5.
44
+
$ make
45
+
$ sudo make install
46
+
----
99
47
[TIP]
100
48
If configure reports PGXS error, please change --with-pgconfig parameter value and confirm the parameter value based on the installation path of IvorySQL in the environment.
101
49
102
-
== Create the extension and verify the PostGIS version.
103
-
104
-
Connect to the database with psql and execute the following command:
50
+
== Create Extension and Verify PostGIS Version
105
51
106
-
```
52
+
Connect to the database with psql and execute the following commands:
53
+
[literal]
54
+
----
107
55
ivorysql=# CREATE extension postgis;
108
56
CREATE EXTENSION
109
57
110
58
ivorysql=# SELECT * FROM pg_available_extensions WHERE name = 'postgis';
111
59
name | default_version | installed_version | comment
0 commit comments