Skip to content

Commit 0559283

Browse files
authored
Merge pull request #6589 from yuki-tei/patch-9
Update configuring.mdx
2 parents 11da705 + 52c2b1a commit 0559283

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
title: "Installing EDB SPL Check"
3+
---
4+
5+
The syntax to install the package is:
6+
7+
```shell
8+
sudo <package-manager> -y install edb-<postgres><postgres_version>-spl-check
9+
```
10+
11+
Where:
12+
- `<package-manager>` is the package manager used with your operating system:
13+
14+
| Package manager | Operating system |
15+
| --------------- | -------------------------------- |
16+
| dnf | RHEL 8/9 and derivatives |
17+
| yum | RHEL 7 and derivatives, CentOS 7 |
18+
| zypper | SLES |
19+
| apt-get | Debian and derivatives |
20+
21+
- `<postgres>` is the distribution of Postgres you're using:
22+
23+
| Postgres distribution | Value |
24+
| ---------------------------- | ---------- |
25+
| PostgreSQL | pg |
26+
| EDB Postgres Advanced Server | as |
27+
| EDB Postgres Extended Server | postgresextended |
28+
29+
- `<postgres_version>` is the version of Postgres you're using.
30+
31+
For example, to install EDB SPL Check for EDB Postgres Advanced Server 17 on a RHEL 8 platform:
32+
33+
```shell
34+
sudo dnf -y install edb-as17-spl-check
35+
```

0 commit comments

Comments
 (0)