Skip to content

Commit 2662d4f

Browse files
Merge pull request #5942 from EnterpriseDB/release/2024-08-14a
Release: 2024-08-14a
2 parents b4c4e86 + aa167de commit 2662d4f

File tree

18 files changed

+402
-22
lines changed

18 files changed

+402
-22
lines changed

install_template/config.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ products:
6969
- name: Debian 11
7070
arch: x86_64
7171
supported versions: [55]
72+
- name: Debian 12
73+
arch: x86_64
74+
supported versions: [55]
75+
- name: Debian 12
76+
arch: arm64
77+
supported versions: [55]
7278
- name: RHEL 8
7379
arch: ppc64le
7480
supported versions: [55]
@@ -421,6 +427,12 @@ products:
421427
- name: Debian 11
422428
arch: x86_64
423429
supported versions: [41]
430+
- name: Debian 12
431+
arch: x86_64
432+
supported versions: [41]
433+
- name: Debian 12
434+
arch: arm64
435+
supported versions: [41]
424436
- name: Ubuntu 20.04
425437
arch: x86_64
426438
supported versions: [41]
@@ -832,6 +844,12 @@ products:
832844
- name: Debian 11
833845
arch: x86_64
834846
supported versions: [7]
847+
- name: Debian 12
848+
arch: x86_64
849+
supported versions: [7]
850+
- name: Debian 12
851+
arch: arm64
852+
supported versions: [7]
835853
- name: Ubuntu 22.04
836854
arch: x86_64
837855
supported versions: [7]

product_docs/docs/edb_plus/41/installing/index.mdx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ redirects:
1313
navigation:
1414
- linux_x86_64
1515
- linux_ppc64le
16+
- linux_arm64
1617
- windows
1718
- configuring_linux_installation
1819
---
@@ -39,7 +40,7 @@ Select a link to access the applicable installation instructions:
3940

4041
- [Ubuntu 22.04](linux_x86_64/edbplus_ubuntu_22), [Ubuntu 20.04](linux_x86_64/edbplus_ubuntu_20)
4142

42-
- [Debian 11](linux_x86_64/edbplus_debian_11)
43+
- [Debian 12](linux_x86_64/edbplus_debian_12), [Debian 11](linux_x86_64/edbplus_debian_11)
4344

4445
## Linux [IBM Power (ppc64le)](linux_ppc64le)
4546

@@ -51,6 +52,12 @@ Select a link to access the applicable installation instructions:
5152

5253
- [SLES 15](linux_ppc64le/edbplus_sles_15), [SLES 12](linux_ppc64le/edbplus_sles_12)
5354

55+
## Linux [AArch64 (ARM64)](linux_arm64)
56+
57+
### Debian and derivatives
58+
59+
- [Debian 12](linux_arm64/edbplus_debian_12)
60+
5461
## Windows
5562

5663
- [Windows Server 2019, 2022, and Windows 11](windows)
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
navTitle: Debian 12
3+
title: Installing EDB*Plus on Debian 12 arm64
4+
# This topic is generated from templates. If you have feedback on it, instead of
5+
# editing the page and creating a pull request, please enter a GitHub issue and
6+
# the documentation team will update the templates accordingly.
7+
8+
redirects:
9+
- /edb_plus/41/03_installing_edb_plus/install_on_linux/arm64/edbplus_deb12_arm
10+
---
11+
12+
## Prerequisites
13+
14+
Before you begin the installation process:
15+
16+
- Set up the EDB repository.
17+
18+
Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step.
19+
20+
To determine if your repository exists, enter this command:
21+
22+
`apt-cache search enterprisedb`
23+
24+
If no output is generated, the repository isn't installed.
25+
26+
To set up the EDB repository:
27+
28+
1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads).
29+
30+
1. Select the button that provides access to the EDB repository.
31+
1. Select the platform and software that you want to download.
32+
33+
1. Follow the instructions for setting up the EDB repository.
34+
35+
## Install the package
36+
37+
```shell
38+
sudo apt-get -y install edb-edbplus
39+
```
40+
41+
## Initial configuration
42+
43+
After performing a Linux installation of EDB\*Plus, you must set the values of environment variables that allow EDB\*Plus to locate your Java installation:
44+
45+
```shell
46+
export JAVA_HOME=<path_to_java>
47+
export PATH=<path_to_java>/bin:$PATH
48+
```
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: "Installing EDB*Plus on Linux AArch64 (ARM64)"
3+
navTitle: "On Linux ARM64"
4+
5+
navigation:
6+
- edbplus_debian_12
7+
---
8+
9+
Operating system-specific install instructions are described in the corresponding documentation:
10+
11+
### Debian and derivatives
12+
13+
- [Debian 12](edbplus_debian_12)
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
navTitle: Debian 12
3+
title: Installing EDB*Plus on Debian 12 x86_64
4+
# This topic is generated from templates. If you have feedback on it, instead of
5+
# editing the page and creating a pull request, please enter a GitHub issue and
6+
# the documentation team will update the templates accordingly.
7+
8+
redirects:
9+
- /edb_plus/41/03_installing_edb_plus/install_on_linux/x86_amd64/edbplus_deb12_x86
10+
---
11+
12+
## Prerequisites
13+
14+
Before you begin the installation process:
15+
16+
- Set up the EDB repository.
17+
18+
Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step.
19+
20+
To determine if your repository exists, enter this command:
21+
22+
`apt-cache search enterprisedb`
23+
24+
If no output is generated, the repository isn't installed.
25+
26+
To set up the EDB repository:
27+
28+
1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads).
29+
30+
1. Select the button that provides access to the EDB repository.
31+
1. Select the platform and software that you want to download.
32+
33+
1. Follow the instructions for setting up the EDB repository.
34+
35+
## Install the package
36+
37+
```shell
38+
sudo apt-get -y install edb-edbplus
39+
```
40+
41+
## Initial configuration
42+
43+
After performing a Linux installation of EDB\*Plus, you must set the values of environment variables that allow EDB\*Plus to locate your Java installation:
44+
45+
```shell
46+
export JAVA_HOME=<path_to_java>
47+
export PATH=<path_to_java>/bin:$PATH
48+
```

product_docs/docs/edb_plus/41/installing/linux_x86_64/index.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ navigation:
1818
- edbplus_sles_12
1919
- edbplus_ubuntu_22
2020
- edbplus_ubuntu_20
21+
- edbplus_debian_12
2122
- edbplus_debian_11
2223
---
2324

@@ -53,4 +54,6 @@ Operating system-specific install instructions are described in the correspondin
5354

5455
- [Ubuntu 20.04](edbplus_ubuntu_20)
5556

57+
- [Debian 12](edbplus_debian_12)
58+
5659
- [Debian 11](edbplus_debian_11)

product_docs/docs/eprs/7/installing/index.mdx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ redirects:
1414

1515
navigation:
1616
- linux_x86_64
17+
- linux_arm64
1718
- linux_ppc64le
1819
- windows
1920
- installing_jdbc_driver
@@ -44,7 +45,7 @@ Select a link to access the applicable installation instructions:
4445

4546
- [Ubuntu 22.04](linux_x86_64/eprs_ubuntu_22), [Ubuntu 20.04](linux_x86_64/eprs_ubuntu_20)
4647

47-
- [Debian 11](linux_x86_64/eprs_debian_11)
48+
- [Debian 12](linux_x86_64/eprs_debian_12), [Debian 11](linux_x86_64/eprs_debian_11)
4849

4950
## Linux [IBM Power (ppc64le)](linux_ppc64le)
5051

@@ -56,6 +57,12 @@ Select a link to access the applicable installation instructions:
5657

5758
- [SLES 15](linux_ppc64le/eprs_sles_15), [SLES 12](linux_ppc64le/eprs_sles_12)
5859

60+
## Linux [AArch64 (ARM64)](linux_arm64)
61+
62+
### Debian and derivatives
63+
64+
- [Debian 12](linux_arm64/eprs_debian_12)
65+
5966
## Windows
6067

6168
- [Windows Server 2022](windows)
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
navTitle: Debian 12
3+
title: Installing Replication Server on Debian 12 arm64
4+
# This topic is generated from templates. If you have feedback on it, instead of
5+
# editing the page and creating a pull request, please enter a GitHub issue and
6+
# the documentation team will update the templates accordingly.
7+
8+
redirects:
9+
- /eprs/7/03_installation/03_installing_rpm_package/arm64/eprs_deb12_arm
10+
---
11+
12+
## Prerequisites
13+
14+
Before you begin the installation process:
15+
16+
- Set up the EDB repository.
17+
18+
Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step.
19+
20+
To determine if your repository exists, enter this command:
21+
22+
`apt-cache search enterprisedb`
23+
24+
If no output is generated, the repository isn't installed.
25+
26+
To set up the EDB repository:
27+
28+
1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads).
29+
30+
1. Select the button that provides access to the EDB repository.
31+
1. Select the platform and software that you want to download.
32+
33+
1. Follow the instructions for setting up the EDB repository.
34+
35+
## Install the package
36+
37+
You can install all Replication Server components with a single install command, or you may choose to install selected, individual components by installing only those particular packages.
38+
39+
To install all Replication Server components:
40+
41+
```shell
42+
sudo apt-get -y install edb-xdb
43+
```
44+
45+
To install an individual component:
46+
47+
```shell
48+
sudo apt-get -y install <package_name>
49+
```
50+
51+
Where `<package_name>` is:
52+
53+
| Package name | Component |
54+
| -------------------- | --------------------------------------------------------------------- |
55+
| `edb-xdb-console` | Replication console and the Replication Server command line interface |
56+
| `edb-xdb-publisher` | Publication server |
57+
| `edb-xdb-subscriber` | Subscription server |
58+
59+
## Initial configuration
60+
61+
Before using Replication Server, you must download and install JDBC drivers. See [Installing a JDBC driver](/eprs/7/installing/installing_jdbc_driver) for details.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: "Installing Replication Server on Linux AArch64 (ARM64)"
3+
navTitle: "On Linux ARM64"
4+
5+
# This topic is generated from templates. If you have feedback on it, instead of
6+
# editing the page and creating a pull request, please enter a GitHub issue and
7+
# the documentation team will update the templates accordingly.
8+
# Leaf template: products/replication-server/arm64_index.njk
9+
10+
redirects:
11+
- /eprs/latest/03_installation/03_installing_rpm_package/x86_amd64/
12+
13+
navigation:
14+
- eprs_debian_12
15+
---
16+
17+
Operating system-specific install instructions are described in the corresponding documentation:
18+
19+
### Debian and derivatives
20+
21+
- [Debian 12](eprs_debian_12)
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
navTitle: Debian 12
3+
title: Installing Replication Server on Debian 12 x86_64
4+
# This topic is generated from templates. If you have feedback on it, instead of
5+
# editing the page and creating a pull request, please enter a GitHub issue and
6+
# the documentation team will update the templates accordingly.
7+
8+
redirects:
9+
- /eprs/7/03_installation/03_installing_rpm_package/x86_amd64/eprs_deb12_x86
10+
---
11+
12+
## Prerequisites
13+
14+
Before you begin the installation process:
15+
16+
- Set up the EDB repository.
17+
18+
Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step.
19+
20+
To determine if your repository exists, enter this command:
21+
22+
`apt-cache search enterprisedb`
23+
24+
If no output is generated, the repository isn't installed.
25+
26+
To set up the EDB repository:
27+
28+
1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads).
29+
30+
1. Select the button that provides access to the EDB repository.
31+
1. Select the platform and software that you want to download.
32+
33+
1. Follow the instructions for setting up the EDB repository.
34+
35+
## Install the package
36+
37+
You can install all Replication Server components with a single install command, or you may choose to install selected, individual components by installing only those particular packages.
38+
39+
To install all Replication Server components:
40+
41+
```shell
42+
sudo apt-get -y install edb-xdb
43+
```
44+
45+
To install an individual component:
46+
47+
```shell
48+
sudo apt-get -y install <package_name>
49+
```
50+
51+
Where `<package_name>` is:
52+
53+
| Package name | Component |
54+
| -------------------- | --------------------------------------------------------------------- |
55+
| `edb-xdb-console` | Replication console and the Replication Server command line interface |
56+
| `edb-xdb-publisher` | Publication server |
57+
| `edb-xdb-subscriber` | Subscription server |
58+
59+
## Initial configuration
60+
61+
Before using Replication Server, you must download and install JDBC drivers. See [Installing a JDBC driver](/eprs/7/installing/installing_jdbc_driver) for details.

product_docs/docs/eprs/7/installing/linux_x86_64/index.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ navigation:
1919
- eprs_sles_12
2020
- eprs_ubuntu_22
2121
- eprs_ubuntu_20
22+
- eprs_debian_12
2223
- eprs_debian_11
2324
---
2425

@@ -54,4 +55,6 @@ Operating system-specific install instructions are described in the correspondin
5455

5556
- [Ubuntu 20.04](eprs_ubuntu_20)
5657

58+
- [Debian 12](eprs_debian_12)
59+
5760
- [Debian 11](eprs_debian_11)

0 commit comments

Comments
 (0)