Skip to content

Commit

Permalink
Merge pull request #5942 from EnterpriseDB/release/2024-08-14a
Browse files Browse the repository at this point in the history
Release: 2024-08-14a
  • Loading branch information
gvasquezvargas authored Aug 14, 2024
2 parents b4c4e86 + aa167de commit 2662d4f
Show file tree
Hide file tree
Showing 18 changed files with 402 additions and 22 deletions.
18 changes: 18 additions & 0 deletions install_template/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ products:
- name: Debian 11
arch: x86_64
supported versions: [55]
- name: Debian 12
arch: x86_64
supported versions: [55]
- name: Debian 12
arch: arm64
supported versions: [55]
- name: RHEL 8
arch: ppc64le
supported versions: [55]
Expand Down Expand Up @@ -421,6 +427,12 @@ products:
- name: Debian 11
arch: x86_64
supported versions: [41]
- name: Debian 12
arch: x86_64
supported versions: [41]
- name: Debian 12
arch: arm64
supported versions: [41]
- name: Ubuntu 20.04
arch: x86_64
supported versions: [41]
Expand Down Expand Up @@ -832,6 +844,12 @@ products:
- name: Debian 11
arch: x86_64
supported versions: [7]
- name: Debian 12
arch: x86_64
supported versions: [7]
- name: Debian 12
arch: arm64
supported versions: [7]
- name: Ubuntu 22.04
arch: x86_64
supported versions: [7]
Expand Down
9 changes: 8 additions & 1 deletion product_docs/docs/edb_plus/41/installing/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ redirects:
navigation:
- linux_x86_64
- linux_ppc64le
- linux_arm64
- windows
- configuring_linux_installation
---
Expand All @@ -39,7 +40,7 @@ Select a link to access the applicable installation instructions:

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

- [Debian 11](linux_x86_64/edbplus_debian_11)
- [Debian 12](linux_x86_64/edbplus_debian_12), [Debian 11](linux_x86_64/edbplus_debian_11)

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

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

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

## Linux [AArch64 (ARM64)](linux_arm64)

### Debian and derivatives

- [Debian 12](linux_arm64/edbplus_debian_12)

## Windows

- [Windows Server 2019, 2022, and Windows 11](windows)
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
navTitle: Debian 12
title: Installing EDB*Plus on Debian 12 arm64
# This topic is generated from templates. If you have feedback on it, instead of
# editing the page and creating a pull request, please enter a GitHub issue and
# the documentation team will update the templates accordingly.

redirects:
- /edb_plus/41/03_installing_edb_plus/install_on_linux/arm64/edbplus_deb12_arm
---

## Prerequisites

Before you begin the installation process:

- Set up the EDB repository.

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.

To determine if your repository exists, enter this command:

`apt-cache search enterprisedb`

If no output is generated, the repository isn't installed.

To set up the EDB repository:

1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads).

1. Select the button that provides access to the EDB repository.
1. Select the platform and software that you want to download.

1. Follow the instructions for setting up the EDB repository.

## Install the package

```shell
sudo apt-get -y install edb-edbplus
```

## Initial configuration

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:

```shell
export JAVA_HOME=<path_to_java>
export PATH=<path_to_java>/bin:$PATH
```
13 changes: 13 additions & 0 deletions product_docs/docs/edb_plus/41/installing/linux_arm64/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: "Installing EDB*Plus on Linux AArch64 (ARM64)"
navTitle: "On Linux ARM64"

navigation:
- edbplus_debian_12
---

Operating system-specific install instructions are described in the corresponding documentation:

### Debian and derivatives

- [Debian 12](edbplus_debian_12)
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
navTitle: Debian 12
title: Installing EDB*Plus on Debian 12 x86_64
# This topic is generated from templates. If you have feedback on it, instead of
# editing the page and creating a pull request, please enter a GitHub issue and
# the documentation team will update the templates accordingly.

redirects:
- /edb_plus/41/03_installing_edb_plus/install_on_linux/x86_amd64/edbplus_deb12_x86
---

## Prerequisites

Before you begin the installation process:

- Set up the EDB repository.

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.

To determine if your repository exists, enter this command:

`apt-cache search enterprisedb`

If no output is generated, the repository isn't installed.

To set up the EDB repository:

1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads).

1. Select the button that provides access to the EDB repository.
1. Select the platform and software that you want to download.

1. Follow the instructions for setting up the EDB repository.

## Install the package

```shell
sudo apt-get -y install edb-edbplus
```

## Initial configuration

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:

```shell
export JAVA_HOME=<path_to_java>
export PATH=<path_to_java>/bin:$PATH
```
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ navigation:
- edbplus_sles_12
- edbplus_ubuntu_22
- edbplus_ubuntu_20
- edbplus_debian_12
- edbplus_debian_11
---

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

- [Ubuntu 20.04](edbplus_ubuntu_20)

- [Debian 12](edbplus_debian_12)

- [Debian 11](edbplus_debian_11)
9 changes: 8 additions & 1 deletion product_docs/docs/eprs/7/installing/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ redirects:

navigation:
- linux_x86_64
- linux_arm64
- linux_ppc64le
- windows
- installing_jdbc_driver
Expand Down Expand Up @@ -44,7 +45,7 @@ Select a link to access the applicable installation instructions:

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

- [Debian 11](linux_x86_64/eprs_debian_11)
- [Debian 12](linux_x86_64/eprs_debian_12), [Debian 11](linux_x86_64/eprs_debian_11)

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

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

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

## Linux [AArch64 (ARM64)](linux_arm64)

### Debian and derivatives

- [Debian 12](linux_arm64/eprs_debian_12)

## Windows

- [Windows Server 2022](windows)
Expand Down
61 changes: 61 additions & 0 deletions product_docs/docs/eprs/7/installing/linux_arm64/eprs_debian_12.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
navTitle: Debian 12
title: Installing Replication Server on Debian 12 arm64
# This topic is generated from templates. If you have feedback on it, instead of
# editing the page and creating a pull request, please enter a GitHub issue and
# the documentation team will update the templates accordingly.

redirects:
- /eprs/7/03_installation/03_installing_rpm_package/arm64/eprs_deb12_arm
---

## Prerequisites

Before you begin the installation process:

- Set up the EDB repository.

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.

To determine if your repository exists, enter this command:

`apt-cache search enterprisedb`

If no output is generated, the repository isn't installed.

To set up the EDB repository:

1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads).

1. Select the button that provides access to the EDB repository.
1. Select the platform and software that you want to download.

1. Follow the instructions for setting up the EDB repository.

## Install the package

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.

To install all Replication Server components:

```shell
sudo apt-get -y install edb-xdb
```

To install an individual component:

```shell
sudo apt-get -y install <package_name>
```

Where `<package_name>` is:

| Package name | Component |
| -------------------- | --------------------------------------------------------------------- |
| `edb-xdb-console` | Replication console and the Replication Server command line interface |
| `edb-xdb-publisher` | Publication server |
| `edb-xdb-subscriber` | Subscription server |

## Initial configuration

Before using Replication Server, you must download and install JDBC drivers. See [Installing a JDBC driver](/eprs/7/installing/installing_jdbc_driver) for details.
21 changes: 21 additions & 0 deletions product_docs/docs/eprs/7/installing/linux_arm64/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
title: "Installing Replication Server on Linux AArch64 (ARM64)"
navTitle: "On Linux ARM64"

# This topic is generated from templates. If you have feedback on it, instead of
# editing the page and creating a pull request, please enter a GitHub issue and
# the documentation team will update the templates accordingly.
# Leaf template: products/replication-server/arm64_index.njk

redirects:
- /eprs/latest/03_installation/03_installing_rpm_package/x86_amd64/

navigation:
- eprs_debian_12
---

Operating system-specific install instructions are described in the corresponding documentation:

### Debian and derivatives

- [Debian 12](eprs_debian_12)
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
navTitle: Debian 12
title: Installing Replication Server on Debian 12 x86_64
# This topic is generated from templates. If you have feedback on it, instead of
# editing the page and creating a pull request, please enter a GitHub issue and
# the documentation team will update the templates accordingly.

redirects:
- /eprs/7/03_installation/03_installing_rpm_package/x86_amd64/eprs_deb12_x86
---

## Prerequisites

Before you begin the installation process:

- Set up the EDB repository.

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.

To determine if your repository exists, enter this command:

`apt-cache search enterprisedb`

If no output is generated, the repository isn't installed.

To set up the EDB repository:

1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads).

1. Select the button that provides access to the EDB repository.
1. Select the platform and software that you want to download.

1. Follow the instructions for setting up the EDB repository.

## Install the package

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.

To install all Replication Server components:

```shell
sudo apt-get -y install edb-xdb
```

To install an individual component:

```shell
sudo apt-get -y install <package_name>
```

Where `<package_name>` is:

| Package name | Component |
| -------------------- | --------------------------------------------------------------------- |
| `edb-xdb-console` | Replication console and the Replication Server command line interface |
| `edb-xdb-publisher` | Publication server |
| `edb-xdb-subscriber` | Subscription server |

## Initial configuration

Before using Replication Server, you must download and install JDBC drivers. See [Installing a JDBC driver](/eprs/7/installing/installing_jdbc_driver) for details.
3 changes: 3 additions & 0 deletions product_docs/docs/eprs/7/installing/linux_x86_64/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ navigation:
- eprs_sles_12
- eprs_ubuntu_22
- eprs_ubuntu_20
- eprs_debian_12
- eprs_debian_11
---

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

- [Ubuntu 20.04](eprs_ubuntu_20)

- [Debian 12](eprs_debian_12)

- [Debian 11](eprs_debian_11)
Loading

2 comments on commit 2662d4f

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://edb-docs.netlify.app as production
πŸš€ Deployed on https://66bcb31594302ca46144fbbc--edb-docs.netlify.app

Please sign in to comment.