From 876a72279365b04d511e5d618983be00a8c6d614 Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan Date: Tue, 27 Aug 2024 12:47:24 +0100 Subject: [PATCH 01/45] Rebuild with test DMS content and fix right hand TOCs Signed-off-by: Dj Walker-Morgan --- .../getting_started/apply_constraints.mdx | 21 ++ .../getting_started/config_reader.mdx | 160 ++++++++++ .../getting_started/create_database.mdx | 23 ++ .../getting_started/create_migration.mdx | 24 ++ .../getting_started/index.mdx | 28 ++ .../getting_started/installing/index.mdx | 31 ++ .../installing/linux_x86_64/dms_debian_11.mdx | 34 +++ .../installing/linux_x86_64/dms_debian_12.mdx | 34 +++ .../linux_x86_64/dms_other_linux_9.mdx | 34 +++ .../installing/linux_x86_64/dms_rhel_8.mdx | 34 +++ .../installing/linux_x86_64/dms_rhel_9.mdx | 34 +++ .../installing/linux_x86_64/dms_sles_12.mdx | 34 +++ .../installing/linux_x86_64/dms_sles_15.mdx | 34 +++ .../installing/linux_x86_64/dms_ubuntu_20.mdx | 34 +++ .../installing/linux_x86_64/dms_ubuntu_22.mdx | 34 +++ .../installing/linux_x86_64/index.mdx | 48 +++ .../getting_started/mark_completed.mdx | 11 + .../getting_started/prepare_schema.mdx | 66 +++++ .../getting_started/preparing_db/index.mdx | 11 + .../preparing_oracle_source_databases.mdx | 279 ++++++++++++++++++ .../preparing_postgres_source_databases.mdx | 130 ++++++++ .../getting_started/remove_software.mdx | 5 + .../getting_started/verify_migration.mdx | 7 + .../data-migration-service/index.mdx | 29 ++ .../data-migration-service/known_issues.mdx | 6 + .../data-migration-service/limitations.mdx | 24 ++ .../rel_notes/index.mdx | 18 ++ .../rel_notes/rel_notes_2.0.0_preview.mdx | 14 + .../supported_versions.mdx | 36 +++ .../data-migration-service/terminology.mdx | 27 ++ .../data-migration-service/upgrading.mdx | 16 + .../edb-postgres-ai/migration-etl/index.mdx | 15 +- .../migration-etl/migration-and-ai.mdx | 17 ++ src/templates/doc.js | 8 +- src/templates/learn-doc.js | 5 +- 35 files changed, 1348 insertions(+), 17 deletions(-) create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/config_reader.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_migration.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_11.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_12.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_other_linux_9.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_8.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_9.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_12.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_15.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_20.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_22.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/index.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/mark_completed.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/index.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/remove_software.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/verify_migration.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/known_issues.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/limitations.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/index.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/rel_notes_2.0.0_preview.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/upgrading.mdx create mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/migration-and-ai.mdx diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx new file mode 100644 index 00000000000..e158db04ba8 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx @@ -0,0 +1,21 @@ +--- +title: "Applying constraints" +--- + +At the beginning of your data migration journey with EDB Data Migration Service (EDB DMS), you [prepared and imported the schema](prepare_schema) of your source database. Now, re-apply the constraints that were excluded from the schema and data migration. + +## `PRIMARY KEY` and `UNIQUE` constraints + +For `PRIMARY KEY` and `UNIQUE` constraints, you have already created the tables and constraints in the target Postgres database. This allowed EDB DMS to map them to the source objects and migrate data sucessfuly. You don't need do to anything else. + +The same applies to `NOT NULL` constraints if you included them in your schema import. + +## `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints + +You can now re-apply the `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints you excluded during the [schema preparation and import](prepare_schema). For example, you can use ALTER statements. + +## Ensuring data integrity + +Rows in tables that do not have `PRIMARY KEY` or `UNIQUE` constraints were migrated with at-least-once delivery, therefore, it is possible that these rows are duplicate. + +Deduplication can be performed as part of the [verification](verify_migration). \ No newline at end of file diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/config_reader.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/config_reader.mdx new file mode 100644 index 00000000000..21a42923e74 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/config_reader.mdx @@ -0,0 +1,160 @@ +--- +title: "Configuring and running the EDB DMS Reader" +deepToC: true +--- + +## Getting credentials + +1. Access the [EDB Postgres AI® Console](https://portal.biganimal.com) and log in with your EDB Postgres AI Database Cloud Service credentials. + +1. Select the project where you created the database cluster. + +1. Within your project, select **Migrate** > **Credentials**. + +1. Unzip the credentials folder and copy it to the host where the reader is installed. + +## Configuring the reader + +Set the following environment variables in `/opt/cdcreader/run-cdcreader.sh` with the right values: + +```shell +### set the following environment variables: + +############################################## +# Data Migration Service Cloud Configuration # +############################################## + +# This ID is used to identify the cdcreader. +#export DBZ_ID= + +# Now we only support aws +#export CLOUD_PROVIDER= + +# No need to change about this field +#export RW_SERVICE_HOST=https://transporter-rw-service.biganimal.com + +# You need to create migration credentials in EDB postgresAI platform and set these fields with the path of credential files +#export TLS_PRIVATE_KEY_PATH=$MY_CREDENTIALS_PATH/client-key.pem +#export TLS_CERTIFICATE_PATH=$MY_CREDENTIALS_PATH/client-cert.pem +#export TLS_CA_PATH=$MY_CREDENTIALS_PATH/int.crt +#export APICURIOREQUEST_CLIENT_KEYSTORE_LOCATION=$MY_CREDENTIALS_PATH/client.keystore.p12 +#export APICURIOREQUEST_TRUSTSTORE_LOCATION=$MY_CREDENTIALS_PATH/int.truststore.p12 +#export KAFKASECURITY_CLIENT_KEYSTORE_LOCATION=$MY_CREDENTIALS_PATH/client.keystore.p12 +#export KAFKASECURITY_TRUSTSTORE_LOCATION=$MY_CREDENTIALS_PATH/int.truststore.p12 + +################################################## +# Data Migration Service Source DB Configuration # +################################################## + +# A sample configuration to create a single postgres database connection: +#export DBZ_DATABASES_0__TYPE=POSTGRES +#export DBZ_DATABASES_0__HOSTNAME=localhost +#export DBZ_DATABASES_0__PORT=5432 +#export DBZ_DATABASES_0__CATALOG=source +#export DBZ_DATABASES_0__USERNAME=postgres +#export DBZ_DATABASES_0__PASSWORD=password + +# You can increase the index to config more database for the reader +#export DBZ_DATABASES_1__TYPE=ORACLE +#export DBZ_DATABASES_1__HOSTNAME=localhost +#export DBZ_DATABASES_1__PORT=1521 +#export DBZ_DATABASES_1__CATALOG=ORCLCDB/ORCLPDB1 +#export DBZ_DATABASES_1__USERNAME=oracle +#export DBZ_DATABASES_1__PASSWORD=password + +########################################## +# Optional Parameters Below # +########################################## + +# Configure logging +# Generic loglevel +#export QUARKUS_LOG_LEVEL=DEBUG +# Loglevel for a single package +#export QUARKUS_LOG_CATEGORY__COM_ENTERPRISEDB__LEVEL=DEBUG +``` + +## Parameters + +### DBZ_ID + +This is the name you assign to identify a source. This name will later appear as a _source_ in the **Migrate** > **Sources** section of the EDB Postgres AI Console. + +Consider the following ID guidelines: + +- The maximum character length for the ID is 255 characters. +- You can use lowercase and uppercase characters, numbers, underscores(_) and hyphens(-) for the ID. Other special characters are not supported. +- The ID must be unique. The source instances cannot have the same ID. + +### RW_SERVICE_HOST + +Specifies the URL of the service that will host the migration. `transporter-rw-service` is always https://transporter-rw-service.biganimal.com. + +### TLS_PRIVATE_KEY_PATH + +Directory path to the `client-key.pem` private key you downloaded from the EDB Postgres AI Console. +The Reader's HTTP client uses it to perform mTLS authentication with the `transporter-rw-service`. + +### TLS_CERTIFICATE_PATH + +Directory path to the X509 `client-cert.pem` certificate you downloaded from the EDB Postgres AI Console. +The Reader's HTTP client uses it to perform mTLS authentication with the `transporter-rw-service`. + +### TLS_CA_PATH + +Directory path to the `int.cert` Certificate Authority you downloaded from the EDB Postgres AI Console. +It signs the certificate configured in TLS_CERTIFICATE_PATH. + +### APICURIOREQUEST_CLIENT_KEYSTORE_LOCATION + +Directory path to the `client-keystore.p12` keystore location file you downloaded from the EDB Postgres AI Console. +It is created from the private key and certifiate configured in TLS_PRIVATE_KEY_PATH and TLS_CERTIFICATE_PATH. +The Apicurio client uses it to perform mTLS authentication with the `transporter-rw-service`. + +### APICURIOREQUEST_TRUSTSTORE_LOCATION +Created from the Certificate Authority configured in TLS_CA_PATH +Apicurio client use it to mTLS with transporter-rw-service + +### DBZ_DATABASES +This is a source databases list you want to reader to connect. You can configure multiple database for one reader. +You need to increase the index manully in you configuration. + +For example: + +`DBZ_DATABASES_0__TYPE` is the type of the first source database. + +`DBZ_DATABASES_1__TYPE` is the type of the second source database. + +#### DBZ_DATABASES_0__TYPE +Source database type, support ORACLE and POSTGRES currently + +#### DBZ_DATABASES_0__HOSTNAME +Source database hostname + +#### DBZ_DATABASES_0__PORT +Source database port + +#### DBZ_DATABASES_0__CATALOG +Source database catalog + +#### DBZ_DATABASES_0__USERNAME +Source database username + +#### DBZ_DATABASES_0__PASSWORD +Source database password + +Once the reader finishes running, the cdc source will appear in the EDB Postgres AI Console. You can select this source for any [migration](create_migration). + + +## Running the EDB DMS Reader + +1. Start the migration: + + ```shell + cd /opt/cdcreader + ./run-cdcreader.sh + ``` + +1. Go to the [EDB Postgres AI Console](https://portal.biganimal.com), and verify that a source with the `DBZ_ID` name is displayed in **Migrate** > **Sources**. + + + diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx new file mode 100644 index 00000000000..f45e9466dad --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx @@ -0,0 +1,23 @@ +--- +title: "Creating a database cluster" +--- + +You can use an existing EDB Postgres® AI cluster or create a new cluster for the target of the database migration. + +To use an existing cluster as a target for the migration, ensure the tables you migrate and the load generated on target doesn't interfere with existing workloads. + +1. Access the [EDB Postgres AI Console](https://portal.biganimal.com) and log in with your EDB Postgres AI Database Cloud Service credentials. + +1. Select the project where you want to create the database cluster. + + See [Creating a project](/biganimal/latest/administering_cluster/projects/#creating-a-project) if you want to create one. + +1. Within your project, select **Create New** and **Database Cluser** to create an instance that will serve as target for the EDB Data Migration Service (EDB DMS). + + See [Creating a cluster](/biganimal/release/getting_started/creating_a_cluster/) for detailed instructions on how to create a single-node or a primary/standby high availability cluster. + + See [Creating a distributed high-availability cluster](/biganimal/latest/getting_started/creating_a_cluster/creating_a_dha_cluster/) for detailed instructions on how to create a distributed high availibility cluster. + +1. In **Clusters** page, select your cluster, and use the **Quick Connect** option to access your instance from your terminal. + +1. Create a new empty database. For an example, see [Create a new database](/biganimal/latest/free_trial/quickstart/#create-a-new-database). diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_migration.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_migration.mdx new file mode 100644 index 00000000000..3c5911256c7 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_migration.mdx @@ -0,0 +1,24 @@ +--- +title: "Creating a migration" +--- + +After you use the EDB DMS Reader to read the source database, create a new migration in the EDB Postgres® AI Console. +This establishes a sync between the source database and a target cluster in the EDB Postgres AI Console. + +1. Access the [EDB Postgres AI Console](https://portal.biganimal.com) and log in with your EDB Postgres AI Database Cloud Service credentials. + +1. Select the project where you created the database cluster. + +1. Within your project, select **Migrate** > **Migrations**. + +1. In the **Migrations** page, select **Create New Migration** > **To Managed Postgres**. + +1. In the **Create Migration** page, assign a **Name** to the migration. + +1. Select the **Source** of the migration. The ID for the EDB DMS Reader is listed in the drop-down menu. + +1. Under **Destination**, select a target cluster for the migration and enter the name of the database where you want the migration to copy data and select **Next**. + +1. Select the tables and columns to migrate. Modify the table and column names if needed. + +1. Select **Create Migration**. \ No newline at end of file diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx new file mode 100644 index 00000000000..672699c5abc --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx @@ -0,0 +1,28 @@ +--- +title: "Getting started" +description: Understand how to create a migration from planning to execution. +navigation: + - create_database + - prepare_schema + - preparing_db + - installing + - config_reader + - create_migration + - mark_completed + - apply_constraints + - verify_migration + - remove_software +--- + +Setting up an EDB Data Migration consists of a number of steps. + +1. [Create a target database cluster](create_database) in the EDB Postgres® AI Console. +1. [Prepare the schema](prepare_schema) with Migration Portal and migrate the schema to the target database. +1. [Prepare your source Oracle or Postgres database](preparing_db) with `sqlplus` or `psql`. +1. [Install the EDB DMS Reader](installing) on your machine with your terminal. +1. [Configure the EDB DMS Reader](config_reader) on your machine with your terminal. +1. [Create a new migration](create_migration) in the EDB Postgres AI Console. +1. [Mark the Migration as completed](mark_completed) in the EDB Postgres AI Console. +1. [Apply constraints](apply_constraints) to the new database. +1. [Verify the migration completed successfully](verify_migration) with LiveCompare. +1. [Remove customer software](remove_software). diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx new file mode 100644 index 00000000000..a22ead4771b --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx @@ -0,0 +1,31 @@ +--- +navTitle: Installing EDB DMS Reader +title: Installing EDB DMS Reader on Linux + +navigation: + - linux_x86_64 +--- + +Select a link to access the applicable installation instructions. + +## Linux [x86-64 (amd64)](linux_x86_64) + +### Red Hat Enterprise Linux (RHEL) and derivatives + +- [RHEL 9](linux_x86_64/dms_rhel_9), [RHEL 8](linux_x86_64/dms_rhel_8) + +- [Oracle Linux (OL) 9](linux_x86_64/dms_rhel_9), [Oracle Linux (OL) 8](linux_x86_64/dms_rhel_8) + +- [Rocky Linux 9](linux_x86_64/dms_other_linux_9) + +- [AlmaLinux 9](linux_x86_64/dms_other_linux_9) + +### SUSE Linux Enterprise (SLES) + +- [SLES 15](linux_x86_64/dms_sles_15), [SLES 12](linux_x86_64/dms_sles_12) + +### Debian and derivatives + +- [Ubuntu 22.04](linux_x86_64/dms_ubuntu_22), [Ubuntu 20.04](linux_x86_64/dms_ubuntu_20) + +- [Debian 12](linux_x86_64/dms_debian_12), [Debian 11](linux_x86_64/dms_debian_11) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_11.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_11.mdx new file mode 100644 index 00000000000..cd7be7a8559 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_11.mdx @@ -0,0 +1,34 @@ +--- +navTitle: Debian 11 +title: Installing the EDB DMS Reader on Debian 11 x86_64 +--- + +## 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: + + `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 repo. + + 1. Select the platform and software that you want to download. + +## Install the package + +Install the EDB DMS Reader (packaged as `cdcreader`): + +```shell +sudo apt-get install cdcreader +``` diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_12.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_12.mdx new file mode 100644 index 00000000000..abd9510a40d --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_12.mdx @@ -0,0 +1,34 @@ +--- +navTitle: Debian 12 +title: Installing the EDB DMS Reader on Debian 12 x86_64 +--- + +## 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: + + `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 repo. + + 1. Select the platform and software that you want to download. + +## Install the package + +Install the EDB DMS Reader (packaged as `cdcreader`): + +```shell +sudo apt-get install cdcreader +``` diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_other_linux_9.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_other_linux_9.mdx new file mode 100644 index 00000000000..5c50ed81e9d --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_other_linux_9.mdx @@ -0,0 +1,34 @@ +--- +navTitle: AlmaLinux 9 or Rocky Linux 9 +title: Installing the EDB DMS Reader on AlmaLinux 9 or Rocky Linux 9 x86_64 +--- + +## 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: + + `dnf repolist | grep 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 repo. + + 1. Select the platform and software that you want to download. + +## Install the package + +Install the EDB DMS Reader (packaged as `cdcreader`): + +```shell +sudo dnf install cdcreader +``` diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_8.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_8.mdx new file mode 100644 index 00000000000..4f79f23ff6c --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_8.mdx @@ -0,0 +1,34 @@ +--- +navTitle: RHEL 8 or OL 8 +title: Installing the EDB DMS Reader on RHEL 8 or OL 8 x86_64 +--- + +## 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: + + `dnf repolist | grep 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 repo. + + 1. Select the platform and software that you want to download. + +## Install the package + +Install the EDB DMS Reader (packaged as `cdcreader`): + +```shell +sudo dnf install cdcreader +``` diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_9.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_9.mdx new file mode 100644 index 00000000000..64eebbc208f --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_9.mdx @@ -0,0 +1,34 @@ +--- +navTitle: RHEL 9 or OL 9 +title: Installing the EDB DMS Reader on RHEL 9 or OL 9 x86_64 +--- + +## 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: + + `dnf repolist | grep 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 repo. + + 1. Select the platform and software that you want to download. + +## Install the package + +Install the EDB DMS Reader (packaged as `cdcreader`): + +```shell +sudo dnf install cdcreader +``` diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_12.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_12.mdx new file mode 100644 index 00000000000..83a2ed46e98 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_12.mdx @@ -0,0 +1,34 @@ +--- +navTitle: SLES 12 +title: Installing the EDB DMS Reader on SLES 12 x86_64 +--- + +## 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: + + `zypper lr -E | grep 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 repo. + + 1. Select the platform and software that you want to download. + +## Install the package + +Install the EDB DMS Reader (packaged as `cdcreader`): + +```shell +sudo zypper install cdcreader +``` diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_15.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_15.mdx new file mode 100644 index 00000000000..fcd764b1b8c --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_15.mdx @@ -0,0 +1,34 @@ +--- +navTitle: SLES 15 +title: Installing the EDB DMS Reader on SLES 15 x86_64 +--- + +## 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: + + `zypper lr -E | grep 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 repo. + + 1. Select the platform and software that you want to download. + +## Install the package + +Install the EDB DMS Reader (packaged as `cdcreader`): + +```shell +sudo zypper install cdcreader +``` diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_20.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_20.mdx new file mode 100644 index 00000000000..88f3e855262 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_20.mdx @@ -0,0 +1,34 @@ +--- +navTitle: Ubuntu 20.04 +title: Installing the EDB DMS Reader on Ubuntu 20.04 x86_64 +--- + +## 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: + + `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 repo. + + 1. Select the platform and software that you want to download. + +## Install the package + +Install the EDB DMS Reader (packaged as `cdcreader`): + +```shell +sudo apt-get install cdcreader +``` diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_22.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_22.mdx new file mode 100644 index 00000000000..d38dd5cdd9f --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_22.mdx @@ -0,0 +1,34 @@ +--- +navTitle: Ubuntu 22.04 +title: Installing the EDB DMS Reader on Ubuntu 22.04 x86_64 +--- + +## 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: + + `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 repo. + + 1. Select the platform and software that you want to download. + +## Install the package + +Install the EDB DMS Reader (packaged as `cdcreader`): + +```shell +sudo apt-get install cdcreader +``` diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/index.mdx new file mode 100644 index 00000000000..55bb9cc91e4 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/index.mdx @@ -0,0 +1,48 @@ +--- +title: "Installing EDB DMS Reader on Linux x86 (amd64)" +navTitle: "On Linux x86" + +navigation: + - dms_rhel_9 + - dms_rhel_8 + - dms_other_linux_9 + - dms_sles_15 + - dms_sles_12 + - dms_ubuntu_22 + - dms_ubuntu_20 + - dms_ubuntu_18 + - dms_debian_12 + - dms_debian_11 +--- + +For operating system-specific install instructions, including accessing the repo, see: + +### Red Hat Enterprise Linux (RHEL) and derivatives + +- [RHEL 9](dms_rhel_9) + +- [RHEL 8](dms_rhel_8) + +- [Oracle Linux (OL) 9](dms_rhel_9) + +- [Oracle Linux (OL) 8](dms_rhel_8) + +- [Rocky Linux 9](dms_other_linux_9) + +- [AlmaLinux 9](dms_other_linux_9) + +### SUSE Linux Enterprise (SLES) + +- [SLES 15](dms_sles_15) + +- [SLES 12](dms_sles_12) + +### Debian and derivatives + +- [Ubuntu 22.04](dms_ubuntu_22) + +- [Ubuntu 20.04](dms_ubuntu_20) + +- [Debian 12](dms_debian_12) + +- [Debian 11](dms_debian_11) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/mark_completed.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/mark_completed.mdx new file mode 100644 index 00000000000..a2460428bae --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/mark_completed.mdx @@ -0,0 +1,11 @@ +--- +title: "Mark migration as completed" +--- + +You have taken a snapshot of the source database and imported it to the EDB Postgres® AI Console. + +To ensure that the target cluster is up-to-date with the source cluster and allow the EDB DMS Reader to be able to stream the latest updates on the source database to the cluster mark the migration as completed. + +1. In the EDB Postgres AI Console, in your project, select **Migrate** > **Migrations**. + +1. Select the **Mark as completed** button. \ No newline at end of file diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx new file mode 100644 index 00000000000..01fddc64c41 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx @@ -0,0 +1,66 @@ +--- +title: "Preparing and importing the schema" +deepToC: true +--- + +Before you use EDB Data Migration Service (EDB DMS) to configure a data migration, you must prepare and import your schema to the target database. + +Some of your schema's constraints must be included before the data migration takes place, whereas others must be applied [after the data migration is completed](apply_constraints). This ensures you can migrate without performance degradation. + +## Schema integrity and performance considerations + +The presence of target database constraints, triggers, and WAL logging can impact the data migration performance. When possible, EDB recommends a two-step import of schema constraints. + +### `PRIMARY KEY` and `UNIQUE` constraints + +`PRIMARY KEY` and `UNIQUE` constraints are leveraged by EDB DMS to provide an exactly-once delivery when migrating data to the target database. Therefore, `PRIMARY KEY` and `UNIQUE` constraints should be included in the schema import that you perform before the data migration begins. Other types of constraints should be excluded from the schema import. + +For rows in tables that do not have `PRIMARY KEY` or `UNIQUE` constraints it is only possible to achieve at-least-once delivery. Deduplication can be performed during the [data migration verification](verify_migration). + +!!!note + `NOT NULL` constraints don't represent a significant performance impact for destination servers and can also be included in the schema import. +!!! + +### `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints + +EDB DMS is able to apply change events in parallel against destination database clusters. However, migrating some constraint types can negatively affect the performance of the migration. These type of constraints lead to unnecessary CPU and memory utilization in the context of an in-flight data migration from a consistent and referentially integral source database. + +EDB recommends [applying the following constraints](apply_constraints) on the target database after you have signilized the end of the CDC stream by [marking the migration as completed](mark_completed) in the Console. + +`FOREIGN KEY` / `REFERENCES` + +`CHECK` + +`CASCADE` + +`EXCLUDE` + +## Preparing and importing your schema + +### Prerequisite + +You created a schema in the target database. + +### Prepare your schema + +#### Oracle to EDB Postgres Advanced Server migrations + +Use [EDB Migration Portal](/migration_portal/latest/03_mp_using_portal/03_mp_quick_start/) to assess Oracle database sources for schema compatibility before starting the data migration process. + +EDB Migration Portal offers the ability to separate constraints from other destination DDL with the [offline migration option](/migration_portal/latest/04_mp_migrating_database/03_mp_schema_migration/#offline-migration). + +Ensure you exclude `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints from the DDL before importing the schema to the target database. + +#### Other migrations + +For data migrations to and from Postgres EDB recommends using [EDB Migration Toolkit](/migration_toolkit/latest/) to manage the schema. MTK's [offline migration](/migration_toolkit/latest/07_invoking_mtk/08_mtk_command_options/#offline-migration-options) capability provides an easy way to extract a database's schema and separate constraints. + +Ensure you exclude `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints from the DDL before importing the schema to the target database. + +Tools such as `pg_dump` and `pg_restore` are another valid route for migrating DDL. + +### Import your schema to the target database + +After you have prepared the DDL, and excluded `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints, connect to the target database and import the SQL-formatted DDL file. + +You can use [pgAdmin](https://www.pgadmin.org/docs/pgadmin4/latest/index.html), [psql](https://www.postgresql.org/docs/7.0/app-psql.htm) or a different tool to perform the import. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/index.mdx new file mode 100644 index 00000000000..12166b19bfc --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/index.mdx @@ -0,0 +1,11 @@ +--- +title: "Preparing databases" + +navigation: + - preparing_oracle_source_databases + - preparing_postgres_source_databases +--- + +To prepare source databases, see either: +- [Preparing Oracle source databases](preparing_oracle_source_databases) +- [Preparing Postgres source databases](preparing_postgres_source_databases) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx new file mode 100644 index 00000000000..1afa506f874 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx @@ -0,0 +1,279 @@ +--- +title: "Preparing Oracle source databases" +--- + + + +Configuring Oracle for EDB Data Migration Services (EDB DMS) requires `sysdba` privileges. + +Configure an Oracle source database to: +- Enable archive log mode. +- Enable supplemental logging for the database and table columns of interest. +- Ensure adequate redo log space is available. +- Create a user with limited privileges to carry out the data migration. + +Execute SQL statements with `sqlplus` or a similar client. + +This command propmpts you for the password for ``: + +```shell +sqlplus @:/ as sysdba +``` + +Where: + + - `` is the Oracle DB hostname. + - `` is the Oracle DB port. + - `` is the Oracle System ID for the DB or CDB/PDB combination. + - `` is an Oracle DB username with sysdba privileges. + +## Oracle configuration + +To perform Oracle configuration: + +1. [Enable archive log mode](#enable-archive-log-mode). +1. [Enable database supplemental logging](#enable-database-supplemental-logging). +1. [Enable supplemental logging for table columns](#enable-supplemental-logging-for-table-columns). +1. [Verify redo logs for adequate count and size](#verify-redo-logs-for-adequate-count-and-size). +1. [Create a user with limited privileges for data migration](#create-a-user-with-limited-privileges-for-data-migration). +1. [Grant `SELECT` on source tables](#grant-select-on-source-tables). +1. [Validate configuration](#validate-configuration). + +### Enable archive log mode + +Oracle databases can operate in `ARCHIVELOG` or `NOARCHIVELOG` mode. In `ARCHIVELOG` mode, filled redo logs are archived rather than put back into log rotation to be overwritten. This mode is needed for the change data capture (CDC) process to use LogMiner and produce a complete history of changes after an initial consistent snapshot. + +To see the database mode: + +```sql +archive log list; +``` + +The returned content indicates the database mode: + +```sql +Database log mode Archive Mode +...or +Database log mode No Archive Mode +``` + +If `ARCHIVELOG` mode is enabled, confirm with your DBA that the size of your recovery file destination is appropriate for your workload. + +When enabling archive log mode, you need to enable a fast recovery area. For more information on enabling an Oracle fast recovery area, see [Enabling the Fast Recovery Area](https://docs.oracle.com/en/database/oracle/oracle-database/19/bradv/configuring-rman-client-basic.html#GUID-233338E2-3EE6-4248-A2B6-16A7899DB14F) in the Oracle documentation. + +To enable archive logging: + + +```sql +ORACLE_SID= sqlplus /nolog + +CONNECT /_PWD AS SYSDBA +alter system set db_recovery_file_dest_size = ; +alter system set db_recovery_file_dest = '' scope=spfile; +shutdown immediate +startup mount +alter database archivelog; +alter database open; +archive log list; +exit; +``` + +Where: + - `` is the Oracle DB system ID. + - `` is the name of a user with sysdba privileges. + - `` is the password for ``. + - `` is the size allowed for the recovery behavior, for example, `100G` for 100 gigabytes. + - `` is the file system path for an Oracle fast recovery area. This path can be a directory, file system, or Oracle Automatic Storage Management. Consult your DBA for guidance. + +The `archive log list` output shows the database is now in archive log mode. + +### Enable database supplemental logging + +Supplemental logging refers to the capture of additional information in Oracle redo logs, such as "before" state. This extra redo log information is needed for some log-based applications, such as EDB DMS, to capture change events. See [Supplemental Logging](https://docs.oracle.com/en/database/oracle/oracle-database/19/sutil/oracle-logminer-utility.html#GUID-D857AF96-AC24-4CA1-B620-8EA3DF30D72E) in the Oracle documentation for more information. + +You can enable supplemental logging at the database and table level. The following command enables minimal supplemental logging required for LogMiner to function at the database level: + +```sql +ALTER DATABASE ADD SUPPLEMENTAL LOG DATA; +``` + +### Enable supplemental logging for table columns + +For every table you want to migrate, you must enable supplemental logging. To do +so for all columns in a table, apply the following statement: + +```sql +ALTER TABLE ADD SUPPLEMENTAL LOG DATA (ALL) COLUMNS; +``` + +Where `
` is the identifier for the table to migrate. + +Use `ALTER` with all table columns you want to migrate. + +### Verify redo logs for adequate count and size + +The migration process involves two phases. The first is a consistent snapshot. The second is continuous streaming of database changes. This stream of database changes is powered by LogMiner and the Oracle DB redo logs. + +Database changes have a limited lifetime on the redo logs before the change is no longer present in the log history. This lifetime depends on the size of the redo logs, the number of redo logs, and the change throughput to the database. Also, undersized logs cause frequent log switching and affect migration performance. + +To examine the state of the database redo logs: + +```sql +SELECT GROUP#, TYPE, MEMBER FROM V_$LOGFILE; + + GROUP# TYPE MEMBER +---------- ------- -------------------------------------------------- + 1 ONLINE /opt/oracle/oradata/ORCLCDB/redo03.log + 2 ONLINE /opt/oracle/oradata/ORCLCDB/redo01.log + 3 ONLINE /opt/oracle/oradata/ORCLCDB/redo04.log + +SELECT GROUP#, ARCHIVED, BYTES/1024/1024 MB, STATUS FROM V_$LOG; + + GROUP# ARC MB STATUS +---------- --- --- ---------------- + 1 YES 2000 INACTIVE + 3 YES 2000 INACTIVE + 3 NO 2000 CURRENT +``` + +This example uses three log groups of size 2000MB. Each group has one file member. This might be too +small for many production databases. You can safely adjust the redo logs with synchronous commands such as the following: + +```sql + ALTER DATABASE ADD LOGFILE GROUP 4 ('/opt/oracle/oradata/ORCLCDB/redo04.log') SIZE 8G; + ALTER DATABASE ADD LOGFILE GROUP 5 ('/opt/oracle/oradata/ORCLCDB/redo05.log') SIZE 8G; + ALTER DATABASE ADD LOGFILE GROUP 6 ('/opt/oracle/oradata/ORCLCDB/redo06.log') SIZE 8G; + ALTER DATABASE ADD LOGFILE GROUP 7 ('/opt/oracle/oradata/ORCLCDB/redo07.log') SIZE 8G; + ALTER SYSTEM ARCHIVE LOG CURRENT; + ALTER SYSTEM CHECKPOINT; + ALTER SYSTEM ARCHIVE LOG CURRENT; + ALTER SYSTEM CHECKPOINT; + ALTER SYSTEM ARCHIVE LOG CURRENT; + ALTER SYSTEM CHECKPOINT; + ALTER DATABASE DROP LOGFILE GROUP 1; + ALTER DATABASE DROP LOGFILE GROUP 2; + ALTER DATABASE DROP LOGFILE GROUP 3; +``` + +These commands result in four new 8GB log groups. Each group has a single log file. + +Consult your DBA for appropriate production sizing. + +### Create a user with limited privileges for data migration + +#### Tablespace preparation + +Provide a database user with adequate roles to carry out the CDC process. + +Then, we recommend creating a tablespace for the CDC user. For container databases, you need to create a pluggable database as well. + +This example creates a tablespace and datafiles for CDC migration. Your database settings might vary, but a common configuration with `SMALLFILE` tablespaces and an 8kB database block size results in a maximum of 32GB of storage avaiable per `MAXSIZE` tablespace datafile. Therefore, you might need to add multiple `AUTOEXTEND` datafiles when this limit might be exceeded. + +```sql +-- Create the tablespace, or in the case of a CDB/PDB, create the CDB tablespace +CREATE TABLESPACE DATAFILE '/opt/oracle/oradata/ORCLCDB/logminer_tbs.dbf' SIZE 25M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED; + +-- For CDB/PDB deployments we must specify at least one tablespace datafile for the PDB +CREATE TABLESPACE DATAFILE '/opt/oracle/oradata/ORCLCDB/ORCPDB1/logminer_tbs_1.dbf' SIZE 25M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED; +-- Additional data files can be added with as follows +ALTER TABLESPACE DATAFILE '/opt/oracle/oradata/ORCLCDB/ORCLPDB1/logminer_tbs_2.dbf' SIZE 25M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED; +``` + +Where: + - `` is the tablespace name for the CDC migration user to use. + +#### User creation and access grants + +With the tablespace files in place, you can create a user with appropriate access grants for CDC migration. + +For a CDB/PDB database setup, note the tablespace default and quota: + +```sql + CREATE USER IDENTIFIED BY + DEFAULT TABLESPACE + QUOTA UNLIMITED ON + CONTAINER=ALL; + GRANT CREATE SESSION TO CONTAINER=ALL; + GRANT SET CONTAINER TO CONTAINER=ALL; + GRANT SELECT ON V_$DATABASE to CONTAINER=ALL; + GRANT FLASHBACK ANY TABLE TO CONTAINER=ALL; + GRANT SELECT ANY TABLE TO CONTAINER=ALL; + GRANT SELECT_CATALOG_ROLE TO CONTAINER=ALL; + GRANT EXECUTE_CATALOG_ROLE TO CONTAINER=ALL; + GRANT SELECT ANY TRANSACTION TO CONTAINER=ALL; + GRANT SELECT ANY DICTIONARY TO CONTAINER=ALL; + GRANT LOGMINING TO CONTAINER=ALL; + GRANT CREATE TABLE TO CONTAINER=ALL; + GRANT LOCK ANY TABLE TO CONTAINER=ALL; + GRANT CREATE SEQUENCE TO CONTAINER=ALL; + GRANT EXECUTE ON DBMS_LOGMNR TO CONTAINER=ALL; + GRANT EXECUTE ON DBMS_LOGMNR_D TO CONTAINER=ALL; + GRANT SELECT ON V_$LOGMNR_LOGS TO CONTAINER=ALL; + GRANT SELECT ON V_$LOGMNR_CONTENTS TO CONTAINER=ALL; + GRANT SELECT ON V_$LOGFILE TO CONTAINER=ALL; + GRANT SELECT ON V_$ARCHIVED_LOG TO CONTAINER=ALL; + GRANT SELECT ON V_$ARCHIVE_DEST_STATUS TO CONTAINER=ALL; + GRANT SELECT ON V_$TRANSACTION TO CONTAINER=ALL; +``` + +For a non-CDB database: + +```sql + CREATE USER IDENTIFIED BY + DEFAULT TABLESPACE + QUOTA UNLIMITED ON ; + GRANT CREATE SESSION TO ; + GRANT SELECT ON V_$DATABASE to ; + GRANT FLASHBACK ANY TABLE TO ; + GRANT SELECT ANY TABLE TO ; + GRANT SELECT_CATALOG_ROLE TO ; + GRANT EXECUTE_CATALOG_ROLE TO ; + GRANT SELECT ANY TRANSACTION TO ; + GRANT SELECT ANY DICTIONARY TO ; + GRANT LOGMINING TO ; + GRANT CREATE TABLE TO ; + GRANT LOCK ANY TABLE TO ; + GRANT CREATE SEQUENCE TO ; + GRANT EXECUTE ON DBMS_LOGMNR TO ; + GRANT EXECUTE ON DBMS_LOGMNR_D TO ; + GRANT SELECT ON V_$LOGMNR_LOGS TO ; + GRANT SELECT ON V_$LOGMNR_CONTENTS TO ; + GRANT SELECT ON V_$LOGFILE TO ; + GRANT SELECT ON V_$ARCHIVED_LOG TO ; + GRANT SELECT ON V_$ARCHIVE_DEST_STATUS TO ; + GRANT SELECT ON V_$TRANSACTION TO ; +``` + +Where: + - `` is the name of the user to create for CDC migration table access. + - `` is the password for the migration user. + - `` is the tablespace for ``. + +### Grant `SELECT` on source tables + +The new `` needs `SELECT` access to source tables. Oracle doesn't support +granting access to an entire schema, so you need to do this for each table. + +```sql +GRANT SELECT ON TO +``` + +Where: + - `` is the name of the user to create for CDC migration table access. + - `` is the name of an individual table to migrate. + +### Validate configuration + +The EDB DMS Reader installation (packaged as `cdcreader`) comes with a helper script that validates the Oracle configuration and helps you identify any issues. After you configure the database, we recommend running the script to ensure all checks pass. + +Run the script without arguments to print the usage: + +```shell +/opt/cdcreader/oracleConfigValidation.sh +``` + +## More information + +Your database is ready for CDC migration. + +For more information, see the [Debezium Oracle Connector](https://debezium.io/documentation/reference/2.2/index.html) documentation. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx new file mode 100644 index 00000000000..9b25a4e7a3c --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx @@ -0,0 +1,130 @@ +--- +title: "Preparing Postgres source databases" +--- + + + +Configuring Postgres for EDB Data Migration Service (EDB DMS) requires administrative privileges. Create a change data capture (CDC) migration role with limited privileges for data migration. + +Execute SQL statements with psql or a similar client. + +To connect to the source database using `psql`: + +```shell +psql -h -p -U -d +``` + +Where: + - `` is the name of the Postgres database to connect to. + - `` is the Postgres database host. + - `` is the Postgres database port. + - `` is an administrative user who can create and grant roles, alter ownership of tables to migrate, and create a replication slot. + +This command prompts you for the password associated with ``. + +## Postgres configuration + +To perform Postgres configuration: +1. [Verify Postgres configuration](#verify-postgres-configuration). +1. [Create new roles and grant acccess for CDC migration](#create-new-roles-and-grant-acccess-for-cdc-migration). +1. [Grant `SELECT` on source tables to the CDC migration role](#grant-select-on-source-tables-to-the-cdc-migration-role). +1. [Create a logical replication slot](#create-a-logical-replication-slot) + +### Verify Postgres configuration + +Verify or set these configuration entries for Postgres. + +1. Ensure `wal_level` is configured as `logical`. + + The CDC migration process leverages Postgres logical decoding. Setting `wal_level` to `logical` enables logical decoding of the Postgres write-ahead log (WAL). + +2. Ensure `max_wal_senders` is configured appropriately. + + If EDB Data Migration Service migration is the first streaming client for your database, set `max_wal_senders` to at least `1`. Other streaming clients might be present. Consult your DBA for the appropriate value for streaming client connectivity. + +3. Ensure `max_replication_slots` is configured appropriately. + + `max_replication_slots` must be at least `1` for the CDC migration process. This value can be higher if your organization uses Postgres replication. + + See the [Postgres replication documentation](https://www.postgresql.org/docs/current/runtime-config-replication.html) for more information. + +4. Ensure `max_wal_size` is configured for adequate WAL LSN lifetime. + + Set the `max_wal_size` value large enough that production traffic is generating mostly timed checkpoints and not requested checkpoints based on WAL size. + + The streaming migration process also requires changes to be available in the WAL until they can be streamed to durable message storage in the cloud infrastructure of EDB DMS. Setting `max_wal_size` too small can affect performance. It can also interfere with the migration process by allowing Postgres LSNs to be dropped from the WAL before they can be streamed. + + For more information, see this [EDB blog post on tuning `max_wal_size`](https://www.enterprisedb.com/blog/tuning-maxwalsize-postgresql) and the [Postgres WAL documentation](https://www.postgresql.org/docs/current/wal-configuration.html). + +#### Config validation script + +The EDB DMS Reader installation (packaged as `cdcreader`) comes with a helper script that validates the Postgres configuration and helps you identify any issues. After you configure the database, we recommend running the script and ensuring all checks passed. + +Run the script without arguments to print the usage: + +```shell +/opt/cdcreader/postgresConfigValidation.sh +``` + +### Create new roles and grant acccess for CDC migration + +First, create a new role for CDC migration with `LOGIN` and `REPLICATION` abilities granted: + +```sql +CREATE ROLE WITH REPLICATION LOGIN PASSWORD ; +``` + +`` needs to own the source tables to autocreate Postgres publications. Because the source tables are already owned by another role, you create a role/user that can act as the new owner and grant the specified replication group role to both the current table owner and to ``: + +```sql +CREATE ROLE ; +GRANT TO ; +GRANT TO ; +ALTER TABLE OWNER TO +``` + +Where: + + - `` is the name of the Postgres role or user to use for CDC migration database access. + - `` is the original production owner of the table. + - `` is the name of a role used to own the source tables to migrate for publication autocreation. + +### Grant `SELECT` on source tables to the CDC migration role + +The new `` needs `SELECT` access to source tables. You can grant access across a schema +or for each table. + +For an entire schema's tables, use this command: + +```sql +ALTER DEFAULT PRIVILEGES IN SCHEMA GRANT SELECT ON TABLES to +``` + +For each table, use: + +```sql +GRANT SELECT ON TO +``` + +Where: + - `` is the database schema name for the tables to migrate. + - `` is the name of the Postgres role or user to use for CDC migration database access. + - `` is the name of a table to migrate. + +### Create a logical replication slot + +The CDC migration process for Postgres sources leverages logical decoding and the publication/subscription mechanism. To use Postgres as a source, you need to create a replication slot for your CDC migration role: + +```sql +PERFORM pg_create_logical_replication_slot('', 'pgoutput'); +``` + +Where: + - `` is the name of the Postgres role or user to use for CDC migration database access. + - `pgoutput` is the logical decoding plugin supplied by Postgres that EDB DMS uses. + +## More information + +Your database is ready for CDC migration. + +For more information, see the [Debezium Postgres Connector](https://debezium.io/documentation/reference/stable/connectors/postgresql.html) documentation. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/remove_software.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/remove_software.mdx new file mode 100644 index 00000000000..d6a88cefa9b --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/remove_software.mdx @@ -0,0 +1,5 @@ +--- +title: "Removing customer software" +--- + +After verifying that the migration is up and running, you can remove the customer software. \ No newline at end of file diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/verify_migration.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/verify_migration.mdx new file mode 100644 index 00000000000..4a967416082 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/verify_migration.mdx @@ -0,0 +1,7 @@ +--- +title: "Verifying the migration" +--- + +Verify that the migration was successful by comparing the source and target databases. + +To do it, you can use [LiveCompare](/livecompare/latest/). \ No newline at end of file diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx new file mode 100644 index 00000000000..e052633a884 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx @@ -0,0 +1,29 @@ +--- +title: EDB Data Migration Service +indexCards: simple +deepToC: true +directoryDefaults: + description: "EDB Data Migration Service is a PG AI integrated migration solution that enables secure, fault-tolerant, and performant migrations to EDB Postgres AI Cloud Service." +navigation: + - "#Concepts" + - terminology + - "#Planning" + - supported_versions + - limitations + - "#Get started" + - getting_started + - "#Upgrading" + - upgrading + - "#Reference" + - rel_notes + - known_issues + +--- + +## EDB Postgres® AI migrations powered by EDB Data Migration Service + +EDB Data Migration Service (DMS) offers a secure and fault-tolerant way to migrate database data to the EDB Postgres AI platform. Using change data capture or CDC and event streaming, source database row changes are replicated to the migration destination. You can select a subset of your schemas' tables to migrate including support for schema, table, and column name remapping. + +EDB Data Migration Service is built on Apache Kafka and the open-source Debezium CDC platform. + +To migrate self-managed database sources you must download and configure the EDB DMS Reader. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/known_issues.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/known_issues.mdx new file mode 100644 index 00000000000..43548b9ae90 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/known_issues.mdx @@ -0,0 +1,6 @@ +--- +title: "Known issues" +description: Review the currently known issues. +--- + +There are currently no known issues for EDB Data Migration Service. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/limitations.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/limitations.mdx new file mode 100644 index 00000000000..fd0928f465c --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/limitations.mdx @@ -0,0 +1,24 @@ +--- +title: "Limitations" +description: Revise any unsupported Oracle data types and features. +--- + +A limited number of Oracle data types and features aren't supported by EDB Data Migration Service (EDB DMS). + +See the [Debezium documentation](https://debezium.io/documentation/reference/2.2/connectors/oracle.html#oracle-data-type-mappings) for detailed comments on supported data types. + +Unsupported Oracle data types include: + +- BFILE +- LONG +- LONG RAW +- RAW +- UROWID +- User-defined types (REF, Varrays, Nested Tables) +- ANY +- XML +- Spatial + +EDB DMS supports replicating Oracle tables that contain BLOB, CLOB, or NCLOB columns only if these also have the `PRIMARY KEY` constraint. If the tables don't have the `PRIMARY KEY` constraint, the streaming replication will only support INSERT operations. + +`BINARY_FLOAT` and `BINARY_DOUBLE` types in Oracle that might contain `Nan`, `+INF`, and `-INF` values are not supported by EDB DMS. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/index.mdx new file mode 100644 index 00000000000..ce6ea9aeac3 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/index.mdx @@ -0,0 +1,18 @@ +--- +title: "EDB Data Migration Service Release notes" +navTitle: "Release notes" +description: Learn about new features and functions. +navigation: +- rel_notes_2.0.0_preview +--- + +The EDB Data Migration Service documentation describes the latest version of the EDB +DMS Reader 2, including minor releases and patches. The release notes +provide information on what was new in each release. For new functionality +introduced in a minor or patch release, the content also indicates the release +that introduced the feature. + +| Release Date | Data Migration | +|--------------|------------------------------------------| +| 2023 Jun 9 | [2.0.0_preview](rel_notes_2.0.0_preview) | + diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/rel_notes_2.0.0_preview.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/rel_notes_2.0.0_preview.mdx new file mode 100644 index 00000000000..6b15b93e8eb --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/rel_notes_2.0.0_preview.mdx @@ -0,0 +1,14 @@ +--- +title: "Release notes for EDB Data Migration Service version 2.0.0_preview" +navTitle: "Version 2.0.0_preview" +--- + +EDB Data Migration Service (EDB DMS) version 2.0.0_preview is a new major version of EDB Data Migration Service. + +The highlights of this release include: + +* General availability of EDB DMS migration capabilities. + +| Type | Description | +|-------------|------------------------------------------------------------------------------------------| +| Enhancement | Parallel table snapshots are available with Debezium 2.2.0. | diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx new file mode 100644 index 00000000000..90492fa53ab --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx @@ -0,0 +1,36 @@ +--- +title: "Product compatibility" +description: Verify that your Oracle or Postgres database version is compatible with EDB Data Migration Service. +--- + + + +## Database versions + +The following database versions are supported. + +| Database version | Supported | +|------------------|-----------| +| Postgres 11 - 16 | Y | +| EPAS 11 - 16 | Y | +| Oracle 11g | Y | +| Oracle 12c | Y | +| Oracle 18c | Y | +| Oracle 19c | Y | +| Oracle 21c | Y | + +### Oracle + +The EDB Data Migration Service (EDB DMS) stack requires the Oracle database to have archive log mode enabled and supplemental logging data enabled at the table and database level. For details, see [Preparing Oracle source databases](../2/getting_started/preparing_db/preparing_oracle_source_databases). + +Container databases (CDB/PDB) and non-CDB sources are supported. + +### Postgres/EDB Postgres Advanced Server + +Postgres and EDB Postgres Advanced Server sources require a database role or user that can manage replications. For details, see [Preparing Postgres source databases](../2/getting_started/preparing_db/preparing_postgres_source_databases). + +When used as a target, EDB DMS requires a database role or user that can write to the appropriate target tables. For details, see [Preparing target databases](../2/getting_started/preparing_db). + +## Operating systems + +The EDB DMS Reader can run on Linux. For details, see [Installing EDB DMS Reader](getting_started/installing). diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx new file mode 100644 index 00000000000..d35a7d9f21b --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx @@ -0,0 +1,27 @@ +--- +title: "Terminology" +description: Learn some basic concepts associated with EDB Data Migration Service. +--- + +This terminology is important to understand EDB Data Migration Service (DMS) functionality. + +## Analytics Sync + +EDB Postgres® AI Analytics Sync is a type of replication/migration supported by EDB Data Migration Service. EDB Postgres Advanced Server and Postgres source database snapshots are transformed into Delta Lake format in CSP Object Storage. This object storage is exposed as Storage Locations in the EDB Postgres AI Console. + +## Apache Kafka + +Apache Kafka is an open-source, distributed-event streaming platform used by thousands of companies for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications. + +## Change Data Capture (CDC) + +CDC is a set of software design patterns used to determine and track changes in data sets by calculating *deltas*. EDB Data Migration Service uses CDC to stream changes from a database cluster to another. + +## Debezium + +Debezium is a Java-based, open-source platform for CDC. Debezium is supported by the Red Hat community. + +## EDB DMS Reader + +The EDB Data Migration Service Reader, packaged as `cdcreader`, uses Debezium to perform CDC operations on the source database and produce Kafka messages containing the change events. + diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/upgrading.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/upgrading.mdx new file mode 100644 index 00000000000..74ac0751558 --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/upgrading.mdx @@ -0,0 +1,16 @@ +--- +title: "Upgrading" +description: Learn how to upgrade the EDB DMS Reader to a more recent version. +--- + +EDB recommends upgrading the EDB DMS Reader when it is not performing a streaming migration. However, you can also temporarily stop a migration to perform an upgrade. +The EDB DMS Reader components are designed to terminate and restart gracefully. + +To upgrade the software: + +1. If the EDB DMS reader is currently running, stop the process. + +1. Install and start a new version of the EDB DMS Reader. + +1. Continue the migration by restarting the EDB DMS Reader with the updated software. + diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/index.mdx index 23611433d5b..889724e9e51 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/index.mdx @@ -5,13 +5,17 @@ indexCards: simple iconName: Migration description: About the migration and ETL tools that feed the EDB Postgres AI platform. navigation: + - data-migration-service + - migration-and-ai --- Moving your data to Postgres is a challenge that EDB Postgres AI is built to solve. The EDB Postgres AI platform includes a set of tools that help you migrate your data to Postgres and keep it up-to-date. -These tools include the EDB Postgres AI Migration Portal, Replication Server and Migration Toolkit. +These tools include the EDB Data Migration Service, EDB Postgres AI Migration Portal, Replication Server and Migration Toolkit. - +## The EDB Data Migration Service + +The [EDB Data Migration Service](data-migration-service) is a cloud-based service that actively helps you migrate your data to Postgres. ## The EDB Postgres AI Migration Portal @@ -36,10 +40,3 @@ The [EDB Postgres Replication Server](/eprs/latest/) is a tool that helps you ke ## The EDB Postgres AI Migration Toolkit The [EDB Postgres Migration Toolkit](/migration_toolkit/latest/) is a set of tools that help you migrate your data from other databases to Postgres. - - - - - - - diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/migration-and-ai.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/migration-and-ai.mdx new file mode 100644 index 00000000000..f8655c3373f --- /dev/null +++ b/advocacy_docs/edb-postgres-ai/migration-etl/migration-and-ai.mdx @@ -0,0 +1,17 @@ +--- +title: EDB Postgres AI Tools - Migration and AI +navTitle: Migration and AI +description: The migration offering of EDB Postgres AI Tools includes an innovative migration copilot. +--- + +EDB Postgres® AI Tools Migration Portal offers an [AI copilot](/migration_portal/latest/03_mp_using_portal/mp_ai_copilot/) to assist users who are migrating their databases to EDB Postgres. +The AI copilot is an AI-driven chatbot tool that helps users with the migration process. +The AI copilot is designed to help users with the following tasks: + +- **General migration assistance**: The AI copilot can help users with general migration questions. + For example, users can request information about available tools, and source and target database compatibility. +- **Migration planning**: The AI copilot can help users plan their migration, and obtain an overview of the end-to-end migration paths. +- **Migration assessment**: The AI copilot can help users assess their migration readiness. + For example, if there are compatibility issues between source and target databases, the AI Copilot can suggest compatible query alternatives. + +The AI copilot is designed to be user-friendly and easy to use. Users can interact with the AI copilot using natural language and improve the quality of answers with [good prompting](/migration_portal/latest/03_mp_using_portal/mp_ai_copilot/ai_good_prompts/). The AI copilot is also designed to be context-aware, so it can provide users with relevant information based on the context of the conversation. \ No newline at end of file diff --git a/src/templates/doc.js b/src/templates/doc.js index bd9e55eb9e1..29906fdf260 100644 --- a/src/templates/doc.js +++ b/src/templates/doc.js @@ -185,13 +185,13 @@ const DocTemplate = ({ data, pageContext }) => { const sections = depth === 2 ? buildSections(navTree) : null; // newtoc will be passed as the toc - this will blend the existing toc with the new sections - const newtoc = { items: [] }; + var newtoc = []; if (tableOfContents.items) { - newtoc.items.push(...tableOfContents.items); + newtoc.push(...tableOfContents.items); if (sections) { sections.forEach((section) => { section.slug = "section-" + slugger.slug(section.title); - newtoc.items.push({ + newtoc.push({ url: "#" + section.slug, title: section.title, }); @@ -290,7 +290,7 @@ const DocTemplate = ({ data, pageContext }) => { {showToc && ( - + )} diff --git a/src/templates/learn-doc.js b/src/templates/learn-doc.js index 100b5dad3b0..1d2d3d19ccf 100644 --- a/src/templates/learn-doc.js +++ b/src/templates/learn-doc.js @@ -223,10 +223,7 @@ const LearnDocTemplate = ({ data, pageContext }) => { {showToc && ( - + )} From 39f20a49cabe0955605fe329269f25fcd2c5f2af Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan Date: Tue, 27 Aug 2024 12:52:31 +0100 Subject: [PATCH 02/45] Remove /2/ in supported versions Signed-off-by: Dj Walker-Morgan --- .../data-migration-service/supported_versions.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx index 90492fa53ab..c3236598504 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx @@ -21,15 +21,15 @@ The following database versions are supported. ### Oracle -The EDB Data Migration Service (EDB DMS) stack requires the Oracle database to have archive log mode enabled and supplemental logging data enabled at the table and database level. For details, see [Preparing Oracle source databases](../2/getting_started/preparing_db/preparing_oracle_source_databases). +The EDB Data Migration Service (EDB DMS) stack requires the Oracle database to have archive log mode enabled and supplemental logging data enabled at the table and database level. For details, see [Preparing Oracle source databases](../getting_started/preparing_db/preparing_oracle_source_databases). Container databases (CDB/PDB) and non-CDB sources are supported. ### Postgres/EDB Postgres Advanced Server -Postgres and EDB Postgres Advanced Server sources require a database role or user that can manage replications. For details, see [Preparing Postgres source databases](../2/getting_started/preparing_db/preparing_postgres_source_databases). +Postgres and EDB Postgres Advanced Server sources require a database role or user that can manage replications. For details, see [Preparing Postgres source databases](../getting_started/preparing_db/preparing_postgres_source_databases). -When used as a target, EDB DMS requires a database role or user that can write to the appropriate target tables. For details, see [Preparing target databases](../2/getting_started/preparing_db). +When used as a target, EDB DMS requires a database role or user that can write to the appropriate target tables. For details, see [Preparing target databases](../getting_started/preparing_db). ## Operating systems From 3ff91611a69ef29c76195363f9b865b22f5d81ca Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan Date: Tue, 27 Aug 2024 13:02:15 +0100 Subject: [PATCH 03/45] Refix links in supported versions Signed-off-by: Dj Walker-Morgan --- .../data-migration-service/supported_versions.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx index c3236598504..1c5e69a97d8 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx @@ -21,15 +21,15 @@ The following database versions are supported. ### Oracle -The EDB Data Migration Service (EDB DMS) stack requires the Oracle database to have archive log mode enabled and supplemental logging data enabled at the table and database level. For details, see [Preparing Oracle source databases](../getting_started/preparing_db/preparing_oracle_source_databases). +The EDB Data Migration Service (EDB DMS) stack requires the Oracle database to have archive log mode enabled and supplemental logging data enabled at the table and database level. For details, see [Preparing Oracle source databases](getting_started/preparing_db/preparing_oracle_source_databases). Container databases (CDB/PDB) and non-CDB sources are supported. ### Postgres/EDB Postgres Advanced Server -Postgres and EDB Postgres Advanced Server sources require a database role or user that can manage replications. For details, see [Preparing Postgres source databases](../getting_started/preparing_db/preparing_postgres_source_databases). +Postgres and EDB Postgres Advanced Server sources require a database role or user that can manage replications. For details, see [Preparing Postgres source databases](getting_started/preparing_db/preparing_postgres_source_databases). -When used as a target, EDB DMS requires a database role or user that can write to the appropriate target tables. For details, see [Preparing target databases](../getting_started/preparing_db). +When used as a target, EDB DMS requires a database role or user that can write to the appropriate target tables. For details, see [Preparing target databases](getting_started/preparing_db). ## Operating systems From 4e02a7a5f49aa1d74fd38b50a705512f2480aaee Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Tue, 27 Aug 2024 18:57:04 +0200 Subject: [PATCH 04/45] Squashed commit of the following: commit 44c3bf6e6c254ebc44c7274f56cf2a6c6bdcceb2 Author: gvasquezvargas Date: Tue Aug 27 18:45:59 2024 +0200 Moved dms documentation to advocacy_docs and reorganized to match DJs frontpage PR commit 41b93f1292e03229e2d2e2e2dad68f2698985ffc Author: gvasquezvargas Date: Tue Aug 27 17:50:10 2024 +0200 Revert install template to remove automation as install topics have been added manually by dev team commit 5a7baea20e0a9e310f22c42225a97522e8d929f3 Merge: e40b51712 f83251d78 Author: gvasquezvargas Date: Tue Aug 27 17:44:00 2024 +0200 Merge remote-tracking branch 'origin/develop' into docs/transporter/ba-preview commit f83251d7883e8824f859390e264d985d95595ab1 Merge: 7f161a3f1 0f9f44335 Author: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Tue Aug 27 14:59:47 2024 +0530 Merge pull request #5978 from EnterpriseDB/content/docs/epas/release_notes_fix EPAS - 12 to 15 release notes fix commit 7f161a3f1dcdbe7299976867ff0ba86a0b288050 Merge: 8ef2ef700 3272c0418 Author: Josh Heyer Date: Mon Aug 26 09:37:37 2024 -0700 Merge pull request #5989 from EnterpriseDB/content/docs/epas/docs-961 commit 8ef2ef700c8e88832ac61676fd4f076b3c24a993 Merge: c0ff531f2 3f426e51c Author: Josh Heyer Date: Mon Aug 26 09:37:12 2024 -0700 Merge pull request #5988 from EnterpriseDB/automatic_docs_update/repo_EnterpriseDB/cloud-native-postgres/ref_refs/tags/v1.24.0 commit 3f426e51cf27aa07858b484f7825caf191c2bdd3 Author: Josh Heyer Date: Mon Aug 26 16:32:11 2024 +0000 Release notes commit 16cbc3b0552fa9a7c2c4e206dc496cdb4cb5ec2f Author: Josh Heyer Date: Mon Aug 26 16:24:44 2024 +0000 reconcile local changes commit 3272c0418faeba07ce28657de5d48886fbb06fc0 Author: gvasquezvargas Date: Mon Aug 26 18:12:23 2024 +0200 Added page to index commit 3985106a1de2bbf93ff9a4aca0819406cb727d8f Author: julienmarcbrown Date: Mon Aug 26 09:01:01 2024 -0700 Update release date commit 6ebe1d4ce8ccfecb5cbf20e84a1900e3af987b45 Author: julienmarcbrown Date: Mon Aug 26 08:50:47 2024 -0700 Add Release Note For EPAS 15.8.1 commit acc796b457b305a4e42c959efd7387971dacb50d Author: cnp-autobot <85171364+cnp-autobot@users.noreply.github.com> Date: Mon Aug 26 15:43:51 2024 +0000 [create-pull-request] automated change commit e40b5171253b4680ce9650a9b41e738a21b09233 Author: gvasquezvargas Date: Mon Aug 26 10:48:49 2024 +0200 Full name of product on the first mention, and abbreviation for subsequent mentions commit c0ff531f257f43d8de2ab648549850f052966cc9 Merge: f4dcffef8 e582765e3 Author: Betsy Gitelman Date: Fri Aug 23 13:57:00 2024 -0400 Merge pull request #5964 from EnterpriseDB/docs/pgd_reedit_13 Reedit of PGD doc - group 13 commit e582765e32e27ae6e3727e7ca544bc9703952926 Merge: abd704bc9 f4dcffef8 Author: Betsy Gitelman Date: Fri Aug 23 11:33:56 2024 -0400 Merge branch 'develop' into docs/pgd_reedit_13 commit abd704bc9fde3b1eb82fbd8298d71361f9fc0b56 Merge: 9aeb7f4ae 74c98113f Author: Betsy Gitelman Date: Fri Aug 23 11:16:46 2024 -0400 Merge branch 'docs/pgd_reedit_13' of https://github.com/EnterpriseDB/docs into docs/pgd_reedit_13 commit f4dcffef8a95ac9f1d8679661b984b4e3352f9ec Merge: a86cbe513 dfd51dddd Author: Betsy Gitelman Date: Fri Aug 23 11:05:56 2024 -0400 Merge pull request #5907 from EnterpriseDB/docs/edits_to_pgd_group12 PGD re-edit group 12 - routing commit 0f9f44335a1a98bf787af7e1b76c098c4bfad205 Author: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Fri Aug 23 10:10:59 2024 +0530 EPAS 12 to 15 release notes fix Edited the support ticket numbers commit dfd51dddd463047f731054362ea99afb279cff58 Author: Betsy Gitelman Date: Tue Aug 20 11:25:19 2024 -0400 Update proxy.mdx per DJ's review commit 94e8ff90f97b6e76052b2974ac9b18f2868f06a9 Author: Dj Walker-Morgan <126472455+djw-m@users.noreply.github.com> Date: Mon Aug 5 11:29:07 2024 +0100 Update product_docs/docs/pgd/5/routing/proxy.mdx commit 4829b8913e111dcd698135ce5e67f49613a2b5bb Author: Dj Walker-Morgan <126472455+djw-m@users.noreply.github.com> Date: Mon Aug 5 11:17:24 2024 +0100 Update proxy.mdx reworked for clearer connection behavior commit 2cfd57ac496df7eb7ff46ca590521ad9632503fa Author: Betsy Gitelman Date: Fri Aug 2 15:37:23 2024 -0400 Apply suggestions from code review commit 2ec9427b82680e388927808a37b24e4c990626c2 Author: Betsy Gitelman Date: Fri Aug 2 15:29:47 2024 -0400 PGD re-edit group 12 - routing commit ec2b0308dc00d94a30af9f7fd6dbccb6b584eea9 Author: Betsy Gitelman Date: Thu Aug 1 16:33:18 2024 -0400 PGD re-edit group 12 - routing commit 74c98113f30d477ff60e67d764a65937106166ed Author: Betsy Gitelman Date: Tue Aug 20 14:14:09 2024 -0400 Update product_docs/docs/pgd/5/security/roles.mdx commit bf1524186eef037c2d67e5bb3ba37bddcd80a4a7 Author: Betsy Gitelman Date: Tue Aug 20 14:05:54 2024 -0400 Update product_docs/docs/pgd/5/upgrades/tpa_overview.mdx Co-authored-by: Dj Walker-Morgan <126472455+djw-m@users.noreply.github.com> commit 0d3065b6c52bfb9e12c0025f5a0a69a381627dd0 Author: Betsy Gitelman Date: Tue Aug 20 14:04:55 2024 -0400 Update product_docs/docs/pgd/5/security/roles.mdx commit 33ee03b11a13d9edfd08fb445572bd3204e4ab7a Author: Betsy Gitelman Date: Tue Aug 20 14:03:54 2024 -0400 Update product_docs/docs/pgd/5/security/roles.mdx commit 1cbcd0bcfeb3d90218c905c58f37ef8ba901a6bd Author: Dj Walker-Morgan <126472455+djw-m@users.noreply.github.com> Date: Tue Aug 20 18:49:40 2024 +0100 Update product_docs/docs/pgd/5/security/roles.mdx commit d5176b8252269d7b9d0094fa1eb043f1a7c1b8ab Author: Betsy Gitelman Date: Tue Aug 20 13:37:06 2024 -0400 Reedit of PGD - group 13 commit 8d17c317d8f5bb88533fe05eea8399cf4587cbef Author: Betsy Gitelman Date: Thu Aug 15 16:50:54 2024 -0400 Re-edit of PGD group 13 commit 2da9136da8cef2e65feca9115044da212888974f Author: Javier Perozo Date: Wed Aug 21 09:45:48 2024 +0200 EDB Transporter - Removing support for ubuntu 18 commit 9aeb7f4ae8f1868794167cb2f640a565867cb886 Author: Betsy Gitelman Date: Tue Aug 20 13:37:06 2024 -0400 Reedit of PGD - group 13 commit c47754f4c20c3fd8a2f29b4cf1f4e436f241c7ac Merge: 080d3fb7f e300bb83a Author: gvasquezvargas Date: Tue Aug 20 14:32:11 2024 +0200 Merge pull request #5957 from EnterpriseDB/docs/dms/folder_structure Changed folder names to reflect product name and version commit e300bb83acf5da4cbcb5485d77e552f183bf92da Author: gvasquezvargas Date: Tue Aug 20 08:41:59 2024 +0200 Adapted source files to fix the deployment commit 035921546df6ebdac4effcf1df32f08be5eabe26 Author: Dj Walker-Morgan Date: Mon Aug 19 15:33:08 2024 +0100 Enable building and front page presence Signed-off-by: Dj Walker-Morgan commit c218818b819f28cd94ae1750aa0ec22d65ad7e0d Author: gvasquezvargas Date: Mon Aug 19 15:51:27 2024 +0200 Changed folder names to reflect product name and version commit 080d3fb7fa9b1606bf6cdb7ab3cbb11ef22ba035 Author: gvasquezvargas Date: Mon Aug 19 15:31:21 2024 +0200 Changed last instances of Transporter where mention is not in-code commit f25abfeb830ca31c4c727a233b0878e6d7c36184 Merge: 7d5f32e2c d2b8e53f5 Author: Javier Perozo Date: Mon Aug 19 09:40:55 2024 +0200 Merge pull request #5917 from EnterpriseDB/ET-480 feat(ET-480): Add documents for cdcreader installation commit 5660b5c1510f4e33e9e25b7b5f8769ec1b80aee9 Author: Betsy Gitelman Date: Thu Aug 15 16:50:54 2024 -0400 Re-edit of PGD group 13 commit d2b8e53f5f9905c59e022e2cd107ab3d66a33f47 Author: gvasquezvargas Date: Thu Aug 15 12:26:30 2024 +0200 Renamed files, replaced old naming with EDB Data Migration Service and EDB DMS Reader commit 7d5f32e2cba22ff7eb1362dc5beb1300b7bfd87a Merge: ac06c143e 71c5ef81f Author: gvasquezvargas Date: Thu Aug 15 12:10:17 2024 +0200 Merge pull request #5922 from EnterpriseDB/DMS/schema_feedback Improvements for schema migration commit ac06c143e2f12185c2eef5b2a0f673448f147b87 Merge: 24b7cad8b b49c5819e Author: gvasquezvargas Date: Thu Aug 15 12:09:54 2024 +0200 Merge pull request #5934 from EnterpriseDB/DMS/general-edits Data Migration Service: general edits commit b49c5819e305fa558150ad5b99e309c8dfcc6b26 Author: gvasquezvargas Date: Thu Aug 15 12:05:54 2024 +0200 Renamed Transporter to EDB Data Migration Service and Reader to EDB DMS Reader commit 90ecfc414091dae4715c672fb7dbc726a1f39c82 Author: Javier Perozo Date: Wed Aug 14 12:08:14 2024 +0400 typo commit 66469e04a3ae5afcc01635b1a600d205b5fcb901 Merge: 64b7c1745 24b7cad8b Author: Tian Lu Date: Wed Aug 14 00:44:09 2024 +0200 Merge branch 'docs/transporter/ba-preview' into ET-480 commit 64b7c1745c6632375e3f0c2e95fb5e739d2eeb6b Author: TianLu Date: Wed Aug 14 00:43:30 2024 +0200 fix(ET-480): remove deprecated OS versions and add some newer versions for cdcreader commit 25e7e95f5dd0bee375a01d6ef0c11579a681b6f5 Author: TianLu Date: Wed Aug 14 00:16:32 2024 +0200 fix(ET-480): add name "EDB Data Migration Reade" commit e50654d14b2d587607bbc5b52330d7117af26a9e Author: gvasquezvargas Date: Tue Aug 13 10:14:17 2024 +0200 Renaming and further edits commit 73f4868ad3ed3a74a00aed75659e2ef659390d8b Author: gvasquezvargas Date: Mon Aug 12 18:22:29 2024 +0200 General edits commit 71c5ef81fbe85c23214298646316fe5c4b511897 Author: gvasquezvargas Date: Mon Aug 12 17:50:16 2024 +0200 formatting, editing, rephrasing commit 05bd258745d1738bb728333aff2785a5655b2f44 Author: gvasquezvargas Date: Thu Aug 8 09:40:00 2024 +0200 Improvements for schema migration commit 24b7cad8b46a2934f4a1ee8ced949b50b69de998 Author: Javier Perozo Date: Mon Aug 12 10:22:10 2024 +0200 EDB Transporter - fixing URL path commit 87cb1162abe77a3a6e280b61b207be9d67f4d4eb Author: Javier Perozo Date: Mon Aug 12 10:18:02 2024 +0200 EDB Transporter - fixing URL path commit ab8340298e73d63dd87f18662f66a43fd94de336 Merge: ad763400d 891df8494 Author: Javier Perozo Date: Mon Aug 12 10:11:33 2024 +0200 Merge branch 'develop' into docs/transporter/ba-preview commit 4e8afc1f8ceb95f834383eda1b776876e5877d31 Author: Tian Lu Date: Thu Aug 8 14:41:51 2024 +0200 Update product_docs/docs/transporter/ba_preview/getting_started/installing/index.mdx Co-authored-by: gvasquezvargas commit 09e49f4eb728ec3ef9c480ea212a85dce7a1f120 Author: TianLu Date: Thu Aug 8 11:14:34 2024 +0200 fix(ET-480): fix doc reference commit ad763400d311cca161dc8f00007f5ddb1cf2918c Merge: fa0e8c668 d4972a0dd Author: gvasquezvargas Date: Thu Aug 8 09:04:36 2024 +0200 Merge pull request #5912 from EnterpriseDB/transporter/reader_suggestions Transporter/reader suggestions commit d4972a0dd08c169efca504ae06224fb7189ba4a0 Author: gvasquezvargas Date: Wed Aug 7 11:40:42 2024 +0200 Altering title to better reflect instructions commit b9a2b492edb16ee15c3850608507ca431ad9450f Author: TianLu Date: Wed Aug 7 11:12:19 2024 +0200 chore(ET-480): remove writer installation scripts commit 1acd0f0125448ce1c403fcfdda815e68ede9e0f9 Author: Yidian <1141312295@qq.com> Date: Wed Aug 7 16:13:36 2024 +0800 Update product_docs/docs/transporter/ba_preview/getting_started/config_reader.mdx LGTM Co-authored-by: gvasquezvargas commit b8b34f09012801ac00120bdb33071170db8d1738 Author: Yidian <1141312295@qq.com> Date: Wed Aug 7 16:05:49 2024 +0800 Update product_docs/docs/transporter/ba_preview/getting_started/config_reader.mdx Yes, this name will appear in the UI. So this one is ok Co-authored-by: gvasquezvargas commit 79a25a3b9e13aa0598eb2a31e904fba5c6183ac2 Author: TianLu Date: Tue Aug 6 21:49:33 2024 +0200 feat(ET-480): implement transporter/ba_preview/getting_started/installing/linux_x86_64 commit 896dc282859357193a509780cecd758beae7a01c Author: TianLu Date: Tue Aug 6 21:42:07 2024 +0200 feat(ET-480): initialize transporter/ba_preview/getting_started/installing commit 1bc6e4d439711c077e9e35f7c3ce6c63248cec56 Author: gvasquezvargas Date: Mon Jul 29 18:13:16 2024 +0200 Further edits to the reader instructions commit 8f067fa4c332ffa903502d21d0d8ac7276c038c8 Author: gvasquezvargas Date: Mon Jul 29 16:06:22 2024 +0200 Transporter: suggestions for reader walk-though commit fa0e8c668fa7c9144177557ae2417490105017fe Merge: 867bca0b0 0e9d94cf5 Author: gvasquezvargas Date: Mon Jul 29 10:33:20 2024 +0200 Merge branch 'develop' into docs/transporter/ba-preview commit 867bca0b0e7e724e167a62c682c490d1f733659f Author: Javier Perozo Date: Wed Jul 17 10:26:17 2024 +0200 EDB Transporter - temp to fix some refs in ui commit 324a2b36bbb2234b790afab4dba45160a5dc4100 Merge: 3bdadfbab c55496cc7 Author: gvasquezvargas Date: Tue Jul 16 14:12:23 2024 +0200 Merge branch 'develop' into docs/transporter/ba-preview commit 3bdadfbabb0fae782ee15136a247e019ac4a636c Author: Yidian Sun Date: Mon Jul 15 17:50:03 2024 +0800 EDB Transporter - add constraints of DBZ_ID commit e564fa0497e7c14681337118525f6503bc3b180e Author: Javier Perozo Date: Fri Jul 12 11:54:40 2024 +0200 EDB Transporter - updating config_reader.mdx commit aa680ccb590be60354d691fec3ac36bda9a782e4 Author: Javier Perozo Date: Fri Jul 12 10:33:28 2024 +0200 EDB Transporter - updating config_reader.mdx commit 85ccdcbf5f0b7801e35b90e6cea702dfccacf691 Author: Javier Perozo Date: Fri Jul 12 10:30:37 2024 +0200 EDB Transporter - updating preparing_oracle_source_databases.mdx commit 18f56347b82efd9f215dd43ee04963542ff580aa Author: Javier Perozo Date: Fri Jul 12 10:29:55 2024 +0200 EDB Transporter - updating preparing_oracle_source_databases.mdx commit fdc0fc1e8a92df79df75f2cc8b38511b53b94473 Author: Javier Perozo Date: Fri Jul 12 10:14:37 2024 +0200 EDB Transporter - updating supported_versions.mdx commit 141c0e1b85756cfae20e1ad2d574ec5859df1e7b Author: Javier Perozo Date: Fri Jul 12 09:54:38 2024 +0200 EDB Transporter - updating supported_versions.mdx commit 73a11180e51581f6194a55445f68f6bc06da0bf8 Author: Javier Perozo Date: Fri Jul 12 09:51:36 2024 +0200 EDB Transporter - updating config_reader commit cb24d9f16d46925568910911284f7ac1bb2c18ac Merge: cd637d051 a0592f31c Author: gvasquezvargas Date: Thu Jul 11 11:00:37 2024 +0200 Merge pull request #5814 from EnterpriseDB/docs/transporter/suggestions Suggestions for the Transporter documentation commit a0592f31c34dd9b34356e202dc8aff7dd73c834a Author: gvasquezvargas Date: Thu Jul 11 10:59:49 2024 +0200 style fix commit f8de35f90a6b9c7c134bc5acf69128feafdbbef0 Merge: 24527190c cd637d051 Author: gvasquezvargas Date: Mon Jul 8 11:35:33 2024 +0200 Preview branch 'docs/transporter/ba-preview' was updated, carrying the update over into docs/transporter/suggestions. commit cd637d051650dbd41e159cee7b6b563cdd41bba3 Author: Yidian Sun Date: Tue Jul 2 14:43:40 2024 +0800 EDB Transporter - updating format commit 24527190cf59dac9e4195d3a22cc0f91b15ed945 Merge: 356cb8b30 430ab242c Author: gvasquezvargas Date: Mon Jul 1 11:27:58 2024 +0200 Rebased and resolved conflicts commit 356cb8b302ad62df2fd1dd2ee454cbf4f5fb77b8 Author: gvasquezvargas Date: Fri Jun 28 12:01:12 2024 +0200 Added ToC to landing page commit 2880206c81307d08f51f9501ec37debde2166a07 Author: gvasquezvargas Date: Fri Jun 28 11:30:17 2024 +0200 light edits commit 430ab242c5724146bb874c3fbe30f8a70672ac00 Author: Yidian Sun Date: Fri Jun 28 17:17:54 2024 +0800 EDB Transporter - updating content add parameters explanation commit 4c938358a2f42dc18eba4a38ebd379932a93fbd6 Author: gvasquezvargas Date: Fri Jun 28 10:44:06 2024 +0200 added topic tiles to landing page commit 5f6c87a252ad01e690d209133e906a5f905597c3 Author: gvasquezvargas Date: Thu Jun 27 18:10:17 2024 +0200 cleanup commit 97c8cc1cb624e607bc302888bd062ea158f0c52a Merge: d817fa8d7 cd83ce245 Author: gvasquezvargas Date: Thu Jun 27 16:56:33 2024 +0200 Merge branch 'docs/transporter/ba-preview' into docs/transporter/suggestions commit cd83ce2453b9b3108074c69cdcc7b9ea6863c22e Author: Javier Perozo Date: Fri Jun 21 13:30:18 2024 +0200 EDB Transporter - updating content commit 189b9d46afe18b421aa0ed40c5c394df004b3f14 Author: Javier Perozo Date: Fri Jun 21 13:07:10 2024 +0200 EDB Transporter - updating content commit 5ecc5dac437f292d85c690fabe76cfd208cbbfa5 Author: Javier Perozo Date: Fri Jun 21 10:58:29 2024 +0200 EDB Transporter - updating content commit fa4771dae28fa49b5f9a2761359d9e50ee1b1cd4 Author: Javier Perozo Date: Fri Jun 21 10:51:42 2024 +0200 EDB Transporter - updating content commit e7a6fbbd9e921a649586b8d9e963ccfc5d632237 Author: Javier Perozo Date: Tue Jun 11 17:08:04 2024 +0200 EDB Transporter - updating content commit ac0f5987cc983aa0b3a56966152675bc9724df89 Author: Javier Perozo Date: Tue Jun 11 16:59:55 2024 +0200 EDB Transporter - updating content commit e085398f6878183593f0d579ccc1107c5c0e4543 Author: Javier Perozo Date: Tue Jun 11 15:59:28 2024 +0200 EDB Transporter - renaming version commit efa6d71983099e195daf620fb1202b46a0197c8e Author: drothery-edb Date: Thu Mar 9 14:42:27 2023 -0500 Transporter: alpha docs Applied Betsy's edits to the install templates Update preparing_postgres_source_databases.mdx Update preparing_oracle_source_databases.mdx Re-edited content Updated to bump packages Signed-off-by: Dj Walker-Morgan Icon updates Signed-off-by: Dj Walker-Morgan Added Transporter icon Signed-off-by: Dj Walker-Morgan EDB Transporter - Removing unused files removing from PR, incorrectly added generated files for SLES fixed reader install file name for SLES generated file for ppc index page added fix to ppc index page changed version from 2 to 2_preview generated install files for 2_preview Removed 2, alpha and preview folders Added SLES for PowerPC generated files for SLS another sles edit, missed on previous commit fixes erroneous update on earlier commit template changes for SLES platforms generated files for Transporter removed rhel for powerpc mostly completed system for EDB Transporter more tentative edits stumbling baby steps baby steps EDB Transporter preview docs adding product to the required files hide version EDB Transporter - Typos in preparing oracle source fixed vars in postgres file EDB Transporter - Revert "change dollar signs" on oracle table names Changed dollar signs to standard variable braces EDB Transporter - Code blocks type Update upgrading.mdx Removed comment Update terminology.mdx Removed hyphen and removed comment. Update preparing_postgres_source_databases.mdx Removed comment Fixed links and other formatting issues First pass at editing transporter preview EDB Transporter - Fix link EDB Transporter - Getting started EDB Transporter preview docs Add docs for transporter db config validation scripts Add basic text about EDB Transporter adding product to the required files hide version Transporter: alpha docs Add basic text about EDB Transporter adding product to the required files hide version Transporter: alpha docs commit d817fa8d718b97fdfe9ddb942c21408495892068 Author: gvasquezvargas Date: Thu Jun 27 16:30:09 2024 +0200 Break down topics for reader to follow up more easily commit fd13042420ab6358733fa37e3f4bbfa0b2baaab4 Author: gvasquezvargas Date: Thu Jun 27 12:17:54 2024 +0200 Updated left nav bar commit c0e3e91b83131bc02c85c892531d155149c9fe54 Author: gvasquezvargas Date: Thu Jun 27 08:11:00 2024 +0200 Suggestions for the Transporter preview commit c8a8c15df640886e1999483591d608bd7ecb7e67 Author: gvasquezvargas Date: Wed Jun 26 16:36:21 2024 +0200 started adding UI steps and reorganizing the getting started overview commit e81f7881ec6aafa0931c3571a31e9c01cd560c63 Author: Javier Perozo Date: Fri Jun 21 13:30:18 2024 +0200 EDB Transporter - updating content commit 26d2c417242f8fef957e33f30b7017cd15b2dc76 Author: Javier Perozo Date: Fri Jun 21 13:07:10 2024 +0200 EDB Transporter - updating content commit 368d01cf53010db778407cd03136c32a02bf5e0c Author: Javier Perozo Date: Fri Jun 21 10:58:29 2024 +0200 EDB Transporter - updating content commit 818162e8800458496fb567465a3b82861e01eec9 Author: Javier Perozo Date: Fri Jun 21 10:51:42 2024 +0200 EDB Transporter - updating content commit d27173f89ebb2440a020cf8a7efa1f7bdf4b41b2 Author: Javier Perozo Date: Tue Jun 11 17:08:04 2024 +0200 EDB Transporter - updating content commit 94ef814f8448ca685b3240359142cdd83dae1cff Author: Javier Perozo Date: Tue Jun 11 16:59:55 2024 +0200 EDB Transporter - updating content commit f0f861c8475f541dd4c7cfde1c12580f777c96a6 Author: Javier Perozo Date: Tue Jun 11 15:59:28 2024 +0200 EDB Transporter - renaming version commit 665272c251e84869f4eb216cb593880143773ac6 Author: drothery-edb Date: Thu Mar 9 14:42:27 2023 -0500 Transporter: alpha docs Applied Betsy's edits to the install templates Update preparing_postgres_source_databases.mdx Update preparing_oracle_source_databases.mdx Re-edited content Updated to bump packages Signed-off-by: Dj Walker-Morgan Icon updates Signed-off-by: Dj Walker-Morgan Added Transporter icon Signed-off-by: Dj Walker-Morgan EDB Transporter - Removing unused files removing from PR, incorrectly added generated files for SLES fixed reader install file name for SLES generated file for ppc index page added fix to ppc index page changed version from 2 to 2_preview generated install files for 2_preview Removed 2, alpha and preview folders Added SLES for PowerPC generated files for SLS another sles edit, missed on previous commit fixes erroneous update on earlier commit template changes for SLES platforms generated files for Transporter removed rhel for powerpc mostly completed system for EDB Transporter more tentative edits stumbling baby steps baby steps EDB Transporter preview docs adding product to the required files hide version EDB Transporter - Typos in preparing oracle source fixed vars in postgres file EDB Transporter - Revert "change dollar signs" on oracle table names Changed dollar signs to standard variable braces EDB Transporter - Code blocks type Update upgrading.mdx Removed comment Update terminology.mdx Removed hyphen and removed comment. Update preparing_postgres_source_databases.mdx Removed comment Fixed links and other formatting issues First pass at editing transporter preview EDB Transporter - Fix link EDB Transporter - Getting started EDB Transporter preview docs Add docs for transporter db config validation scripts Add basic text about EDB Transporter adding product to the required files hide version Transporter: alpha docs Add basic text about EDB Transporter adding product to the required files hide version Transporter: alpha docs --- .../data-migration-service/getting_started/installing/index.mdx | 1 - .../migration-etl/data-migration-service/index.mdx | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx index a22ead4771b..a1677666242 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx @@ -1,7 +1,6 @@ --- navTitle: Installing EDB DMS Reader title: Installing EDB DMS Reader on Linux - navigation: - linux_x86_64 --- diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx index e052633a884..891c33ed71d 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx @@ -4,6 +4,8 @@ indexCards: simple deepToC: true directoryDefaults: description: "EDB Data Migration Service is a PG AI integrated migration solution that enables secure, fault-tolerant, and performant migrations to EDB Postgres AI Cloud Service." + product: "data migration service" + iconName: EdbTransporter navigation: - "#Concepts" - terminology From 7e3ae25c0b476f080f20173d5ff15d898a627e65 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Wed, 28 Aug 2024 15:49:29 +0200 Subject: [PATCH 05/45] Last pass of edits after testing --- .../getting_started/apply_constraints.mdx | 2 +- .../getting_started/config_reader.mdx | 79 +++++++++++-------- .../getting_started/create_database.mdx | 4 +- .../getting_started/create_migration.mdx | 8 +- .../getting_started/index.mdx | 8 +- .../getting_started/mark_completed.mdx | 8 +- .../getting_started/prepare_schema.mdx | 20 ++--- .../preparing_oracle_source_databases.mdx | 4 + .../preparing_postgres_source_databases.mdx | 8 +- .../getting_started/verify_migration.mdx | 2 +- 10 files changed, 82 insertions(+), 61 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx index e158db04ba8..eaa736e971c 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx @@ -2,7 +2,7 @@ title: "Applying constraints" --- -At the beginning of your data migration journey with EDB Data Migration Service (EDB DMS), you [prepared and imported the schema](prepare_schema) of your source database. Now, re-apply the constraints that were excluded from the schema and data migration. +At the beginning of your data migration journey with EDB Data Migration Service (EDB DMS), you [prepared and imported the schema](prepare_schema) of your source database. Now, connect to the target database and re-apply the constraints that were excluded from the schema and data migration. ## `PRIMARY KEY` and `UNIQUE` constraints diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/config_reader.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/config_reader.mdx index 21a42923e74..179477f3326 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/config_reader.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/config_reader.mdx @@ -11,11 +11,15 @@ deepToC: true 1. Within your project, select **Migrate** > **Credentials**. +1. Select **Create Migration Credential** > **Download Credential**. + 1. Unzip the credentials folder and copy it to the host where the reader is installed. ## Configuring the reader -Set the following environment variables in `/opt/cdcreader/run-cdcreader.sh` with the right values: +1. Open the EDB DMS reader located in `/opt/cdcreader/run-cdcreader.sh` and ensure you have write permissions. + +1. Set the variables according to your environment and uncomment the edited lines. See [parameters](#parameters) for further guidance. ```shell ### set the following environment variables: @@ -75,7 +79,7 @@ Set the following environment variables in `/opt/cdcreader/run-cdcreader.sh` wit ## Parameters -### DBZ_ID +### `DBZ_ID` This is the name you assign to identify a source. This name will later appear as a _source_ in the **Migrate** > **Sources** section of the EDB Postgres AI Console. @@ -85,64 +89,70 @@ Consider the following ID guidelines: - You can use lowercase and uppercase characters, numbers, underscores(_) and hyphens(-) for the ID. Other special characters are not supported. - The ID must be unique. The source instances cannot have the same ID. -### RW_SERVICE_HOST +### `RW_SERVICE_HOST` Specifies the URL of the service that will host the migration. `transporter-rw-service` is always https://transporter-rw-service.biganimal.com. -### TLS_PRIVATE_KEY_PATH +### `TLS_PRIVATE_KEY_PATH` Directory path to the `client-key.pem` private key you downloaded from the EDB Postgres AI Console. -The Reader's HTTP client uses it to perform mTLS authentication with the `transporter-rw-service`. -### TLS_CERTIFICATE_PATH +The HTTP client of the EDB DMS Reader uses it to perform mTLS authentication with the `transporter-rw-service`. + +### `TLS_CERTIFICATE_PATH` Directory path to the X509 `client-cert.pem` certificate you downloaded from the EDB Postgres AI Console. -The Reader's HTTP client uses it to perform mTLS authentication with the `transporter-rw-service`. -### TLS_CA_PATH +The HTTP client of the EDB DMS Reader uses it to perform mTLS authentication with the `transporter-rw-service`. + +### `TLS_CA_PATH` -Directory path to the `int.cert` Certificate Authority you downloaded from the EDB Postgres AI Console. -It signs the certificate configured in TLS_CERTIFICATE_PATH. +Directory path to the `int.cert` Certificate Authority you downloaded from the EDB Postgres AI Console. -### APICURIOREQUEST_CLIENT_KEYSTORE_LOCATION +It signs the certificate configured in `TLS_CERTIFICATE_PATH`. + +### `APICURIOREQUEST_CLIENT_KEYSTORE_LOCATION` Directory path to the `client-keystore.p12` keystore location file you downloaded from the EDB Postgres AI Console. -It is created from the private key and certifiate configured in TLS_PRIVATE_KEY_PATH and TLS_CERTIFICATE_PATH. +It is created from the private key and certificate configured in `TLS_PRIVATE_KEY_PATH` and `TLS_CERTIFICATE_PATH`. + The Apicurio client uses it to perform mTLS authentication with the `transporter-rw-service`. -### APICURIOREQUEST_TRUSTSTORE_LOCATION -Created from the Certificate Authority configured in TLS_CA_PATH -Apicurio client use it to mTLS with transporter-rw-service +### `APICURIOREQUEST_TRUSTSTORE_LOCATION` + +Created from the Certificate Authority configured in `TLS_CA_PATH`. + +The Apicurio client uses it to perform mTLS authentication with the `transporter-rw-service`. + +### `DBZ_DATABASES` + +This is a list of source database information you require for the EDB DMS Reader be able to read the correct source database information for the migration. + +You can configure the EDB DMS Reader to migrate multiple databases. The `DBZ_DATABASES_0__TYPE` section delimits the information for the first database. You can use `DBZ_DATABASES_1__TYPE` to provide data for a second database. Add more sections to the EDB DMS Reader (`DBZ_DATABASES_2__TYPE`, `DBZ_DATABASES_3__TYPE`) by increasing the index manully. + +#### `DBZ_DATABASES_0__TYPE` -### DBZ_DATABASES -This is a source databases list you want to reader to connect. You can configure multiple database for one reader. -You need to increase the index manully in you configuration. +This is the source database type. EDB DMS reader supports `ORACLE` and `POSTGRES`. -For example: +#### `DBZ_DATABASES_0__HOSTNAME` -`DBZ_DATABASES_0__TYPE` is the type of the first source database. +The hostname of the source database. -`DBZ_DATABASES_1__TYPE` is the type of the second source database. +#### `DBZ_DATABASES_0__PORT` -#### DBZ_DATABASES_0__TYPE -Source database type, support ORACLE and POSTGRES currently +The port of the source database. -#### DBZ_DATABASES_0__HOSTNAME -Source database hostname +#### `DBZ_DATABASES_0__CATALOG` -#### DBZ_DATABASES_0__PORT -Source database port +The database name in the source database server. -#### DBZ_DATABASES_0__CATALOG -Source database catalog +#### `DBZ_DATABASES_0__USERNAME` -#### DBZ_DATABASES_0__USERNAME -Source database username +The database username of the source database. -#### DBZ_DATABASES_0__PASSWORD -Source database password +#### `DBZ_DATABASES_0__PASSWORD` -Once the reader finishes running, the cdc source will appear in the EDB Postgres AI Console. You can select this source for any [migration](create_migration). +The password for the database username of the source database. ## Running the EDB DMS Reader @@ -156,5 +166,6 @@ Once the reader finishes running, the cdc source will appear in the EDB Postgres 1. Go to the [EDB Postgres AI Console](https://portal.biganimal.com), and verify that a source with the `DBZ_ID` name is displayed in **Migrate** > **Sources**. +You can select this source for your [migration](create_migration). diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx index f45e9466dad..2f36e9cfc1e 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx @@ -18,6 +18,6 @@ To use an existing cluster as a target for the migration, ensure the tables you See [Creating a distributed high-availability cluster](/biganimal/latest/getting_started/creating_a_cluster/creating_a_dha_cluster/) for detailed instructions on how to create a distributed high availibility cluster. -1. In **Clusters** page, select your cluster, and use the **Quick Connect** option to access your instance from your terminal. +1. In the **Clusters** page, select your cluster, and use the **Quick Connect** option to access your instance from your terminal. -1. Create a new empty database. For an example, see [Create a new database](/biganimal/latest/free_trial/quickstart/#create-a-new-database). +1. Create a new empty database that you will use as a target for the migration. Alternatively, you can use the default database `edb_admin`. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_migration.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_migration.mdx index 3c5911256c7..10de35aa32f 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_migration.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_migration.mdx @@ -21,4 +21,10 @@ This establishes a sync between the source database and a target cluster in the 1. Select the tables and columns to migrate. Modify the table and column names if needed. -1. Select **Create Migration**. \ No newline at end of file +1. Select **Create Migration**. + +The EDB Postgres AI Console now displays a new migration. The EDB DMS Reader is constantly streaming data when the migration displays the **Running** state. Changes to data are replicated from the source to the target database as long as the migration is running. + +!!!note + The EDB DMS Reader streams data changes. It does not stream changes in the DDL objects. +!!! diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx index 672699c5abc..1791b4c2032 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx @@ -4,8 +4,8 @@ description: Understand how to create a migration from planning to execution. navigation: - create_database - prepare_schema - - preparing_db - installing + - preparing_db - config_reader - create_migration - mark_completed @@ -14,12 +14,14 @@ navigation: - remove_software --- -Setting up an EDB Data Migration consists of a number of steps. +Creating a migration to EDB Postgres AI involves a number of steps related to the preparation of your source and target clusters, the preparation of schemas and constrains, the installation and configuration of the EDB DMS reader, an data streaming to your new database cluster. + +This outline displays the steps in chronological order: 1. [Create a target database cluster](create_database) in the EDB Postgres® AI Console. 1. [Prepare the schema](prepare_schema) with Migration Portal and migrate the schema to the target database. -1. [Prepare your source Oracle or Postgres database](preparing_db) with `sqlplus` or `psql`. 1. [Install the EDB DMS Reader](installing) on your machine with your terminal. +1. [Prepare your source Oracle or Postgres database](preparing_db) with `sqlplus` or `psql`. 1. [Configure the EDB DMS Reader](config_reader) on your machine with your terminal. 1. [Create a new migration](create_migration) in the EDB Postgres AI Console. 1. [Mark the Migration as completed](mark_completed) in the EDB Postgres AI Console. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/mark_completed.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/mark_completed.mdx index a2460428bae..4e7385cd8e1 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/mark_completed.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/mark_completed.mdx @@ -2,10 +2,8 @@ title: "Mark migration as completed" --- -You have taken a snapshot of the source database and imported it to the EDB Postgres® AI Console. +The EDB DMS Reader will continue to stream any data updates performed on the source database to the target database until you mark the migration as completed. Check that your data is present in the target database before you mark it as completed. -To ensure that the target cluster is up-to-date with the source cluster and allow the EDB DMS Reader to be able to stream the latest updates on the source database to the cluster mark the migration as completed. +1. In the [EDB Postgres AI Console](https://portal.biganimal.com), in your project, select **Migrate** > **Migrations**. -1. In the EDB Postgres AI Console, in your project, select **Migrate** > **Migrations**. - -1. Select the **Mark as completed** button. \ No newline at end of file +1. Select the **check icon** next to your migration to mark the migration as completed. This stops the streaming procedure. \ No newline at end of file diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx index 01fddc64c41..e8fbb525096 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx @@ -35,15 +35,9 @@ EDB recommends [applying the following constraints](apply_constraints) on the ta `EXCLUDE` -## Preparing and importing your schema +## Preparing your schema -### Prerequisite - -You created a schema in the target database. - -### Prepare your schema - -#### Oracle to EDB Postgres Advanced Server migrations +### Oracle to EDB Postgres Advanced Server migrations Use [EDB Migration Portal](/migration_portal/latest/03_mp_using_portal/03_mp_quick_start/) to assess Oracle database sources for schema compatibility before starting the data migration process. @@ -51,16 +45,18 @@ EDB Migration Portal offers the ability to separate constraints from other desti Ensure you exclude `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints from the DDL before importing the schema to the target database. -#### Other migrations +### Other migrations -For data migrations to and from Postgres EDB recommends using [EDB Migration Toolkit](/migration_toolkit/latest/) to manage the schema. MTK's [offline migration](/migration_toolkit/latest/07_invoking_mtk/08_mtk_command_options/#offline-migration-options) capability provides an easy way to extract a database's schema and separate constraints. +For data migrations to and from Postgres, EDB recommends using [EDB Migration Toolkit](/migration_toolkit/latest/) to manage the schema. MTK's [offline migration](/migration_toolkit/latest/07_invoking_mtk/08_mtk_command_options/#offline-migration-options) capability provides an easy way to extract a database's schema and separate constraints. Ensure you exclude `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints from the DDL before importing the schema to the target database. Tools such as `pg_dump` and `pg_restore` are another valid route for migrating DDL. -### Import your schema to the target database +## Importing your schema to the target database After you have prepared the DDL, and excluded `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints, connect to the target database and import the SQL-formatted DDL file. -You can use [pgAdmin](https://www.pgadmin.org/docs/pgadmin4/latest/index.html), [psql](https://www.postgresql.org/docs/7.0/app-psql.htm) or a different tool to perform the import. +Importing the schema to the target database before the migration takes place is important as EDB DMS only migrates data. The target database must have the schemas in place for the migration to populate them with data. + +You can use different methods to import the schemas. You can manually create them in the target database, you can perform a [pg_restore](https://www.postgresql.org/docs/current/app-pgrestore.html) (for example, if you used [pg_dump](https://www.postgresql.org/docs/current/app-pgdump.html) to obtain the schemas), you can employ [pgAdmin](https://www.pgadmin.org/docs/pgadmin4/latest/index.html), [psql](https://www.postgresql.org/docs/7.0/app-psql.htm) or the tool of your preference. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx index 1afa506f874..07f11d07c98 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx @@ -272,6 +272,10 @@ Run the script without arguments to print the usage: /opt/cdcreader/oracleConfigValidation.sh ``` +## SSL configuration + +Ensure you configure your source database server to accept SSL connections to allow the EDB DMS reader to connect to it. You must create a server certificate and a server private key, for example, with OpenSSL, to enable this configuration. + ## More information Your database is ready for CDC migration. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx index 9b25a4e7a3c..605656cc80f 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx @@ -71,7 +71,7 @@ Run the script without arguments to print the usage: First, create a new role for CDC migration with `LOGIN` and `REPLICATION` abilities granted: ```sql -CREATE ROLE WITH REPLICATION LOGIN PASSWORD ; +CREATE ROLE WITH REPLICATION LOGIN PASSWORD ''; ``` `` needs to own the source tables to autocreate Postgres publications. Because the source tables are already owned by another role, you create a role/user that can act as the new owner and grant the specified replication group role to both the current table owner and to ``: @@ -116,13 +116,17 @@ Where: The CDC migration process for Postgres sources leverages logical decoding and the publication/subscription mechanism. To use Postgres as a source, you need to create a replication slot for your CDC migration role: ```sql -PERFORM pg_create_logical_replication_slot('', 'pgoutput'); +SELECT pg_create_logical_replication_slot('', 'pgoutput'); ``` Where: - `` is the name of the Postgres role or user to use for CDC migration database access. - `pgoutput` is the logical decoding plugin supplied by Postgres that EDB DMS uses. +## SSL configuration + +Ensure you configure your source database server to [accept SSL connections](https://www.postgresql.org/docs/current/ssl-tcp.html) to allow the EDB DMS reader to connect to it. You must create a server certificate and a server private key, for example, with OpenSSL, to enable this configuration. + ## More information Your database is ready for CDC migration. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/verify_migration.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/verify_migration.mdx index 4a967416082..0ce42a7ab42 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/verify_migration.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/verify_migration.mdx @@ -4,4 +4,4 @@ title: "Verifying the migration" Verify that the migration was successful by comparing the source and target databases. -To do it, you can use [LiveCompare](/livecompare/latest/). \ No newline at end of file +You can use [LiveCompare](/livecompare/latest/). \ No newline at end of file From 3250dccacb0b0686ee2a1a159ed0aa3c4a1f0dab Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Thu, 29 Aug 2024 15:50:37 +0200 Subject: [PATCH 06/45] Removed installation/removal steps as they are empty as discussed with Kyle --- .../data-migration-service/getting_started/index.mdx | 2 -- .../getting_started/remove_software.mdx | 5 ----- 2 files changed, 7 deletions(-) delete mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/remove_software.mdx diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx index 1791b4c2032..9dad5110217 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx @@ -11,7 +11,6 @@ navigation: - mark_completed - apply_constraints - verify_migration - - remove_software --- Creating a migration to EDB Postgres AI involves a number of steps related to the preparation of your source and target clusters, the preparation of schemas and constrains, the installation and configuration of the EDB DMS reader, an data streaming to your new database cluster. @@ -27,4 +26,3 @@ This outline displays the steps in chronological order: 1. [Mark the Migration as completed](mark_completed) in the EDB Postgres AI Console. 1. [Apply constraints](apply_constraints) to the new database. 1. [Verify the migration completed successfully](verify_migration) with LiveCompare. -1. [Remove customer software](remove_software). diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/remove_software.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/remove_software.mdx deleted file mode 100644 index d6a88cefa9b..00000000000 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/remove_software.mdx +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: "Removing customer software" ---- - -After verifying that the migration is up and running, you can remove the customer software. \ No newline at end of file From 5ea56cd8a69b7bdfadbc75bdac40929384c931d5 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Mon, 2 Sep 2024 17:26:21 +0200 Subject: [PATCH 07/45] Fixed step-by-step descriptions in index page for migration workflow --- .../getting_started/index.mdx | 29 ++++++++++++------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx index 9dad5110217..e2e39e1c7a9 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx @@ -1,6 +1,7 @@ --- title: "Getting started" description: Understand how to create a migration from planning to execution. +indexCards: none navigation: - create_database - prepare_schema @@ -13,16 +14,22 @@ navigation: - verify_migration --- -Creating a migration to EDB Postgres AI involves a number of steps related to the preparation of your source and target clusters, the preparation of schemas and constrains, the installation and configuration of the EDB DMS reader, an data streaming to your new database cluster. +Creating a migration from an Oracle or Postgres database to EDB Postgres AI involves several steps. -This outline displays the steps in chronological order: +1. **[Create a database cluster](create_database)**: In the EDB Postgres® AI Console, ensure you have created a database cluster. Connect to the cluster and create a database that will serve as a target for the migration. -1. [Create a target database cluster](create_database) in the EDB Postgres® AI Console. -1. [Prepare the schema](prepare_schema) with Migration Portal and migrate the schema to the target database. -1. [Install the EDB DMS Reader](installing) on your machine with your terminal. -1. [Prepare your source Oracle or Postgres database](preparing_db) with `sqlplus` or `psql`. -1. [Configure the EDB DMS Reader](config_reader) on your machine with your terminal. -1. [Create a new migration](create_migration) in the EDB Postgres AI Console. -1. [Mark the Migration as completed](mark_completed) in the EDB Postgres AI Console. -1. [Apply constraints](apply_constraints) to the new database. -1. [Verify the migration completed successfully](verify_migration) with LiveCompare. +1. **[Prepare the schema](prepare_schema)**: In your source machine, prepare the source database by exporting it and excluding unsupported constraints. Then, import the adapted schema to the target database. + +1. **[Install the EDB DMS Reader](installing)**: In your source machine, install the EDB DMS Reader from the EDB repository. + +1. **[Prepare your source Oracle or Postgres database](preparing_db)**: In your source machine, prepare the source database by altering settings and creating users that are required for the migration. Ensure your source database can accept SSL connections. + +1. **[Configure the EDB DMS Reader](config_reader)**: In the EDB Postgres AI Console, download dedicated migration credentials. In your source machine, configure the EDB DMS Reader by exporting environment variables that allow the Reader to connect to the source. Execute the Reader. + +1. **[Create a new migration](create_migration)**: In the EDB Postgres AI Console, create a new migration by selecting the source generated by the Reader in the Console, and selecting the target database you created for this purpose. + +1. **[Mark the Migration as completed](mark_completed)**: In the EDB Postgres AI Console, mark the migration as completed to stop the streaming process. + +1. **[Reapply any excluded constraints](apply_constraints)**: Apply the constraints you excluded from the schema migration in the new database. + +1. **[Verify the migration completed successfully](verify_migration)**: Use LiveCompare to ensure the target database has the same data as the source database. From 5f110480531f08e6a1a823cfab0248ef14f1b766 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Mon, 2 Sep 2024 18:11:50 +0200 Subject: [PATCH 08/45] Minor edits to getting started section --- .../getting_started/apply_constraints.mdx | 4 ++-- .../getting_started/create_database.mdx | 4 ++-- .../getting_started/prepare_schema.mdx | 10 +++++----- .../preparing_db/preparing_oracle_source_databases.mdx | 2 +- .../preparing_postgres_source_databases.mdx | 8 ++++---- .../getting_started/verify_migration.mdx | 2 +- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx index eaa736e971c..0d2ebfbbd4f 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx @@ -6,13 +6,13 @@ At the beginning of your data migration journey with EDB Data Migration Service ## `PRIMARY KEY` and `UNIQUE` constraints -For `PRIMARY KEY` and `UNIQUE` constraints, you have already created the tables and constraints in the target Postgres database. This allowed EDB DMS to map them to the source objects and migrate data sucessfuly. You don't need do to anything else. +For `PRIMARY KEY` and `UNIQUE` constraints, you have already created the tables and constraints in the target Postgres database. This allowed EDB DMS to map them to the source objects and migrate data successfuly. You don't need do to anything else. The same applies to `NOT NULL` constraints if you included them in your schema import. ## `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints -You can now re-apply the `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints you excluded during the [schema preparation and import](prepare_schema). For example, you can use ALTER statements. +You can now re-apply the `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints you excluded during the [schema preparation and import](prepare_schema). ## Ensuring data integrity diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx index 2f36e9cfc1e..a6051b61b28 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx @@ -4,9 +4,9 @@ title: "Creating a database cluster" You can use an existing EDB Postgres® AI cluster or create a new cluster for the target of the database migration. -To use an existing cluster as a target for the migration, ensure the tables you migrate and the load generated on target doesn't interfere with existing workloads. +To use an existing cluster as a target for the migration, ensure the tables you migrate and the load generated on target don't interfere with existing workloads. -1. Access the [EDB Postgres AI Console](https://portal.biganimal.com) and log in with your EDB Postgres AI Database Cloud Service credentials. +1. Access the [EDB Postgres AI Console](https://portal.biganimal.com) and log in with your EDB Postgres AI Cloud Service credentials. 1. Select the project where you want to create the database cluster. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx index e8fbb525096..07c7156743b 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx @@ -25,7 +25,7 @@ For rows in tables that do not have `PRIMARY KEY` or `UNIQUE` constraints it is EDB DMS is able to apply change events in parallel against destination database clusters. However, migrating some constraint types can negatively affect the performance of the migration. These type of constraints lead to unnecessary CPU and memory utilization in the context of an in-flight data migration from a consistent and referentially integral source database. -EDB recommends [applying the following constraints](apply_constraints) on the target database after you have signilized the end of the CDC stream by [marking the migration as completed](mark_completed) in the Console. +EDB recommends [applying the following constraints](apply_constraints) on the target database after you have signalized the end of the CDC stream by [marking the migration as completed](mark_completed) in the Console. `FOREIGN KEY` / `REFERENCES` @@ -35,7 +35,9 @@ EDB recommends [applying the following constraints](apply_constraints) on the ta `EXCLUDE` -## Preparing your schema +## Preparing your schema + +You can use several different methods to prepare your schema, exclude unsupported constraints and import it to the target database. This section provides guidelines of how to prepare your Oracle or Postgres source database with Migration Portal or Migration Toolkit, but other tools like `pg_dump` and `pg_restore` are also valid routes for migrating DDL. ### Oracle to EDB Postgres Advanced Server migrations @@ -47,12 +49,10 @@ Ensure you exclude `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` ### Other migrations -For data migrations to and from Postgres, EDB recommends using [EDB Migration Toolkit](/migration_toolkit/latest/) to manage the schema. MTK's [offline migration](/migration_toolkit/latest/07_invoking_mtk/08_mtk_command_options/#offline-migration-options) capability provides an easy way to extract a database's schema and separate constraints. +For data migrations from Postgres, EDB recommends using [EDB Migration Toolkit](/migration_toolkit/latest/) to manage the schema. MTK's [offline migration](/migration_toolkit/latest/07_invoking_mtk/08_mtk_command_options/#offline-migration-options) capability provides an easy way to extract a database's schema and separate constraints. Ensure you exclude `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints from the DDL before importing the schema to the target database. -Tools such as `pg_dump` and `pg_restore` are another valid route for migrating DDL. - ## Importing your schema to the target database After you have prepared the DDL, and excluded `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints, connect to the target database and import the SQL-formatted DDL file. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx index 07f11d07c98..5578c8c8e9c 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx @@ -274,7 +274,7 @@ Run the script without arguments to print the usage: ## SSL configuration -Ensure you configure your source database server to accept SSL connections to allow the EDB DMS reader to connect to it. You must create a server certificate and a server private key, for example, with OpenSSL, to enable this configuration. +Ensure you configure your source database server to accept SSL connections to allow the EDB DMS Reader to connect to it. You must create a server certificate and a server private key, for example, with OpenSSL, to enable this configuration. ## More information diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx index 605656cc80f..eed41fceb58 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx @@ -15,16 +15,16 @@ psql -h -p -U -d ``` Where: - - `` is the name of the Postgres database to connect to. + - `` is the name of the Postgres database source to connect to. - `` is the Postgres database host. - `` is the Postgres database port. - `` is an administrative user who can create and grant roles, alter ownership of tables to migrate, and create a replication slot. This command prompts you for the password associated with ``. -## Postgres configuration +## Postgres database configuration -To perform Postgres configuration: +To prepare the source Postgres database configuration: 1. [Verify Postgres configuration](#verify-postgres-configuration). 1. [Create new roles and grant acccess for CDC migration](#create-new-roles-and-grant-acccess-for-cdc-migration). 1. [Grant `SELECT` on source tables to the CDC migration role](#grant-select-on-source-tables-to-the-cdc-migration-role). @@ -125,7 +125,7 @@ Where: ## SSL configuration -Ensure you configure your source database server to [accept SSL connections](https://www.postgresql.org/docs/current/ssl-tcp.html) to allow the EDB DMS reader to connect to it. You must create a server certificate and a server private key, for example, with OpenSSL, to enable this configuration. +Ensure you configure your source database server to [accept SSL connections](https://www.postgresql.org/docs/current/ssl-tcp.html) to allow the EDB DMS Reader to connect to it. You must create a server certificate and a server private key, for example, with OpenSSL, to enable this configuration. ## More information diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/verify_migration.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/verify_migration.mdx index 0ce42a7ab42..d7f8502e458 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/verify_migration.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/verify_migration.mdx @@ -2,6 +2,6 @@ title: "Verifying the migration" --- -Verify that the migration was successful by comparing the source and target databases. +Compare the source and target databases to verify that the all data was migrated. You can use [LiveCompare](/livecompare/latest/). \ No newline at end of file From 5accde04b687c3d96a9c40eb1a8f7d1eb5f1eef2 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Tue, 3 Sep 2024 11:35:48 +0200 Subject: [PATCH 09/45] Minor edits remaining sections --- .../migration-etl/data-migration-service/index.mdx | 4 ++-- .../data-migration-service/supported_versions.mdx | 2 -- .../migration-etl/data-migration-service/terminology.mdx | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx index 891c33ed71d..4c0e5d6c527 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx @@ -22,10 +22,10 @@ navigation: --- -## EDB Postgres® AI migrations powered by EDB Data Migration Service +**EDB Postgres® AI migrations powered by EDB Data Migration Service** EDB Data Migration Service (DMS) offers a secure and fault-tolerant way to migrate database data to the EDB Postgres AI platform. Using change data capture or CDC and event streaming, source database row changes are replicated to the migration destination. You can select a subset of your schemas' tables to migrate including support for schema, table, and column name remapping. EDB Data Migration Service is built on Apache Kafka and the open-source Debezium CDC platform. -To migrate self-managed database sources you must download and configure the EDB DMS Reader. +To migrate self-managed database sources, see [Getting started](./getting_started/). diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx index 1c5e69a97d8..1d19773831d 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx @@ -29,8 +29,6 @@ Container databases (CDB/PDB) and non-CDB sources are supported. Postgres and EDB Postgres Advanced Server sources require a database role or user that can manage replications. For details, see [Preparing Postgres source databases](getting_started/preparing_db/preparing_postgres_source_databases). -When used as a target, EDB DMS requires a database role or user that can write to the appropriate target tables. For details, see [Preparing target databases](getting_started/preparing_db). - ## Operating systems The EDB DMS Reader can run on Linux. For details, see [Installing EDB DMS Reader](getting_started/installing). diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx index d35a7d9f21b..cb7a7fa52d3 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx @@ -23,5 +23,5 @@ Debezium is a Java-based, open-source platform for CDC. Debezium is supported by ## EDB DMS Reader -The EDB Data Migration Service Reader, packaged as `cdcreader`, uses Debezium to perform CDC operations on the source database and produce Kafka messages containing the change events. +The [EDB Data Migration Service Reader](./getting_started/installing/), packaged as `cdcreader`, uses Debezium to perform CDC operations on the source database and produce Kafka messages containing the change events. From 2f92ca5246f5f73a3576e153fc4e671ca1db96d1 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Wed, 4 Sep 2024 09:43:12 +0200 Subject: [PATCH 10/45] Removed upgrade pages, as no upgrades are available now --- .../data-migration-service/index.mdx | 2 -- .../data-migration-service/upgrading.mdx | 16 ---------------- 2 files changed, 18 deletions(-) delete mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/upgrading.mdx diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx index 4c0e5d6c527..a3b5d6b19aa 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx @@ -14,8 +14,6 @@ navigation: - limitations - "#Get started" - getting_started - - "#Upgrading" - - upgrading - "#Reference" - rel_notes - known_issues diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/upgrading.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/upgrading.mdx deleted file mode 100644 index 74ac0751558..00000000000 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/upgrading.mdx +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Upgrading" -description: Learn how to upgrade the EDB DMS Reader to a more recent version. ---- - -EDB recommends upgrading the EDB DMS Reader when it is not performing a streaming migration. However, you can also temporarily stop a migration to perform an upgrade. -The EDB DMS Reader components are designed to terminate and restart gracefully. - -To upgrade the software: - -1. If the EDB DMS reader is currently running, stop the process. - -1. Install and start a new version of the EDB DMS Reader. - -1. Continue the migration by restarting the EDB DMS Reader with the updated software. - From 949a95444460d4b4010d8a69a2bf64a0a3d81296 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Tue, 10 Sep 2024 17:34:18 +0200 Subject: [PATCH 11/45] Clarification on page --- .../getting_started/mark_completed.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/mark_completed.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/mark_completed.mdx index 4e7385cd8e1..170dad42a25 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/mark_completed.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/mark_completed.mdx @@ -2,7 +2,11 @@ title: "Mark migration as completed" --- -The EDB DMS Reader will continue to stream any data updates performed on the source database to the target database until you mark the migration as completed. Check that your data is present in the target database before you mark it as completed. +The EDB DMS Reader will continue to stream any data updates performed on the source database to the target database until you mark the migration as completed. + +It is important that you carefully select the best time to stop the data migration stream. Ensure no new inserts are executed in the source and verify that the last known inserts have been synchronized in the target. + +After checking that your data is present in the target database you can stop the stream by marking the migration as completed. 1. In the [EDB Postgres AI Console](https://portal.biganimal.com), in your project, select **Migrate** > **Migrations**. From a60b8712d05a345226346a221f138930ac79599b Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Wed, 11 Sep 2024 09:54:24 +0200 Subject: [PATCH 12/45] DMS: added purl for UI link --- .../data-migration-service/getting_started/config_reader.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/config_reader.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/config_reader.mdx index 179477f3326..db3a3149fa0 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/config_reader.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/config_reader.mdx @@ -1,6 +1,8 @@ --- title: "Configuring and running the EDB DMS Reader" deepToC: true +redirects: + - /purl/dms/configure_source --- ## Getting credentials From f5c06e73379c315c81d88fe559fd0f713796b017 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Thu, 12 Sep 2024 09:16:37 +0200 Subject: [PATCH 13/45] Implementing feedback from Matt p.1 --- .../getting_started/create_database.mdx | 2 +- .../data-migration-service/getting_started/index.mdx | 4 ++-- .../getting_started/prepare_schema.mdx | 8 +++++++- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx index a6051b61b28..b6f0a3e49ad 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/create_database.mdx @@ -12,7 +12,7 @@ To use an existing cluster as a target for the migration, ensure the tables you See [Creating a project](/biganimal/latest/administering_cluster/projects/#creating-a-project) if you want to create one. -1. Within your project, select **Create New** and **Database Cluser** to create an instance that will serve as target for the EDB Data Migration Service (EDB DMS). +1. Within your project, select **Create New** and **Database Cluster** to create an instance that will serve as target for the EDB Data Migration Service (EDB DMS). See [Creating a cluster](/biganimal/release/getting_started/creating_a_cluster/) for detailed instructions on how to create a single-node or a primary/standby high availability cluster. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx index e2e39e1c7a9..1c26f1e7d47 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/index.mdx @@ -16,9 +16,9 @@ navigation: Creating a migration from an Oracle or Postgres database to EDB Postgres AI involves several steps. -1. **[Create a database cluster](create_database)**: In the EDB Postgres® AI Console, ensure you have created a database cluster. Connect to the cluster and create a database that will serve as a target for the migration. +1. **[Create a target Postgres database cluster](create_database)**: In the EDB Postgres® AI Console, ensure you have created a database cluster. Connect to the cluster and create a database that will serve as a target for the migration. -1. **[Prepare the schema](prepare_schema)**: In your source machine, prepare the source database by exporting it and excluding unsupported constraints. Then, import the adapted schema to the target database. +1. **[Prepare the source database schema](prepare_schema)**: In your source machine, prepare the source database by exporting it and excluding unsupported constraints. Then, import the adapted schema to the target database. 1. **[Install the EDB DMS Reader](installing)**: In your source machine, install the EDB DMS Reader from the EDB repository. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx index 07c7156743b..ce37e8ce492 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx @@ -59,4 +59,10 @@ After you have prepared the DDL, and excluded `FOREIGN KEY`, `REFERENCES`, `CHEC Importing the schema to the target database before the migration takes place is important as EDB DMS only migrates data. The target database must have the schemas in place for the migration to populate them with data. -You can use different methods to import the schemas. You can manually create them in the target database, you can perform a [pg_restore](https://www.postgresql.org/docs/current/app-pgrestore.html) (for example, if you used [pg_dump](https://www.postgresql.org/docs/current/app-pgdump.html) to obtain the schemas), you can employ [pgAdmin](https://www.pgadmin.org/docs/pgadmin4/latest/index.html), [psql](https://www.postgresql.org/docs/7.0/app-psql.htm) or the tool of your preference. +You can use different methods to import the schemas. + +If you used Migration Portal to export an Oracle source schema, continue using it to [import the schema in offline or online mode](/migration_portal/latest/04_mp_migrating_database/03_mp_schema_migration/#mp_schema_migration). + +If you used Migration Toolkit to export a Postgres source in offline mode, execute the generated [offline migration script to start the import](/migration_toolkit/latest/07_invoking_mtk/08_mtk_command_options/#offline-migration-options). + +Other alternatives to import Postgres schemas include manually creating the schemas in the target database, performing a [pg_restore](https://www.postgresql.org/docs/current/app-pgrestore.html) (for example, if you used [pg_dump](https://www.postgresql.org/docs/current/app-pgdump.html) to obtain the schemas), or employing [pgAdmin](https://www.pgadmin.org/docs/pgadmin4/latest/index.html), [psql](https://www.postgresql.org/docs/7.0/app-psql.htm) or the tool of your preference. From 0e09cf6bcad0db9e6e676062c54397efe6ca5f3b Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Thu, 12 Sep 2024 14:04:14 +0200 Subject: [PATCH 14/45] Removed outdated release notes --- .../data-migration-service/index.mdx | 1 - .../data-migration-service/rel_notes/index.mdx | 18 ------------------ .../rel_notes/rel_notes_2.0.0_preview.mdx | 14 -------------- 3 files changed, 33 deletions(-) delete mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/index.mdx delete mode 100644 advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/rel_notes_2.0.0_preview.mdx diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx index a3b5d6b19aa..e58205bfcb0 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx @@ -15,7 +15,6 @@ navigation: - "#Get started" - getting_started - "#Reference" - - rel_notes - known_issues --- diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/index.mdx deleted file mode 100644 index ce6ea9aeac3..00000000000 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/index.mdx +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: "EDB Data Migration Service Release notes" -navTitle: "Release notes" -description: Learn about new features and functions. -navigation: -- rel_notes_2.0.0_preview ---- - -The EDB Data Migration Service documentation describes the latest version of the EDB -DMS Reader 2, including minor releases and patches. The release notes -provide information on what was new in each release. For new functionality -introduced in a minor or patch release, the content also indicates the release -that introduced the feature. - -| Release Date | Data Migration | -|--------------|------------------------------------------| -| 2023 Jun 9 | [2.0.0_preview](rel_notes_2.0.0_preview) | - diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/rel_notes_2.0.0_preview.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/rel_notes_2.0.0_preview.mdx deleted file mode 100644 index 6b15b93e8eb..00000000000 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/rel_notes/rel_notes_2.0.0_preview.mdx +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Release notes for EDB Data Migration Service version 2.0.0_preview" -navTitle: "Version 2.0.0_preview" ---- - -EDB Data Migration Service (EDB DMS) version 2.0.0_preview is a new major version of EDB Data Migration Service. - -The highlights of this release include: - -* General availability of EDB DMS migration capabilities. - -| Type | Description | -|-------------|------------------------------------------------------------------------------------------| -| Enhancement | Parallel table snapshots are available with Debezium 2.2.0. | From 3637b7677f4b613d67a6b9df933254c0be02830b Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Thu, 12 Sep 2024 14:07:16 +0200 Subject: [PATCH 15/45] Reorganized terminology section --- .../data-migration-service/terminology.mdx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx index cb7a7fa52d3..c172dec34c4 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx @@ -9,19 +9,19 @@ This terminology is important to understand EDB Data Migration Service (DMS) fun EDB Postgres® AI Analytics Sync is a type of replication/migration supported by EDB Data Migration Service. EDB Postgres Advanced Server and Postgres source database snapshots are transformed into Delta Lake format in CSP Object Storage. This object storage is exposed as Storage Locations in the EDB Postgres AI Console. -## Apache Kafka - -Apache Kafka is an open-source, distributed-event streaming platform used by thousands of companies for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications. - ## Change Data Capture (CDC) CDC is a set of software design patterns used to determine and track changes in data sets by calculating *deltas*. EDB Data Migration Service uses CDC to stream changes from a database cluster to another. -## Debezium - -Debezium is a Java-based, open-source platform for CDC. Debezium is supported by the Red Hat community. - ## EDB DMS Reader The [EDB Data Migration Service Reader](./getting_started/installing/), packaged as `cdcreader`, uses Debezium to perform CDC operations on the source database and produce Kafka messages containing the change events. +### Apache Kafka + +Apache Kafka is an open-source, distributed-event streaming platform used by thousands of companies for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications. + +### Debezium + +Debezium is a Java-based, open-source platform for CDC. Debezium is supported by the Red Hat community. + From f104383205d7fb857e957f4f5ff7ba8506865c72 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Thu, 12 Sep 2024 14:24:26 +0200 Subject: [PATCH 16/45] Added supported target databases on compatibility page --- .../supported_versions.mdx | 16 ++++++++++++++-- .../data-migration-service/terminology.mdx | 6 +++--- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx index 1d19773831d..3d20367dfc9 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx @@ -5,7 +5,7 @@ description: Verify that your Oracle or Postgres database version is compatible -## Database versions +## Supported source databases The following database versions are supported. @@ -29,6 +29,18 @@ Container databases (CDB/PDB) and non-CDB sources are supported. Postgres and EDB Postgres Advanced Server sources require a database role or user that can manage replications. For details, see [Preparing Postgres source databases](getting_started/preparing_db/preparing_postgres_source_databases). -## Operating systems +## Supported target databases + +Data Migration Service supports migrating to EDB Postgres AI Cloud Services. The target Postgres database cluster must meet the following requirements: + +- The cluster was deployed with the [EDB Hosted Cloud Service](/edb-postgres-ai/cloud-service/getting_started/planning/choosing_your_deployment/edb_hosted_cloud_service/). + +- AWS is the provider for the EDB Hosted Cloud Service cluster. + +!!!note + Other Cloud Service providers and [Your Cloud Account](/edb-postgres-ai/cloud-service/getting_started/planning/choosing_your_deployment/your_cloud_account/) deployments are currently not supported. +!!! + +## Supported operating systems The EDB DMS Reader can run on Linux. For details, see [Installing EDB DMS Reader](getting_started/installing). diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx index c172dec34c4..2dd2ffb7c45 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/terminology.mdx @@ -15,13 +15,13 @@ CDC is a set of software design patterns used to determine and track changes in ## EDB DMS Reader -The [EDB Data Migration Service Reader](./getting_started/installing/), packaged as `cdcreader`, uses Debezium to perform CDC operations on the source database and produce Kafka messages containing the change events. +The [EDB Data Migration Service Reader](./getting_started/installing/), packaged as `cdcreader`, uses Debezium to perform CDC operations on the source database and Kafka to produce messages containing the change events. ### Apache Kafka -Apache Kafka is an open-source, distributed-event streaming platform used by thousands of companies for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications. +[Apache Kafka](https://kafka.apache.org/) is an open-source, distributed-event streaming platform used by thousands of companies for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications. EDB Data Migration Service uses Kafka to manage data streaming from the source to the target database. ### Debezium -Debezium is a Java-based, open-source platform for CDC. Debezium is supported by the Red Hat community. +[Debezium](https://debezium.io/) is a Java-based, open-source platform for CDC that is supported by the Red Hat community. The EDB DMS Reader uses Debezium to perform reading operations and capture data changes on the source database. From a0cd8800819c071488bf3441e7bf5c077924be04 Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan <126472455+djw-m@users.noreply.github.com> Date: Thu, 19 Sep 2024 14:39:51 +0100 Subject: [PATCH 17/45] Update index.js to show on front page --- src/pages/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/index.js b/src/pages/index.js index 91cd090c99c..b9e6c2a83d4 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -327,12 +327,12 @@ const Page = () => { - {/* + Data Migration Service - */} + Migration Portal with AI Copilot From fb1847f9f3e5de2578e2f2c2227c21235a59b950 Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan Date: Fri, 20 Sep 2024 13:11:23 +0100 Subject: [PATCH 18/45] Fix front page links Signed-off-by: Dj Walker-Morgan --- src/pages/index.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/pages/index.js b/src/pages/index.js index b9e6c2a83d4..18ec98acf11 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -327,18 +327,15 @@ const Page = () => { - + Data Migration Service Migration Portal with AI Copilot - - Replication Server - Migration Toolkit From bc17cce454cf6878fd8f1bd1f4f8c444e7314c09 Mon Sep 17 00:00:00 2001 From: Josh Earlenbaugh Date: Fri, 20 Sep 2024 13:01:34 -0400 Subject: [PATCH 19/45] Started aligning with Matt L's review. --- .../data-migration-service/getting_started/prepare_schema.mdx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx index ce37e8ce492..e31a80b4a79 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx @@ -27,12 +27,10 @@ EDB DMS is able to apply change events in parallel against destination database EDB recommends [applying the following constraints](apply_constraints) on the target database after you have signalized the end of the CDC stream by [marking the migration as completed](mark_completed) in the Console. -`FOREIGN KEY` / `REFERENCES` +`FOREIGN KEY` `CHECK` -`CASCADE` - `EXCLUDE` ## Preparing your schema From e300990b2571a8816f0bbafe6062360f919c156a Mon Sep 17 00:00:00 2001 From: Josh Earlenbaugh Date: Fri, 20 Sep 2024 15:20:47 -0400 Subject: [PATCH 20/45] First round of alignment with Matt L's review. --- .../getting_started/prepare_schema.mdx | 2 +- .../preparing_postgres_source_databases.mdx | 21 ++++++++++++++++++- .../supported_versions.mdx | 6 +++++- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx index e31a80b4a79..89df00930ac 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx @@ -31,7 +31,7 @@ EDB recommends [applying the following constraints](apply_constraints) on the ta `CHECK` -`EXCLUDE` +`EXCLUDE USING` ## Preparing your schema diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx index eed41fceb58..4662ced1f47 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx @@ -1,5 +1,6 @@ --- title: "Preparing Postgres source databases" +deepToC: true --- @@ -89,9 +90,19 @@ Where: - `` is the original production owner of the table. - `` is the name of a role used to own the source tables to migrate for publication autocreation. +### Grant usage of the source schemas to the CDC migration role + +To select tables in a schema, the user must grant usage on the schema in addition to granting `SELECT` on the tables of the schema. This is necessary for all source schemas containing tables to be migrated. + +You can grant usage on a schema using the following command: + +```sql +GRANT USAGE ON SCHEMA TO ; +``` + ### Grant `SELECT` on source tables to the CDC migration role -The new `` needs `SELECT` access to source tables. You can grant access across a schema +The new `` now has schema access, but still needs `SELECT` access to the source tables of those schemas. You can grant access across a schema or for each table. For an entire schema's tables, use this command: @@ -123,6 +134,14 @@ Where: - `` is the name of the Postgres role or user to use for CDC migration database access. - `pgoutput` is the logical decoding plugin supplied by Postgres that EDB DMS uses. +### Grant `CREATE` privileges on the source database to the CDC migration role + +Since the `pgoutput` plugin is being used, the migration user needs to be granted `CREATE` priveleges on the source database in order for Debezium to be able to create publications. The 'CREATE' privelege can be granted using the following command: + +```sql +GRANT CREATE ON DATABASE to +``` + ## SSL configuration Ensure you configure your source database server to [accept SSL connections](https://www.postgresql.org/docs/current/ssl-tcp.html) to allow the EDB DMS Reader to connect to it. You must create a server certificate and a server private key, for example, with OpenSSL, to enable this configuration. diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx index 3d20367dfc9..55f10f5bc9d 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/supported_versions.mdx @@ -5,6 +5,10 @@ description: Verify that your Oracle or Postgres database version is compatible +## Supported EDB Postgres AI environments + +The EDB Data Migration Service (EDB DMS) is currently a public preview capability that is only for use with EDB Hosted Postgres AI Cloud Service deployments on AWS. + ## Supported source databases The following database versions are supported. @@ -21,7 +25,7 @@ The following database versions are supported. ### Oracle -The EDB Data Migration Service (EDB DMS) stack requires the Oracle database to have archive log mode enabled and supplemental logging data enabled at the table and database level. For details, see [Preparing Oracle source databases](getting_started/preparing_db/preparing_oracle_source_databases). +The EDB DMS stack requires the Oracle database to have archive log mode enabled and supplemental logging data enabled at the table and database level. For details, see [Preparing Oracle source databases](getting_started/preparing_db/preparing_oracle_source_databases). Container databases (CDB/PDB) and non-CDB sources are supported. From ffd442ae8646a010da41b241714dc902e61ba0be Mon Sep 17 00:00:00 2001 From: Josh Earlenbaugh Date: Fri, 20 Sep 2024 15:27:59 -0400 Subject: [PATCH 21/45] Small change. --- .../preparing_db/preparing_oracle_source_databases.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx index 5578c8c8e9c..6c2788a771d 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_oracle_source_databases.mdx @@ -176,7 +176,7 @@ CREATE TABLESPACE DATAFILE '/opt/oracle/oradata/ORCLCDB/logmin -- For CDB/PDB deployments we must specify at least one tablespace datafile for the PDB CREATE TABLESPACE DATAFILE '/opt/oracle/oradata/ORCLCDB/ORCPDB1/logminer_tbs_1.dbf' SIZE 25M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED; -- Additional data files can be added with as follows -ALTER TABLESPACE DATAFILE '/opt/oracle/oradata/ORCLCDB/ORCLPDB1/logminer_tbs_2.dbf' SIZE 25M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED; +ALTER TABLESPACE ADD DATAFILE '/opt/oracle/oradata/ORCLCDB/ORCLPDB1/logminer_tbs_2.dbf' SIZE 25M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED; ``` Where: From 906efb69a88d32411302e918bfd675e489fcd9b1 Mon Sep 17 00:00:00 2001 From: Josh Earlenbaugh Date: Fri, 20 Sep 2024 15:30:10 -0400 Subject: [PATCH 22/45] Small change to index. --- .../migration-etl/data-migration-service/index.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx index e58205bfcb0..e9c04317473 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/index.mdx @@ -23,6 +23,8 @@ navigation: EDB Data Migration Service (DMS) offers a secure and fault-tolerant way to migrate database data to the EDB Postgres AI platform. Using change data capture or CDC and event streaming, source database row changes are replicated to the migration destination. You can select a subset of your schemas' tables to migrate including support for schema, table, and column name remapping. +EDB DMS is currently a public preview capability that is available for use with EDB Hosted EDB Postgres AI Cloud Service deployments on AWS. + EDB Data Migration Service is built on Apache Kafka and the open-source Debezium CDC platform. To migrate self-managed database sources, see [Getting started](./getting_started/). From 48cea567e614732ef6aa60a4fcb233a34c1f9bf6 Mon Sep 17 00:00:00 2001 From: Josh Earlenbaugh Date: Mon, 23 Sep 2024 14:31:20 -0400 Subject: [PATCH 23/45] Switched out key words for kinds --- .../getting_started/apply_constraints.mdx | 4 ++-- .../getting_started/prepare_schema.mdx | 16 +++++----------- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx index 0d2ebfbbd4f..38182f84622 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx @@ -10,9 +10,9 @@ For `PRIMARY KEY` and `UNIQUE` constraints, you have already created the tables The same applies to `NOT NULL` constraints if you included them in your schema import. -## `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints +## Foreign key, check, and exclusion constraints -You can now re-apply the `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints you excluded during the [schema preparation and import](prepare_schema). +You can now re-apply any foreign key, check, or exclusion constraints you excluded during the [schema preparation and import](prepare_schema). ## Ensuring data integrity diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx index 89df00930ac..d20715d5cc0 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx @@ -21,17 +21,11 @@ For rows in tables that do not have `PRIMARY KEY` or `UNIQUE` constraints it is `NOT NULL` constraints don't represent a significant performance impact for destination servers and can also be included in the schema import. !!! -### `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints +### Foreign Key, check, and exclusion constraints EDB DMS is able to apply change events in parallel against destination database clusters. However, migrating some constraint types can negatively affect the performance of the migration. These type of constraints lead to unnecessary CPU and memory utilization in the context of an in-flight data migration from a consistent and referentially integral source database. -EDB recommends [applying the following constraints](apply_constraints) on the target database after you have signalized the end of the CDC stream by [marking the migration as completed](mark_completed) in the Console. - -`FOREIGN KEY` - -`CHECK` - -`EXCLUDE USING` +Accordingly, EDB recommends [applying foreign key, check, and exclusion constraints](apply_constraints#foreign-key-) on the target database only after you have signalized the end of the CDC stream by [marking the migration as completed](mark_completed) in the Console. ## Preparing your schema @@ -43,17 +37,17 @@ Use [EDB Migration Portal](/migration_portal/latest/03_mp_using_portal/03_mp_qui EDB Migration Portal offers the ability to separate constraints from other destination DDL with the [offline migration option](/migration_portal/latest/04_mp_migrating_database/03_mp_schema_migration/#offline-migration). -Ensure you exclude `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints from the DDL before importing the schema to the target database. +Ensure you exclude foreign key, check, and exclusion constraints from the DDL before importing the schema to the target database. ### Other migrations For data migrations from Postgres, EDB recommends using [EDB Migration Toolkit](/migration_toolkit/latest/) to manage the schema. MTK's [offline migration](/migration_toolkit/latest/07_invoking_mtk/08_mtk_command_options/#offline-migration-options) capability provides an easy way to extract a database's schema and separate constraints. -Ensure you exclude `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints from the DDL before importing the schema to the target database. +Ensure you exclude foreign key, check, and exclusion constraints from the DDL before importing the schema to the target database. ## Importing your schema to the target database -After you have prepared the DDL, and excluded `FOREIGN KEY`, `REFERENCES`, `CHECK`, `CASCADE` and `EXCLUDE` constraints, connect to the target database and import the SQL-formatted DDL file. +After you have prepared the DDL and excluded foreign key, check, and exclusion constraints, connect to the target database and import the SQL-formatted DDL file. Importing the schema to the target database before the migration takes place is important as EDB DMS only migrates data. The target database must have the schemas in place for the migration to populate them with data. From 553b330e3ee7b552ebf0d17016c6eaf8184c3e15 Mon Sep 17 00:00:00 2001 From: Josh Earlenbaugh Date: Mon, 23 Sep 2024 16:03:09 -0400 Subject: [PATCH 24/45] Added section to remind to run configuration validation script. --- .../getting_started/prepare_schema.mdx | 2 +- .../preparing_postgres_source_databases.mdx | 54 +++++++++++++++++++ 2 files changed, 55 insertions(+), 1 deletion(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx index d20715d5cc0..e28aa0b8273 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx @@ -25,7 +25,7 @@ For rows in tables that do not have `PRIMARY KEY` or `UNIQUE` constraints it is EDB DMS is able to apply change events in parallel against destination database clusters. However, migrating some constraint types can negatively affect the performance of the migration. These type of constraints lead to unnecessary CPU and memory utilization in the context of an in-flight data migration from a consistent and referentially integral source database. -Accordingly, EDB recommends [applying foreign key, check, and exclusion constraints](apply_constraints#foreign-key-) on the target database only after you have signalized the end of the CDC stream by [marking the migration as completed](mark_completed) in the Console. +Accordingly, EDB recommends [applying foreign key, check, and exclusion constraints](apply_constraints/#foreign-key-check-and-exclusion-constraints) on the target database only after you have signalized the end of the CDC stream by [marking the migration as completed](mark_completed) in the Console. ## Preparing your schema diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx index 4662ced1f47..14616686a16 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx @@ -146,6 +146,60 @@ GRANT CREATE ON DATABASE to Ensure you configure your source database server to [accept SSL connections](https://www.postgresql.org/docs/current/ssl-tcp.html) to allow the EDB DMS Reader to connect to it. You must create a server certificate and a server private key, for example, with OpenSSL, to enable this configuration. +## Run the config validation script + +Now that you have stepped through the entire configuration process, validate your Postgres configuration using the [config validation script](#config-validation-script) with the correct parameters. To illustrate, consider the following example: + +1. First, create an array that contains the name of all the tables that need to be migrated in . format. In this example: + +```bash +arr=(test1.table1 test1.table2 test1.table3 test1.table4) +``` + +2. Next, run the script with the necessary parameters. In this example: + +```bash +PG_USERNAME=postgres PG_PASSWORD=password PG_HOST=localhost PG_PORT=5432 DB_NAME=postgres DBZ_USERNAME=debezium DBZ_PASSWORD=dbz ./postgresConfigValidation.sh "${arr[@]}" +``` + +You should get a response similar to the following: + +``` + *** [Transporter] - Validate WAL Level +wal_level: logical +[Pass] wal_level is 'logical'. + + *** [Transporter] - Validate max WAL senders +max_wal_senders: 10 +[Pass] max_wal_senders is at least 1. + + *** [Transporter] - Validate max replication slots +max_replication_slots: 10 +[Pass] max_replication_slots is at least 1. + + *** [Transporter] - Validate max WAL size +max_wal_size: 1 GB +[Fail] max_wal_size (1 GB) is less than 8 GB + + *** [Transporter] - Validate checkpoints +checkpoints_timed: 378 +checkpoints_req: 3 +[Pass] Timed checkpoints are more frequent than requested checkpoints. + + *** [Transporter] - Check miguser user role +[Pass] User 'miguser' is present +[Pass] User 'miguser' has replication permission + + *** [Transporter] - Check SELECT privilege on the tables to be migrated +[Pass] User miguser has select privilege on all tables to be migrated. + + *** [Transporter] - Check presence of a replication slot +[Pass] Replication slot 'miguser' is present + +``` + + + ## More information Your database is ready for CDC migration. From dc463363b9afa98d1097056b133cdf2a93f02a48 Mon Sep 17 00:00:00 2001 From: Josh Earlenbaugh Date: Mon, 23 Sep 2024 16:16:21 -0400 Subject: [PATCH 25/45] Added admonition. --- .../preparing_db/preparing_postgres_source_databases.mdx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx index 14616686a16..28eeead12f1 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx @@ -31,9 +31,9 @@ To prepare the source Postgres database configuration: 1. [Grant `SELECT` on source tables to the CDC migration role](#grant-select-on-source-tables-to-the-cdc-migration-role). 1. [Create a logical replication slot](#create-a-logical-replication-slot) -### Verify Postgres configuration +### Setting Postgres configuration -Verify or set these configuration entries for Postgres. +Ensure the following configuration entries for Postgres are set as follows: 1. Ensure `wal_level` is configured as `logical`. @@ -198,7 +198,9 @@ checkpoints_req: 3 ``` - +!!! Note +In the above example output, note that the `max_wal_size` check failed. Despite this, this migration was able to be run successfully without any issues. Therefore, although this check might fail, you may still have enough resources depending on the workload. +!!! ## More information From 7c26da1888339faae3243f2f94a3e4413e237db1 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Tue, 24 Sep 2024 10:51:16 +0200 Subject: [PATCH 26/45] fixed preparing pg dbs TOC and L3 headings --- .../preparing_postgres_source_databases.mdx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx index 28eeead12f1..41d9847b3af 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx @@ -26,12 +26,14 @@ This command prompts you for the password associated with ``. ## Postgres database configuration To prepare the source Postgres database configuration: -1. [Verify Postgres configuration](#verify-postgres-configuration). +1. [Set the Postgres configuration](#set-the-postgres-configuration). 1. [Create new roles and grant acccess for CDC migration](#create-new-roles-and-grant-acccess-for-cdc-migration). +1. [Grant usage of the source schemas to the CDC migration role](#grant-usage-of-the-source-schemas-to-the-cdc-migration-role). 1. [Grant `SELECT` on source tables to the CDC migration role](#grant-select-on-source-tables-to-the-cdc-migration-role). -1. [Create a logical replication slot](#create-a-logical-replication-slot) +1. [Create a logical replication slot](#create-a-logical-replication-slot). +1. [Grant `CREATE` privileges on the source database to the CDC migration role](#grant-create-privileges-on-the-source-database-to-the-cdc-migration-role). -### Setting Postgres configuration +### Set the Postgres configuration Ensure the following configuration entries for Postgres are set as follows: @@ -199,7 +201,7 @@ checkpoints_req: 3 ``` !!! Note -In the above example output, note that the `max_wal_size` check failed. Despite this, this migration was able to be run successfully without any issues. Therefore, although this check might fail, you may still have enough resources depending on the workload. +In the above example output, note that the `max_wal_size` check failed. Despite this, the migration was able to be run successfully without any issues. Therefore, although this check might fail, a lower setting may actually be sufficient in certain use cases depending on the workload on the source database. !!! ## More information From da087ede9a7c4e8a336ee01f67481c496aded80b Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Tue, 24 Sep 2024 11:19:23 +0200 Subject: [PATCH 27/45] Remove style formatting from primary key and unique constraints --- .../getting_started/apply_constraints.mdx | 8 ++++---- .../getting_started/prepare_schema.mdx | 8 ++++---- .../migration-etl/data-migration-service/limitations.mdx | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx index 38182f84622..a30458f0b35 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/apply_constraints.mdx @@ -4,11 +4,11 @@ title: "Applying constraints" At the beginning of your data migration journey with EDB Data Migration Service (EDB DMS), you [prepared and imported the schema](prepare_schema) of your source database. Now, connect to the target database and re-apply the constraints that were excluded from the schema and data migration. -## `PRIMARY KEY` and `UNIQUE` constraints +## Primary key and unique constraints -For `PRIMARY KEY` and `UNIQUE` constraints, you have already created the tables and constraints in the target Postgres database. This allowed EDB DMS to map them to the source objects and migrate data successfuly. You don't need do to anything else. +For primary key and unique constraints, you have already created the tables and constraints in the target Postgres database. This allowed EDB DMS to map them to the source objects and migrate data successfuly. You don't need do to anything else. -The same applies to `NOT NULL` constraints if you included them in your schema import. +The same applies to not null constraints if you included them in your schema import. ## Foreign key, check, and exclusion constraints @@ -16,6 +16,6 @@ You can now re-apply any foreign key, check, or exclusion constraints you exclud ## Ensuring data integrity -Rows in tables that do not have `PRIMARY KEY` or `UNIQUE` constraints were migrated with at-least-once delivery, therefore, it is possible that these rows are duplicate. +Rows in tables that don't have primary key or unique constraints were migrated with at-least-once delivery, therefore, it is possible that these rows are duplicate. Deduplication can be performed as part of the [verification](verify_migration). \ No newline at end of file diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx index e28aa0b8273..ed28864066f 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx @@ -11,14 +11,14 @@ Some of your schema's constraints must be included before the data migration tak The presence of target database constraints, triggers, and WAL logging can impact the data migration performance. When possible, EDB recommends a two-step import of schema constraints. -### `PRIMARY KEY` and `UNIQUE` constraints +### Primary key and unique constraints -`PRIMARY KEY` and `UNIQUE` constraints are leveraged by EDB DMS to provide an exactly-once delivery when migrating data to the target database. Therefore, `PRIMARY KEY` and `UNIQUE` constraints should be included in the schema import that you perform before the data migration begins. Other types of constraints should be excluded from the schema import. +Primary key and unique constraints are leveraged by EDB DMS to provide an exactly-once delivery when migrating data to the target database. Therefore, Primary key and unique constraints should be included in the schema import that you perform before the data migration begins. Other types of constraints should be excluded from the schema import. -For rows in tables that do not have `PRIMARY KEY` or `UNIQUE` constraints it is only possible to achieve at-least-once delivery. Deduplication can be performed during the [data migration verification](verify_migration). +For rows in tables that do not have primary key or unique constraints it is only possible to achieve at-least-once delivery. Deduplication can be performed during the [data migration verification](verify_migration). !!!note - `NOT NULL` constraints don't represent a significant performance impact for destination servers and can also be included in the schema import. + Not null constraints don't represent a significant performance impact for destination servers and can also be included in the schema import. !!! ### Foreign Key, check, and exclusion constraints diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/limitations.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/limitations.mdx index fd0928f465c..f27ce703144 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/limitations.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/limitations.mdx @@ -19,6 +19,6 @@ Unsupported Oracle data types include: - XML - Spatial -EDB DMS supports replicating Oracle tables that contain BLOB, CLOB, or NCLOB columns only if these also have the `PRIMARY KEY` constraint. If the tables don't have the `PRIMARY KEY` constraint, the streaming replication will only support INSERT operations. +EDB DMS supports replicating Oracle tables that contain BLOB, CLOB, or NCLOB columns only if these also have the primary key constraint. If the tables don't have the primary key constraint, the streaming replication will only support INSERT operations. `BINARY_FLOAT` and `BINARY_DOUBLE` types in Oracle that might contain `Nan`, `+INF`, and `-INF` values are not supported by EDB DMS. From c4d547861f315f0ff12293197be6bdb6efa5cac3 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Tue, 24 Sep 2024 11:27:30 +0200 Subject: [PATCH 28/45] Minor edit --- .../data-migration-service/getting_started/prepare_schema.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx index ed28864066f..d23eb764f73 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/prepare_schema.mdx @@ -21,7 +21,7 @@ For rows in tables that do not have primary key or unique constraints it is only Not null constraints don't represent a significant performance impact for destination servers and can also be included in the schema import. !!! -### Foreign Key, check, and exclusion constraints +### Foreign key, check, and exclusion constraints EDB DMS is able to apply change events in parallel against destination database clusters. However, migrating some constraint types can negatively affect the performance of the migration. These type of constraints lead to unnecessary CPU and memory utilization in the context of an in-flight data migration from a consistent and referentially integral source database. From 6962ace47f6b3737d795b5072d05ca406f1ae2ab Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Tue, 24 Sep 2024 16:50:00 +0200 Subject: [PATCH 29/45] Deleted section on creating a replication slot, reader automatically handles that --- .../preparing_postgres_source_databases.mdx | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx index 41d9847b3af..4017b7af1ce 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx @@ -30,7 +30,6 @@ To prepare the source Postgres database configuration: 1. [Create new roles and grant acccess for CDC migration](#create-new-roles-and-grant-acccess-for-cdc-migration). 1. [Grant usage of the source schemas to the CDC migration role](#grant-usage-of-the-source-schemas-to-the-cdc-migration-role). 1. [Grant `SELECT` on source tables to the CDC migration role](#grant-select-on-source-tables-to-the-cdc-migration-role). -1. [Create a logical replication slot](#create-a-logical-replication-slot). 1. [Grant `CREATE` privileges on the source database to the CDC migration role](#grant-create-privileges-on-the-source-database-to-the-cdc-migration-role). ### Set the Postgres configuration @@ -124,18 +123,6 @@ Where: - `` is the name of the Postgres role or user to use for CDC migration database access. - `` is the name of a table to migrate. -### Create a logical replication slot - -The CDC migration process for Postgres sources leverages logical decoding and the publication/subscription mechanism. To use Postgres as a source, you need to create a replication slot for your CDC migration role: - -```sql -SELECT pg_create_logical_replication_slot('', 'pgoutput'); -``` - -Where: - - `` is the name of the Postgres role or user to use for CDC migration database access. - - `pgoutput` is the logical decoding plugin supplied by Postgres that EDB DMS uses. - ### Grant `CREATE` privileges on the source database to the CDC migration role Since the `pgoutput` plugin is being used, the migration user needs to be granted `CREATE` priveleges on the source database in order for Debezium to be able to create publications. The 'CREATE' privelege can be granted using the following command: From 44fb7af53f4f9119b0fc2307c0518bf4a708b856 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 3 Sep 2024 11:49:22 -0400 Subject: [PATCH 30/45] first steps to setting up templatized install instructions for Data Migration Service --- install_template/config.yaml | 29 +++++++++++++++++++ .../almalinux-8-or-rocky-linux-8.njk | 5 ++++ .../products/data-migration-service/base.njk | 25 ++++++++++++++++ .../data-migration-service/debian-10.njk | 2 ++ .../data-migration-service/debian-11.njk | 2 ++ .../data-migration-service/debian.njk | 4 +++ .../products/data-migration-service/index.njk | 9 ++++++ .../data-migration-service/ppc64le_index.njk | 7 +++++ .../data-migration-service/rhel-8-or-ol-8.njk | 5 ++++ .../data-migration-service/sles-12.njk | 6 ++++ .../data-migration-service/sles-15.njk | 5 ++++ .../data-migration-service/ubuntu-18.04.njk | 2 ++ .../data-migration-service/ubuntu-20.04.njk | 2 ++ .../data-migration-service/ubuntu-22.04.njk | 2 ++ .../data-migration-service/ubuntu.njk | 1 + .../data-migration-service/x86_64_index.njk | 7 +++++ 16 files changed, 113 insertions(+) create mode 100644 install_template/templates/products/data-migration-service/almalinux-8-or-rocky-linux-8.njk create mode 100644 install_template/templates/products/data-migration-service/base.njk create mode 100644 install_template/templates/products/data-migration-service/debian-10.njk create mode 100644 install_template/templates/products/data-migration-service/debian-11.njk create mode 100644 install_template/templates/products/data-migration-service/debian.njk create mode 100644 install_template/templates/products/data-migration-service/index.njk create mode 100644 install_template/templates/products/data-migration-service/ppc64le_index.njk create mode 100644 install_template/templates/products/data-migration-service/rhel-8-or-ol-8.njk create mode 100644 install_template/templates/products/data-migration-service/sles-12.njk create mode 100644 install_template/templates/products/data-migration-service/sles-15.njk create mode 100644 install_template/templates/products/data-migration-service/ubuntu-18.04.njk create mode 100644 install_template/templates/products/data-migration-service/ubuntu-20.04.njk create mode 100644 install_template/templates/products/data-migration-service/ubuntu-22.04.njk create mode 100644 install_template/templates/products/data-migration-service/ubuntu.njk create mode 100644 install_template/templates/products/data-migration-service/x86_64_index.njk diff --git a/install_template/config.yaml b/install_template/config.yaml index 187d2eb3245..8d4a18a0b46 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -1,4 +1,33 @@ products: + - name: Data Migration Service + platforms: + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [2.0] + - name: AlmaLinux 9 or Rocky Linux 9 + arch: x86_64 + supported versions: [2.0] + - name: RHEL 9 or OL 9 + arch: x86_64 + supported versions: [2.0] + - name: Debian 11 + arch: x86_64 + supported versions: [2.0] + - name: Debian 12 + arch: x86_64 + supported versions: [2.0] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [2.0] + - name: Ubuntu 22.04 + arch: x86_64 + supported versions: [2.0] + - name: SLES 15 + arch: x86_64 + supported versions: [2.0] + - name: SLES 12 + arch: x86_64 + supported versions: [2.0] - name: EDB JDBC Connector platforms: - name: RHEL 8 diff --git a/install_template/templates/products/data-migration-service/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/data-migration-service/almalinux-8-or-rocky-linux-8.njk new file mode 100644 index 00000000000..85caebe4da4 --- /dev/null +++ b/install_template/templates/products/data-migration-service/almalinux-8-or-rocky-linux-8.njk @@ -0,0 +1,5 @@ +{% extends "products/data-migration-service/base.njk" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} +{% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} +{% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} +{% block prerequisites %}{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/data-migration-service/base.njk b/install_template/templates/products/data-migration-service/base.njk new file mode 100644 index 00000000000..5924b36d3f2 --- /dev/null +++ b/install_template/templates/products/data-migration-service/base.njk @@ -0,0 +1,25 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName = packageName or 'cdcreader=-1.4-1.4766136665.17.1.jammy' %} +{% set writerPackageName = writerPackageName or 'cdcwriter=1.3-1.4766201953.4.1.jammy' %} +{% import "platformBase/_deploymentConstants.njk" as deploy %} +{% block frontmatter %} +{# + If you modify deployment path here, please first copy the old expression + and add it to the list under "redirects:" below - this ensures we don't + break any existing links. +#} +deployPath: edb-postgres-ai/migration-etl/data-migration-service/{{ product.version }}/installing/linux_{{platform.arch}}/data-migration-service_{{deploy.map_platform[platform.name]}}.mdx +{% endblock frontmatter %} + +{% block installCommand %} +Install CDCReader: +```shell +sudo {{packageManager}} install {{ packageName }} +``` + +Install CDCWriter: +```shell +sudo {{packageManager}} install {{ writerPackageName }} +``` +{% endblock installCommand %} + diff --git a/install_template/templates/products/data-migration-service/debian-10.njk b/install_template/templates/products/data-migration-service/debian-10.njk new file mode 100644 index 00000000000..61391348f43 --- /dev/null +++ b/install_template/templates/products/data-migration-service/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/data-migration-service/debian.njk" %} +{% set platformBaseTemplate = "debian-10" %} diff --git a/install_template/templates/products/data-migration-service/debian-11.njk b/install_template/templates/products/data-migration-service/debian-11.njk new file mode 100644 index 00000000000..093d9ddf240 --- /dev/null +++ b/install_template/templates/products/data-migration-service/debian-11.njk @@ -0,0 +1,2 @@ +{% extends "products/data-migration-service/debian.njk" %} +{% set platformBaseTemplate = "debian-11" %} diff --git a/install_template/templates/products/data-migration-service/debian.njk b/install_template/templates/products/data-migration-service/debian.njk new file mode 100644 index 00000000000..913797e667c --- /dev/null +++ b/install_template/templates/products/data-migration-service/debian.njk @@ -0,0 +1,4 @@ +{% extends "products/data-migration-service/base.njk" %} +{% block debian_ubuntu %}This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. + +```shell{% endblock debian_ubuntu %} \ No newline at end of file diff --git a/install_template/templates/products/data-migration-service/index.njk b/install_template/templates/products/data-migration-service/index.njk new file mode 100644 index 00000000000..d724f2e7b74 --- /dev/null +++ b/install_template/templates/products/data-migration-service/index.njk @@ -0,0 +1,9 @@ +{% extends "platformBase/index.njk" %} +{% set productShortname="data-migration-service" %} + +{% block frontmatter %} +deployPath: edb-postgres-ai/migration-etl/{{productShortname}}/{{ product.version }}/installing/index.mdx +{% endblock frontmatter %} +{% block navigation %} +- linux_x86_64 +{% endblock navigation %} diff --git a/install_template/templates/products/data-migration-service/ppc64le_index.njk b/install_template/templates/products/data-migration-service/ppc64le_index.njk new file mode 100644 index 00000000000..11bad6298dc --- /dev/null +++ b/install_template/templates/products/data-migration-service/ppc64le_index.njk @@ -0,0 +1,7 @@ + +{% extends "platformBase/ppc64le_index.njk" %} +{% set productShortname="transporter" %} + +{% block frontmatter %} +{{super()}} +{% endblock frontmatter %} diff --git a/install_template/templates/products/data-migration-service/rhel-8-or-ol-8.njk b/install_template/templates/products/data-migration-service/rhel-8-or-ol-8.njk new file mode 100644 index 00000000000..5c86b5dfa0d --- /dev/null +++ b/install_template/templates/products/data-migration-service/rhel-8-or-ol-8.njk @@ -0,0 +1,5 @@ +{% extends "products/data-migration-service/base.njk" %} +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} +{% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} +{% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} +{% block prerequisites %}{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/data-migration-service/sles-12.njk b/install_template/templates/products/data-migration-service/sles-12.njk new file mode 100644 index 00000000000..17133292bf2 --- /dev/null +++ b/install_template/templates/products/data-migration-service/sles-12.njk @@ -0,0 +1,6 @@ +{% extends "products/data-migration-service/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} +{% set packageManager = "zypper" %} +{% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} +{% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} + diff --git a/install_template/templates/products/data-migration-service/sles-15.njk b/install_template/templates/products/data-migration-service/sles-15.njk new file mode 100644 index 00000000000..0e94954e533 --- /dev/null +++ b/install_template/templates/products/data-migration-service/sles-15.njk @@ -0,0 +1,5 @@ +{% extends "products/data-migration-service/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set packageManager = "zypper" %} +{% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} +{% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} diff --git a/install_template/templates/products/data-migration-service/ubuntu-18.04.njk b/install_template/templates/products/data-migration-service/ubuntu-18.04.njk new file mode 100644 index 00000000000..7b9992b6113 --- /dev/null +++ b/install_template/templates/products/data-migration-service/ubuntu-18.04.njk @@ -0,0 +1,2 @@ +{% extends "products/data-migration-service/ubuntu.njk" %} +{% set platformBaseTemplate = "ubuntu-18.04" %} diff --git a/install_template/templates/products/data-migration-service/ubuntu-20.04.njk b/install_template/templates/products/data-migration-service/ubuntu-20.04.njk new file mode 100644 index 00000000000..15df88848be --- /dev/null +++ b/install_template/templates/products/data-migration-service/ubuntu-20.04.njk @@ -0,0 +1,2 @@ +{% extends "products/data-migration-service/ubuntu.njk" %} +{% set platformBaseTemplate = "ubuntu-20.04" %} diff --git a/install_template/templates/products/data-migration-service/ubuntu-22.04.njk b/install_template/templates/products/data-migration-service/ubuntu-22.04.njk new file mode 100644 index 00000000000..10bd2d5a432 --- /dev/null +++ b/install_template/templates/products/data-migration-service/ubuntu-22.04.njk @@ -0,0 +1,2 @@ +{% extends "products/data-migration-service/ubuntu.njk" %} +{% set platformBaseTemplate = "ubuntu-22.04" %} diff --git a/install_template/templates/products/data-migration-service/ubuntu.njk b/install_template/templates/products/data-migration-service/ubuntu.njk new file mode 100644 index 00000000000..e7c49e0c676 --- /dev/null +++ b/install_template/templates/products/data-migration-service/ubuntu.njk @@ -0,0 +1 @@ +{% extends "products/data-migration-service/base.njk" %} diff --git a/install_template/templates/products/data-migration-service/x86_64_index.njk b/install_template/templates/products/data-migration-service/x86_64_index.njk new file mode 100644 index 00000000000..a00dcc01f45 --- /dev/null +++ b/install_template/templates/products/data-migration-service/x86_64_index.njk @@ -0,0 +1,7 @@ + +{% extends "platformBase/x86_64_index.njk" %} +{% set productShortname="data-migration-service" %} + +{% block frontmatter %} +deployPath: edb-postgres-ai/migration-etl/{{productShortname}}/{{ product.version }}/installing/linux_x86_64/index.mdx +{% endblock frontmatter %} From 3e31c63758e427b9d775774fab5f31099e3d51f8 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 4 Sep 2024 08:53:06 -0400 Subject: [PATCH 31/45] Fixed name and short name --- install_template/config.yaml | 2 +- .../data-migration-service/debian-10.njk | 2 - .../data-migration-service/debian-11.njk | 2 - .../data-migration-service/ubuntu-18.04.njk | 2 - .../data-migration-service/ubuntu-20.04.njk | 2 - .../data-migration-service/ubuntu-22.04.njk | 2 - .../data-migration-service/ubuntu.njk | 1 - .../almalinux-8-or-rocky-linux-8.njk | 2 +- .../base.njk | 2 +- .../debian-10.njk | 2 + .../debian-11.njk | 2 + .../debian.njk | 2 +- .../index.njk | 2 +- .../ppc64le_index.njk | 2 +- .../rhel-8-or-ol-8.njk | 2 +- .../sles-12.njk | 2 +- .../sles-15.njk | 2 +- .../ubuntu-18.04.njk | 2 + .../ubuntu-20.04.njk | 2 + .../ubuntu-22.04.njk | 2 + .../ubuntu.njk | 1 + .../x86_64_index.njk | 2 +- .../edb-dms-reader/2/installing/index.mdx | 31 +++++++++++ .../linux_x86_64/edb-dms-reader_debian_11.mdx | 41 ++++++++++++++ .../linux_x86_64/edb-dms-reader_rhel_8.mdx | 41 ++++++++++++++ .../linux_x86_64/edb-dms-reader_sles_12.mdx | 52 ++++++++++++++++++ .../linux_x86_64/edb-dms-reader_sles_15.mdx | 53 +++++++++++++++++++ .../linux_x86_64/edb-dms-reader_ubuntu_20.mdx | 41 ++++++++++++++ .../linux_x86_64/edb-dms-reader_ubuntu_22.mdx | 41 ++++++++++++++ .../2/installing/linux_x86_64/index.mdx | 47 ++++++++++++++++ 30 files changed, 368 insertions(+), 21 deletions(-) delete mode 100644 install_template/templates/products/data-migration-service/debian-10.njk delete mode 100644 install_template/templates/products/data-migration-service/debian-11.njk delete mode 100644 install_template/templates/products/data-migration-service/ubuntu-18.04.njk delete mode 100644 install_template/templates/products/data-migration-service/ubuntu-20.04.njk delete mode 100644 install_template/templates/products/data-migration-service/ubuntu-22.04.njk delete mode 100644 install_template/templates/products/data-migration-service/ubuntu.njk rename install_template/templates/products/{data-migration-service => edb-data-migration-service-reader}/almalinux-8-or-rocky-linux-8.njk (80%) rename install_template/templates/products/{data-migration-service => edb-data-migration-service-reader}/base.njk (80%) create mode 100644 install_template/templates/products/edb-data-migration-service-reader/debian-10.njk create mode 100644 install_template/templates/products/edb-data-migration-service-reader/debian-11.njk rename install_template/templates/products/{data-migration-service => edb-data-migration-service-reader}/debian.njk (78%) rename install_template/templates/products/{data-migration-service => edb-data-migration-service-reader}/index.njk (83%) rename install_template/templates/products/{data-migration-service => edb-data-migration-service-reader}/ppc64le_index.njk (71%) rename install_template/templates/products/{data-migration-service => edb-data-migration-service-reader}/rhel-8-or-ol-8.njk (79%) rename install_template/templates/products/{data-migration-service => edb-data-migration-service-reader}/sles-12.njk (77%) rename install_template/templates/products/{data-migration-service => edb-data-migration-service-reader}/sles-15.njk (77%) create mode 100644 install_template/templates/products/edb-data-migration-service-reader/ubuntu-18.04.njk create mode 100644 install_template/templates/products/edb-data-migration-service-reader/ubuntu-20.04.njk create mode 100644 install_template/templates/products/edb-data-migration-service-reader/ubuntu-22.04.njk create mode 100644 install_template/templates/products/edb-data-migration-service-reader/ubuntu.njk rename install_template/templates/products/{data-migration-service => edb-data-migration-service-reader}/x86_64_index.njk (80%) create mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/index.mdx create mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_debian_11.mdx create mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_rhel_8.mdx create mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_12.mdx create mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_15.mdx create mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_20.mdx create mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_22.mdx create mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/index.mdx diff --git a/install_template/config.yaml b/install_template/config.yaml index 8d4a18a0b46..a8db7a9af67 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -1,5 +1,5 @@ products: - - name: Data Migration Service + - name: EDB Data Migration Service Reader platforms: - name: RHEL 8 or OL 8 arch: x86_64 diff --git a/install_template/templates/products/data-migration-service/debian-10.njk b/install_template/templates/products/data-migration-service/debian-10.njk deleted file mode 100644 index 61391348f43..00000000000 --- a/install_template/templates/products/data-migration-service/debian-10.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/data-migration-service/debian.njk" %} -{% set platformBaseTemplate = "debian-10" %} diff --git a/install_template/templates/products/data-migration-service/debian-11.njk b/install_template/templates/products/data-migration-service/debian-11.njk deleted file mode 100644 index 093d9ddf240..00000000000 --- a/install_template/templates/products/data-migration-service/debian-11.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/data-migration-service/debian.njk" %} -{% set platformBaseTemplate = "debian-11" %} diff --git a/install_template/templates/products/data-migration-service/ubuntu-18.04.njk b/install_template/templates/products/data-migration-service/ubuntu-18.04.njk deleted file mode 100644 index 7b9992b6113..00000000000 --- a/install_template/templates/products/data-migration-service/ubuntu-18.04.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/data-migration-service/ubuntu.njk" %} -{% set platformBaseTemplate = "ubuntu-18.04" %} diff --git a/install_template/templates/products/data-migration-service/ubuntu-20.04.njk b/install_template/templates/products/data-migration-service/ubuntu-20.04.njk deleted file mode 100644 index 15df88848be..00000000000 --- a/install_template/templates/products/data-migration-service/ubuntu-20.04.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/data-migration-service/ubuntu.njk" %} -{% set platformBaseTemplate = "ubuntu-20.04" %} diff --git a/install_template/templates/products/data-migration-service/ubuntu-22.04.njk b/install_template/templates/products/data-migration-service/ubuntu-22.04.njk deleted file mode 100644 index 10bd2d5a432..00000000000 --- a/install_template/templates/products/data-migration-service/ubuntu-22.04.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/data-migration-service/ubuntu.njk" %} -{% set platformBaseTemplate = "ubuntu-22.04" %} diff --git a/install_template/templates/products/data-migration-service/ubuntu.njk b/install_template/templates/products/data-migration-service/ubuntu.njk deleted file mode 100644 index e7c49e0c676..00000000000 --- a/install_template/templates/products/data-migration-service/ubuntu.njk +++ /dev/null @@ -1 +0,0 @@ -{% extends "products/data-migration-service/base.njk" %} diff --git a/install_template/templates/products/data-migration-service/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/edb-data-migration-service-reader/almalinux-8-or-rocky-linux-8.njk similarity index 80% rename from install_template/templates/products/data-migration-service/almalinux-8-or-rocky-linux-8.njk rename to install_template/templates/products/edb-data-migration-service-reader/almalinux-8-or-rocky-linux-8.njk index 85caebe4da4..15a11c98baa 100644 --- a/install_template/templates/products/data-migration-service/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/almalinux-8-or-rocky-linux-8.njk @@ -1,4 +1,4 @@ -{% extends "products/data-migration-service/base.njk" %} +{% extends "products/edb-data-migration-service-reader/base.njk" %} {% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} {% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} diff --git a/install_template/templates/products/data-migration-service/base.njk b/install_template/templates/products/edb-data-migration-service-reader/base.njk similarity index 80% rename from install_template/templates/products/data-migration-service/base.njk rename to install_template/templates/products/edb-data-migration-service-reader/base.njk index 5924b36d3f2..96a7b21cdba 100644 --- a/install_template/templates/products/data-migration-service/base.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/base.njk @@ -8,7 +8,7 @@ and add it to the list under "redirects:" below - this ensures we don't break any existing links. #} -deployPath: edb-postgres-ai/migration-etl/data-migration-service/{{ product.version }}/installing/linux_{{platform.arch}}/data-migration-service_{{deploy.map_platform[platform.name]}}.mdx +deployPath: edb-postgres-ai/migration-etl/edb-dms-reader/{{ product.version }}/installing/linux_{{platform.arch}}/edb-dms-reader_{{deploy.map_platform[platform.name]}}.mdx {% endblock frontmatter %} {% block installCommand %} diff --git a/install_template/templates/products/edb-data-migration-service-reader/debian-10.njk b/install_template/templates/products/edb-data-migration-service-reader/debian-10.njk new file mode 100644 index 00000000000..31a098f2ff9 --- /dev/null +++ b/install_template/templates/products/edb-data-migration-service-reader/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-data-migration-service-reader/debian.njk" %} +{% set platformBaseTemplate = "debian-10" %} diff --git a/install_template/templates/products/edb-data-migration-service-reader/debian-11.njk b/install_template/templates/products/edb-data-migration-service-reader/debian-11.njk new file mode 100644 index 00000000000..e784520deb0 --- /dev/null +++ b/install_template/templates/products/edb-data-migration-service-reader/debian-11.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-data-migration-service-reader/debian.njk" %} +{% set platformBaseTemplate = "debian-11" %} diff --git a/install_template/templates/products/data-migration-service/debian.njk b/install_template/templates/products/edb-data-migration-service-reader/debian.njk similarity index 78% rename from install_template/templates/products/data-migration-service/debian.njk rename to install_template/templates/products/edb-data-migration-service-reader/debian.njk index 913797e667c..1d5f1b15665 100644 --- a/install_template/templates/products/data-migration-service/debian.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/debian.njk @@ -1,4 +1,4 @@ -{% extends "products/data-migration-service/base.njk" %} +{% extends "products/edb-data-migration-service-reader/base.njk" %} {% block debian_ubuntu %}This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. ```shell{% endblock debian_ubuntu %} \ No newline at end of file diff --git a/install_template/templates/products/data-migration-service/index.njk b/install_template/templates/products/edb-data-migration-service-reader/index.njk similarity index 83% rename from install_template/templates/products/data-migration-service/index.njk rename to install_template/templates/products/edb-data-migration-service-reader/index.njk index d724f2e7b74..431b6c0d4b0 100644 --- a/install_template/templates/products/data-migration-service/index.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/index.njk @@ -1,5 +1,5 @@ {% extends "platformBase/index.njk" %} -{% set productShortname="data-migration-service" %} +{% set productShortname="edb-dms-reader" %} {% block frontmatter %} deployPath: edb-postgres-ai/migration-etl/{{productShortname}}/{{ product.version }}/installing/index.mdx diff --git a/install_template/templates/products/data-migration-service/ppc64le_index.njk b/install_template/templates/products/edb-data-migration-service-reader/ppc64le_index.njk similarity index 71% rename from install_template/templates/products/data-migration-service/ppc64le_index.njk rename to install_template/templates/products/edb-data-migration-service-reader/ppc64le_index.njk index 11bad6298dc..b470fcbbb41 100644 --- a/install_template/templates/products/data-migration-service/ppc64le_index.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/ppc64le_index.njk @@ -1,6 +1,6 @@ {% extends "platformBase/ppc64le_index.njk" %} -{% set productShortname="transporter" %} +{% set productShortname="edb-dms-reader" %} {% block frontmatter %} {{super()}} diff --git a/install_template/templates/products/data-migration-service/rhel-8-or-ol-8.njk b/install_template/templates/products/edb-data-migration-service-reader/rhel-8-or-ol-8.njk similarity index 79% rename from install_template/templates/products/data-migration-service/rhel-8-or-ol-8.njk rename to install_template/templates/products/edb-data-migration-service-reader/rhel-8-or-ol-8.njk index 5c86b5dfa0d..595dfcb657b 100644 --- a/install_template/templates/products/data-migration-service/rhel-8-or-ol-8.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/rhel-8-or-ol-8.njk @@ -1,4 +1,4 @@ -{% extends "products/data-migration-service/base.njk" %} +{% extends "products/edb-data-migration-service-reader/base.njk" %} {% set platformBaseTemplate = "rhel-8-or-ol-8" %} {% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} {% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} diff --git a/install_template/templates/products/data-migration-service/sles-12.njk b/install_template/templates/products/edb-data-migration-service-reader/sles-12.njk similarity index 77% rename from install_template/templates/products/data-migration-service/sles-12.njk rename to install_template/templates/products/edb-data-migration-service-reader/sles-12.njk index 17133292bf2..2b50dd803ca 100644 --- a/install_template/templates/products/data-migration-service/sles-12.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/sles-12.njk @@ -1,4 +1,4 @@ -{% extends "products/data-migration-service/base.njk" %} +{% extends "products/edb-data-migration-service-reader/base.njk" %} {% set platformBaseTemplate = "sles-12" %} {% set packageManager = "zypper" %} {% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} diff --git a/install_template/templates/products/data-migration-service/sles-15.njk b/install_template/templates/products/edb-data-migration-service-reader/sles-15.njk similarity index 77% rename from install_template/templates/products/data-migration-service/sles-15.njk rename to install_template/templates/products/edb-data-migration-service-reader/sles-15.njk index 0e94954e533..344d65be864 100644 --- a/install_template/templates/products/data-migration-service/sles-15.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/sles-15.njk @@ -1,4 +1,4 @@ -{% extends "products/data-migration-service/base.njk" %} +{% extends "products/edb-data-migration-service-reader/base.njk" %} {% set platformBaseTemplate = "sles-15" %} {% set packageManager = "zypper" %} {% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} diff --git a/install_template/templates/products/edb-data-migration-service-reader/ubuntu-18.04.njk b/install_template/templates/products/edb-data-migration-service-reader/ubuntu-18.04.njk new file mode 100644 index 00000000000..34c6da74150 --- /dev/null +++ b/install_template/templates/products/edb-data-migration-service-reader/ubuntu-18.04.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-data-migration-service-reader/ubuntu.njk" %} +{% set platformBaseTemplate = "ubuntu-18.04" %} diff --git a/install_template/templates/products/edb-data-migration-service-reader/ubuntu-20.04.njk b/install_template/templates/products/edb-data-migration-service-reader/ubuntu-20.04.njk new file mode 100644 index 00000000000..bf8a7d59776 --- /dev/null +++ b/install_template/templates/products/edb-data-migration-service-reader/ubuntu-20.04.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-data-migration-service-reader/ubuntu.njk" %} +{% set platformBaseTemplate = "ubuntu-20.04" %} diff --git a/install_template/templates/products/edb-data-migration-service-reader/ubuntu-22.04.njk b/install_template/templates/products/edb-data-migration-service-reader/ubuntu-22.04.njk new file mode 100644 index 00000000000..292cef9d884 --- /dev/null +++ b/install_template/templates/products/edb-data-migration-service-reader/ubuntu-22.04.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-data-migration-service-reader/ubuntu.njk" %} +{% set platformBaseTemplate = "ubuntu-22.04" %} diff --git a/install_template/templates/products/edb-data-migration-service-reader/ubuntu.njk b/install_template/templates/products/edb-data-migration-service-reader/ubuntu.njk new file mode 100644 index 00000000000..a3809155a2a --- /dev/null +++ b/install_template/templates/products/edb-data-migration-service-reader/ubuntu.njk @@ -0,0 +1 @@ +{% extends "products/edb-data-migration-service-reader/base.njk" %} diff --git a/install_template/templates/products/data-migration-service/x86_64_index.njk b/install_template/templates/products/edb-data-migration-service-reader/x86_64_index.njk similarity index 80% rename from install_template/templates/products/data-migration-service/x86_64_index.njk rename to install_template/templates/products/edb-data-migration-service-reader/x86_64_index.njk index a00dcc01f45..9cfbcbe6e5b 100644 --- a/install_template/templates/products/data-migration-service/x86_64_index.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/x86_64_index.njk @@ -1,6 +1,6 @@ {% extends "platformBase/x86_64_index.njk" %} -{% set productShortname="data-migration-service" %} +{% set productShortname="edb-dms-reader" %} {% block frontmatter %} deployPath: edb-postgres-ai/migration-etl/{{productShortname}}/{{ product.version }}/installing/linux_x86_64/index.mdx diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/index.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/index.mdx new file mode 100644 index 00000000000..10fff3f06bb --- /dev/null +++ b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/index.mdx @@ -0,0 +1,31 @@ +--- +navTitle: Installing +title: Installing EDB Data Migration Service Reader on Linux + +navigation: + - linux_x86_64 +--- + +Select a link to access the applicable installation instructions: + +## Linux [x86-64 (amd64)](linux_x86_64) + +### Red Hat Enterprise Linux (RHEL) and derivatives + +- [RHEL 9](linux_x86_64/edb-dms-reader_rhel_9), [RHEL 8](linux_x86_64/edb-dms-reader_rhel_8) + +- [Oracle Linux (OL) 9](linux_x86_64/edb-dms-reader_rhel_9), [Oracle Linux (OL) 8](linux_x86_64/edb-dms-reader_rhel_8) + +- [Rocky Linux 9](linux_x86_64/edb-dms-reader_other_linux_9) + +- [AlmaLinux 9](linux_x86_64/edb-dms-reader_other_linux_9) + +### SUSE Linux Enterprise (SLES) + +- [SLES 15](linux_x86_64/edb-dms-reader_sles_15), [SLES 12](linux_x86_64/edb-dms-reader_sles_12) + +### Debian and derivatives + +- [Ubuntu 22.04](linux_x86_64/edb-dms-reader_ubuntu_22), [Ubuntu 20.04](linux_x86_64/edb-dms-reader_ubuntu_20) + +- [Debian 12](linux_x86_64/edb-dms-reader_debian_12), [Debian 11](linux_x86_64/edb-dms-reader_debian_11) diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_debian_11.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_debian_11.mdx new file mode 100644 index 00000000000..1b6e6334f1c --- /dev/null +++ b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_debian_11.mdx @@ -0,0 +1,41 @@ +--- +navTitle: Debian 11 +title: Installing EDB Data Migration Service Reader on Debian 11 x86_64 +--- + +## 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: + + `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 + +Install CDCReader: + +```shell +sudo apt-get install cdcreader=-1.4-1.4766136665.17.1.jammy +``` + +Install CDCWriter: + +```shell +sudo apt-get install cdcwriter=1.3-1.4766201953.4.1.jammy +``` diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_rhel_8.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_rhel_8.mdx new file mode 100644 index 00000000000..c0fa080b083 --- /dev/null +++ b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_rhel_8.mdx @@ -0,0 +1,41 @@ +--- +navTitle: RHEL 8 or OL 8 +title: Installing EDB Data Migration Service Reader on RHEL 8 or OL 8 x86_64 +--- + +## 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: + + `dnf repolist | grep 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 + +Install CDCReader: + +```shell +sudo dnf install cdcreader-1.4-1.4766136665.17.1.el8.x86_64 +``` + +Install CDCWriter: + +```shell +sudo dnf install cdcwriter-1.3-1.4766201953.4.1.el8.x86_64 +``` diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_12.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_12.mdx new file mode 100644 index 00000000000..abf7c83e615 --- /dev/null +++ b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_12.mdx @@ -0,0 +1,52 @@ +--- +navTitle: SLES 12 +title: Installing EDB Data Migration Service Reader on SLES 12 x86_64 +--- + +## 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: + + `zypper lr -E | grep 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. + +- Activate the required SUSE module: + ```shell + sudo SUSEConnect -p PackageHub/12.5/x86_64 + sudo SUSEConnect -p sle-sdk/12.5/x86_64 + + ``` +- Refresh the metadata: + ```shell + sudo zypper refresh + ``` + +## Install the package + +Install CDCReader: + +```shell +sudo zypper install cdcreader-1.4-1.4766136665.17.1.el8.x86_64 +``` + +Install CDCWriter: + +```shell +sudo zypper install cdcwriter-1.3-1.4766201953.4.1.el8.x86_64 +``` diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_15.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_15.mdx new file mode 100644 index 00000000000..81d6e550278 --- /dev/null +++ b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_15.mdx @@ -0,0 +1,53 @@ +--- +navTitle: SLES 15 +title: Installing EDB Data Migration Service Reader on SLES 15 x86_64 +--- + +## 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: + + `zypper lr -E | grep 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. + +- Activate the required SUSE module: + + ```shell + sudo SUSEConnect -p PackageHub/15.4/x86_64 + + ``` + +- Refresh the metadata: + ```shell + sudo zypper refresh + ``` + +## Install the package + +Install CDCReader: + +```shell +sudo zypper install cdcreader-1.4-1.4766136665.17.1.el8.x86_64 +``` + +Install CDCWriter: + +```shell +sudo zypper install cdcwriter-1.3-1.4766201953.4.1.el8.x86_64 +``` diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_20.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_20.mdx new file mode 100644 index 00000000000..826f5761471 --- /dev/null +++ b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_20.mdx @@ -0,0 +1,41 @@ +--- +navTitle: Ubuntu 20.04 +title: Installing EDB Data Migration Service Reader on Ubuntu 20.04 x86_64 +--- + +## 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: + + `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 + +Install CDCReader: + +```shell +sudo apt-get install cdcreader=-1.4-1.4766136665.17.1.jammy +``` + +Install CDCWriter: + +```shell +sudo apt-get install cdcwriter=1.3-1.4766201953.4.1.jammy +``` diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_22.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_22.mdx new file mode 100644 index 00000000000..6629b861967 --- /dev/null +++ b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_22.mdx @@ -0,0 +1,41 @@ +--- +navTitle: Ubuntu 22.04 +title: Installing EDB Data Migration Service Reader on Ubuntu 22.04 x86_64 +--- + +## 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: + + `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 + +Install CDCReader: + +```shell +sudo apt-get install cdcreader=-1.4-1.4766136665.17.1.jammy +``` + +Install CDCWriter: + +```shell +sudo apt-get install cdcwriter=1.3-1.4766201953.4.1.jammy +``` diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/index.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/index.mdx new file mode 100644 index 00000000000..093ba5ec8b2 --- /dev/null +++ b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/index.mdx @@ -0,0 +1,47 @@ +--- +title: "Installing EDB Data Migration Service Reader on Linux x86 (amd64)" +navTitle: "On Linux x86" + +navigation: + - edb-dms-reader_rhel_9 + - edb-dms-reader_rhel_8 + - edb-dms-reader_other_linux_9 + - edb-dms-reader_sles_15 + - edb-dms-reader_sles_12 + - edb-dms-reader_ubuntu_22 + - edb-dms-reader_ubuntu_20 + - edb-dms-reader_debian_12 + - edb-dms-reader_debian_11 +--- + +Operating system-specific install instructions are described in the corresponding documentation: + +### Red Hat Enterprise Linux (RHEL) and derivatives + +- [RHEL 9](edb-dms-reader_rhel_9) + +- [RHEL 8](edb-dms-reader_rhel_8) + +- [Oracle Linux (OL) 9](edb-dms-reader_rhel_9) + +- [Oracle Linux (OL) 8](edb-dms-reader_rhel_8) + +- [Rocky Linux 9](edb-dms-reader_other_linux_9) + +- [AlmaLinux 9](edb-dms-reader_other_linux_9) + +### SUSE Linux Enterprise (SLES) + +- [SLES 15](edb-dms-reader_sles_15) + +- [SLES 12](edb-dms-reader_sles_12) + +### Debian and derivatives + +- [Ubuntu 22.04](edb-dms-reader_ubuntu_22) + +- [Ubuntu 20.04](edb-dms-reader_ubuntu_20) + +- [Debian 12](edb-dms-reader_debian_12) + +- [Debian 11](edb-dms-reader_debian_11) From bc069b9c4f8bc72f3bad0fb1b4acde371e92086b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 4 Sep 2024 09:30:00 -0400 Subject: [PATCH 32/45] added and deleted versions --- ...or-rocky-linux-8.njk => almalinux-9-or-rocky-linux-9.njk} | 2 +- .../{debian-10.njk => debian-12.njk} | 2 +- .../edb-data-migration-service-reader/rhel-9-or-ol-9.njk | 5 +++++ .../edb-data-migration-service-reader/ubuntu-18.04.njk | 2 -- 4 files changed, 7 insertions(+), 4 deletions(-) rename install_template/templates/products/edb-data-migration-service-reader/{almalinux-8-or-rocky-linux-8.njk => almalinux-9-or-rocky-linux-9.njk} (81%) rename install_template/templates/products/edb-data-migration-service-reader/{debian-10.njk => debian-12.njk} (60%) create mode 100644 install_template/templates/products/edb-data-migration-service-reader/rhel-9-or-ol-9.njk delete mode 100644 install_template/templates/products/edb-data-migration-service-reader/ubuntu-18.04.njk diff --git a/install_template/templates/products/edb-data-migration-service-reader/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/edb-data-migration-service-reader/almalinux-9-or-rocky-linux-9.njk similarity index 81% rename from install_template/templates/products/edb-data-migration-service-reader/almalinux-8-or-rocky-linux-8.njk rename to install_template/templates/products/edb-data-migration-service-reader/almalinux-9-or-rocky-linux-9.njk index 15a11c98baa..7e034eefd10 100644 --- a/install_template/templates/products/edb-data-migration-service-reader/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/almalinux-9-or-rocky-linux-9.njk @@ -1,5 +1,5 @@ {% extends "products/edb-data-migration-service-reader/base.njk" %} -{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} +{% set platformBaseTemplate = "almalinux-9-or-rocky-linux-9" %} {% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} {% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} {% block prerequisites %}{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb-data-migration-service-reader/debian-10.njk b/install_template/templates/products/edb-data-migration-service-reader/debian-12.njk similarity index 60% rename from install_template/templates/products/edb-data-migration-service-reader/debian-10.njk rename to install_template/templates/products/edb-data-migration-service-reader/debian-12.njk index 31a098f2ff9..616c5e4a751 100644 --- a/install_template/templates/products/edb-data-migration-service-reader/debian-10.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/debian-12.njk @@ -1,2 +1,2 @@ {% extends "products/edb-data-migration-service-reader/debian.njk" %} -{% set platformBaseTemplate = "debian-10" %} +{% set platformBaseTemplate = "debian-12" %} diff --git a/install_template/templates/products/edb-data-migration-service-reader/rhel-9-or-ol-9.njk b/install_template/templates/products/edb-data-migration-service-reader/rhel-9-or-ol-9.njk new file mode 100644 index 00000000000..5d1054ce2b1 --- /dev/null +++ b/install_template/templates/products/edb-data-migration-service-reader/rhel-9-or-ol-9.njk @@ -0,0 +1,5 @@ +{% extends "products/edb-data-migration-service-reader/base.njk" %} +{% set platformBaseTemplate = "rhel-9-or-ol-9" %} +{% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} +{% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} +{% block prerequisites %}{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb-data-migration-service-reader/ubuntu-18.04.njk b/install_template/templates/products/edb-data-migration-service-reader/ubuntu-18.04.njk deleted file mode 100644 index 34c6da74150..00000000000 --- a/install_template/templates/products/edb-data-migration-service-reader/ubuntu-18.04.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-data-migration-service-reader/ubuntu.njk" %} -{% set platformBaseTemplate = "ubuntu-18.04" %} From e1c1853802c1bbf036b998f29a52b08e4d3ee15b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 4 Sep 2024 09:34:24 -0400 Subject: [PATCH 33/45] Removing generated files that were erroneously added --- .../edb-dms-reader/2/installing/index.mdx | 31 ----------- .../linux_x86_64/edb-dms-reader_debian_11.mdx | 41 -------------- .../linux_x86_64/edb-dms-reader_rhel_8.mdx | 41 -------------- .../linux_x86_64/edb-dms-reader_sles_12.mdx | 52 ------------------ .../linux_x86_64/edb-dms-reader_sles_15.mdx | 53 ------------------- .../linux_x86_64/edb-dms-reader_ubuntu_20.mdx | 41 -------------- .../linux_x86_64/edb-dms-reader_ubuntu_22.mdx | 41 -------------- .../2/installing/linux_x86_64/index.mdx | 47 ---------------- 8 files changed, 347 deletions(-) delete mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/index.mdx delete mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_debian_11.mdx delete mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_rhel_8.mdx delete mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_12.mdx delete mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_15.mdx delete mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_20.mdx delete mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_22.mdx delete mode 100644 product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/index.mdx diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/index.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/index.mdx deleted file mode 100644 index 10fff3f06bb..00000000000 --- a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/index.mdx +++ /dev/null @@ -1,31 +0,0 @@ ---- -navTitle: Installing -title: Installing EDB Data Migration Service Reader on Linux - -navigation: - - linux_x86_64 ---- - -Select a link to access the applicable installation instructions: - -## Linux [x86-64 (amd64)](linux_x86_64) - -### Red Hat Enterprise Linux (RHEL) and derivatives - -- [RHEL 9](linux_x86_64/edb-dms-reader_rhel_9), [RHEL 8](linux_x86_64/edb-dms-reader_rhel_8) - -- [Oracle Linux (OL) 9](linux_x86_64/edb-dms-reader_rhel_9), [Oracle Linux (OL) 8](linux_x86_64/edb-dms-reader_rhel_8) - -- [Rocky Linux 9](linux_x86_64/edb-dms-reader_other_linux_9) - -- [AlmaLinux 9](linux_x86_64/edb-dms-reader_other_linux_9) - -### SUSE Linux Enterprise (SLES) - -- [SLES 15](linux_x86_64/edb-dms-reader_sles_15), [SLES 12](linux_x86_64/edb-dms-reader_sles_12) - -### Debian and derivatives - -- [Ubuntu 22.04](linux_x86_64/edb-dms-reader_ubuntu_22), [Ubuntu 20.04](linux_x86_64/edb-dms-reader_ubuntu_20) - -- [Debian 12](linux_x86_64/edb-dms-reader_debian_12), [Debian 11](linux_x86_64/edb-dms-reader_debian_11) diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_debian_11.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_debian_11.mdx deleted file mode 100644 index 1b6e6334f1c..00000000000 --- a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_debian_11.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -navTitle: Debian 11 -title: Installing EDB Data Migration Service Reader on Debian 11 x86_64 ---- - -## 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: - - `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 - -Install CDCReader: - -```shell -sudo apt-get install cdcreader=-1.4-1.4766136665.17.1.jammy -``` - -Install CDCWriter: - -```shell -sudo apt-get install cdcwriter=1.3-1.4766201953.4.1.jammy -``` diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_rhel_8.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_rhel_8.mdx deleted file mode 100644 index c0fa080b083..00000000000 --- a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_rhel_8.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -navTitle: RHEL 8 or OL 8 -title: Installing EDB Data Migration Service Reader on RHEL 8 or OL 8 x86_64 ---- - -## 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: - - `dnf repolist | grep 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 - -Install CDCReader: - -```shell -sudo dnf install cdcreader-1.4-1.4766136665.17.1.el8.x86_64 -``` - -Install CDCWriter: - -```shell -sudo dnf install cdcwriter-1.3-1.4766201953.4.1.el8.x86_64 -``` diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_12.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_12.mdx deleted file mode 100644 index abf7c83e615..00000000000 --- a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_12.mdx +++ /dev/null @@ -1,52 +0,0 @@ ---- -navTitle: SLES 12 -title: Installing EDB Data Migration Service Reader on SLES 12 x86_64 ---- - -## 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: - - `zypper lr -E | grep 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. - -- Activate the required SUSE module: - ```shell - sudo SUSEConnect -p PackageHub/12.5/x86_64 - sudo SUSEConnect -p sle-sdk/12.5/x86_64 - - ``` -- Refresh the metadata: - ```shell - sudo zypper refresh - ``` - -## Install the package - -Install CDCReader: - -```shell -sudo zypper install cdcreader-1.4-1.4766136665.17.1.el8.x86_64 -``` - -Install CDCWriter: - -```shell -sudo zypper install cdcwriter-1.3-1.4766201953.4.1.el8.x86_64 -``` diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_15.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_15.mdx deleted file mode 100644 index 81d6e550278..00000000000 --- a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_sles_15.mdx +++ /dev/null @@ -1,53 +0,0 @@ ---- -navTitle: SLES 15 -title: Installing EDB Data Migration Service Reader on SLES 15 x86_64 ---- - -## 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: - - `zypper lr -E | grep 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. - -- Activate the required SUSE module: - - ```shell - sudo SUSEConnect -p PackageHub/15.4/x86_64 - - ``` - -- Refresh the metadata: - ```shell - sudo zypper refresh - ``` - -## Install the package - -Install CDCReader: - -```shell -sudo zypper install cdcreader-1.4-1.4766136665.17.1.el8.x86_64 -``` - -Install CDCWriter: - -```shell -sudo zypper install cdcwriter-1.3-1.4766201953.4.1.el8.x86_64 -``` diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_20.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_20.mdx deleted file mode 100644 index 826f5761471..00000000000 --- a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_20.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -navTitle: Ubuntu 20.04 -title: Installing EDB Data Migration Service Reader on Ubuntu 20.04 x86_64 ---- - -## 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: - - `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 - -Install CDCReader: - -```shell -sudo apt-get install cdcreader=-1.4-1.4766136665.17.1.jammy -``` - -Install CDCWriter: - -```shell -sudo apt-get install cdcwriter=1.3-1.4766201953.4.1.jammy -``` diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_22.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_22.mdx deleted file mode 100644 index 6629b861967..00000000000 --- a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/edb-dms-reader_ubuntu_22.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -navTitle: Ubuntu 22.04 -title: Installing EDB Data Migration Service Reader on Ubuntu 22.04 x86_64 ---- - -## 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: - - `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 - -Install CDCReader: - -```shell -sudo apt-get install cdcreader=-1.4-1.4766136665.17.1.jammy -``` - -Install CDCWriter: - -```shell -sudo apt-get install cdcwriter=1.3-1.4766201953.4.1.jammy -``` diff --git a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/index.mdx b/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/index.mdx deleted file mode 100644 index 093ba5ec8b2..00000000000 --- a/product_docs/docs/edb-postgres-ai/migration-etl/edb-dms-reader/2/installing/linux_x86_64/index.mdx +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: "Installing EDB Data Migration Service Reader on Linux x86 (amd64)" -navTitle: "On Linux x86" - -navigation: - - edb-dms-reader_rhel_9 - - edb-dms-reader_rhel_8 - - edb-dms-reader_other_linux_9 - - edb-dms-reader_sles_15 - - edb-dms-reader_sles_12 - - edb-dms-reader_ubuntu_22 - - edb-dms-reader_ubuntu_20 - - edb-dms-reader_debian_12 - - edb-dms-reader_debian_11 ---- - -Operating system-specific install instructions are described in the corresponding documentation: - -### Red Hat Enterprise Linux (RHEL) and derivatives - -- [RHEL 9](edb-dms-reader_rhel_9) - -- [RHEL 8](edb-dms-reader_rhel_8) - -- [Oracle Linux (OL) 9](edb-dms-reader_rhel_9) - -- [Oracle Linux (OL) 8](edb-dms-reader_rhel_8) - -- [Rocky Linux 9](edb-dms-reader_other_linux_9) - -- [AlmaLinux 9](edb-dms-reader_other_linux_9) - -### SUSE Linux Enterprise (SLES) - -- [SLES 15](edb-dms-reader_sles_15) - -- [SLES 12](edb-dms-reader_sles_12) - -### Debian and derivatives - -- [Ubuntu 22.04](edb-dms-reader_ubuntu_22) - -- [Ubuntu 20.04](edb-dms-reader_ubuntu_20) - -- [Debian 12](edb-dms-reader_debian_12) - -- [Debian 11](edb-dms-reader_debian_11) From 1b211861364c77bab7a19480d29ebbd2d376c9a0 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 4 Sep 2024 11:09:04 -0400 Subject: [PATCH 34/45] template revisions for RHEL9 --- install_template/templates/platformBase/base.njk | 2 +- .../products/edb-data-migration-service-reader/base.njk | 9 ++------- .../edb-data-migration-service-reader/rhel-9-or-ol-9.njk | 2 -- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index fea01437a43..90acfc8f0d6 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -34,7 +34,7 @@ Before you begin the installation process: 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. diff --git a/install_template/templates/products/edb-data-migration-service-reader/base.njk b/install_template/templates/products/edb-data-migration-service-reader/base.njk index 96a7b21cdba..72adfacb1c7 100644 --- a/install_template/templates/products/edb-data-migration-service-reader/base.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/base.njk @@ -1,5 +1,5 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} -{% set packageName = packageName or 'cdcreader=-1.4-1.4766136665.17.1.jammy' %} +{% set packageName = packageName or 'cdcreader' %} {% set writerPackageName = writerPackageName or 'cdcwriter=1.3-1.4766201953.4.1.jammy' %} {% import "platformBase/_deploymentConstants.njk" as deploy %} {% block frontmatter %} @@ -12,14 +12,9 @@ deployPath: edb-postgres-ai/migration-etl/edb-dms-reader/{{ product.version }}/i {% endblock frontmatter %} {% block installCommand %} -Install CDCReader: +Install the EDB DMS Reader (packaged as `cdcreader`): ```shell sudo {{packageManager}} install {{ packageName }} ``` - -Install CDCWriter: -```shell -sudo {{packageManager}} install {{ writerPackageName }} -``` {% endblock installCommand %} diff --git a/install_template/templates/products/edb-data-migration-service-reader/rhel-9-or-ol-9.njk b/install_template/templates/products/edb-data-migration-service-reader/rhel-9-or-ol-9.njk index 5d1054ce2b1..0169b3a04ac 100644 --- a/install_template/templates/products/edb-data-migration-service-reader/rhel-9-or-ol-9.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/rhel-9-or-ol-9.njk @@ -1,5 +1,3 @@ {% extends "products/edb-data-migration-service-reader/base.njk" %} {% set platformBaseTemplate = "rhel-9-or-ol-9" %} -{% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} -{% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} {% block prerequisites %}{% endblock prerequisites %} \ No newline at end of file From 5e7df3d0a6958ddd1fc9205a4d39dc396a431eb8 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 11 Sep 2024 07:42:20 -0400 Subject: [PATCH 35/45] Updated template for RHEL 8 and Alma Linux 9 --- .../almalinux-9-or-rocky-linux-9.njk | 2 -- .../edb-data-migration-service-reader/rhel-8-or-ol-8.njk | 2 -- 2 files changed, 4 deletions(-) diff --git a/install_template/templates/products/edb-data-migration-service-reader/almalinux-9-or-rocky-linux-9.njk b/install_template/templates/products/edb-data-migration-service-reader/almalinux-9-or-rocky-linux-9.njk index 7e034eefd10..307f4a30f84 100644 --- a/install_template/templates/products/edb-data-migration-service-reader/almalinux-9-or-rocky-linux-9.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/almalinux-9-or-rocky-linux-9.njk @@ -1,5 +1,3 @@ {% extends "products/edb-data-migration-service-reader/base.njk" %} {% set platformBaseTemplate = "almalinux-9-or-rocky-linux-9" %} -{% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} -{% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} {% block prerequisites %}{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb-data-migration-service-reader/rhel-8-or-ol-8.njk b/install_template/templates/products/edb-data-migration-service-reader/rhel-8-or-ol-8.njk index 595dfcb657b..e2139a29cb5 100644 --- a/install_template/templates/products/edb-data-migration-service-reader/rhel-8-or-ol-8.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/rhel-8-or-ol-8.njk @@ -1,5 +1,3 @@ {% extends "products/edb-data-migration-service-reader/base.njk" %} {% set platformBaseTemplate = "rhel-8-or-ol-8" %} -{% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} -{% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} {% block prerequisites %}{% endblock prerequisites %} \ No newline at end of file From 4553c2d7ec39f757aa3ce1c2c70dcddfaebd51df Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 11 Sep 2024 07:53:38 -0400 Subject: [PATCH 36/45] Revised deployment path for generated files --- .../products/edb-data-migration-service-reader/base.njk | 4 ++-- .../products/edb-data-migration-service-reader/index.njk | 4 ++-- .../edb-data-migration-service-reader/x86_64_index.njk | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/install_template/templates/products/edb-data-migration-service-reader/base.njk b/install_template/templates/products/edb-data-migration-service-reader/base.njk index 72adfacb1c7..28b790b2c4d 100644 --- a/install_template/templates/products/edb-data-migration-service-reader/base.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/base.njk @@ -8,7 +8,8 @@ and add it to the list under "redirects:" below - this ensures we don't break any existing links. #} -deployPath: edb-postgres-ai/migration-etl/edb-dms-reader/{{ product.version }}/installing/linux_{{platform.arch}}/edb-dms-reader_{{deploy.map_platform[platform.name]}}.mdx +deployPath: advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_{{platform.arch}}/edb-dms-reader_{{deploy.map_platform[platform.name]}}.mdx + {% endblock frontmatter %} {% block installCommand %} @@ -17,4 +18,3 @@ Install the EDB DMS Reader (packaged as `cdcreader`): sudo {{packageManager}} install {{ packageName }} ``` {% endblock installCommand %} - diff --git a/install_template/templates/products/edb-data-migration-service-reader/index.njk b/install_template/templates/products/edb-data-migration-service-reader/index.njk index 431b6c0d4b0..379d81c6e28 100644 --- a/install_template/templates/products/edb-data-migration-service-reader/index.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/index.njk @@ -2,8 +2,8 @@ {% set productShortname="edb-dms-reader" %} {% block frontmatter %} -deployPath: edb-postgres-ai/migration-etl/{{productShortname}}/{{ product.version }}/installing/index.mdx +deployPath: advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx {% endblock frontmatter %} {% block navigation %} - linux_x86_64 -{% endblock navigation %} +{% endblock navigation %} \ No newline at end of file diff --git a/install_template/templates/products/edb-data-migration-service-reader/x86_64_index.njk b/install_template/templates/products/edb-data-migration-service-reader/x86_64_index.njk index 9cfbcbe6e5b..ebd1b6b5856 100644 --- a/install_template/templates/products/edb-data-migration-service-reader/x86_64_index.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/x86_64_index.njk @@ -3,5 +3,5 @@ {% set productShortname="edb-dms-reader" %} {% block frontmatter %} -deployPath: edb-postgres-ai/migration-etl/{{productShortname}}/{{ product.version }}/installing/linux_x86_64/index.mdx +deployPath: advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/index.mdx {% endblock frontmatter %} From c91b8094425662bba1c0afdc50b9e69120d06077 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 11 Sep 2024 08:46:18 -0400 Subject: [PATCH 37/45] Updated templates for SLES 15 and 12 --- .../products/edb-data-migration-service-reader/sles-12.njk | 2 -- .../products/edb-data-migration-service-reader/sles-15.njk | 2 -- 2 files changed, 4 deletions(-) diff --git a/install_template/templates/products/edb-data-migration-service-reader/sles-12.njk b/install_template/templates/products/edb-data-migration-service-reader/sles-12.njk index 2b50dd803ca..13b02b935f1 100644 --- a/install_template/templates/products/edb-data-migration-service-reader/sles-12.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/sles-12.njk @@ -1,6 +1,4 @@ {% extends "products/edb-data-migration-service-reader/base.njk" %} {% set platformBaseTemplate = "sles-12" %} {% set packageManager = "zypper" %} -{% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} -{% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} diff --git a/install_template/templates/products/edb-data-migration-service-reader/sles-15.njk b/install_template/templates/products/edb-data-migration-service-reader/sles-15.njk index 344d65be864..135cbdce581 100644 --- a/install_template/templates/products/edb-data-migration-service-reader/sles-15.njk +++ b/install_template/templates/products/edb-data-migration-service-reader/sles-15.njk @@ -1,5 +1,3 @@ {% extends "products/edb-data-migration-service-reader/base.njk" %} {% set platformBaseTemplate = "sles-15" %} {% set packageManager = "zypper" %} -{% set packageName %}cdcreader-1.4-1.4766136665.17.1.el8.x86_64{% endset %} -{% set writerPackageName %}cdcwriter-1.3-1.4766201953.4.1.el8.x86_64{% endset %} From f287f22009a312b9d9c595e458a85cc0bf9f9b9b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 12 Sep 2024 12:14:18 -0400 Subject: [PATCH 38/45] Generated install files from templates and removed older install files --- .../getting_started/installing/index.mdx | 21 +++++---- ...an_11.mdx => edb-dms-reader_debian_11.mdx} | 6 ++- ...an_12.mdx => edb-dms-reader_debian_12.mdx} | 6 ++- ...9.mdx => edb-dms-reader_other_linux_9.mdx} | 7 ++- ...s_rhel_8.mdx => edb-dms-reader_rhel_8.mdx} | 6 ++- ...s_rhel_9.mdx => edb-dms-reader_rhel_9.mdx} | 6 ++- ...sles_12.mdx => edb-dms-reader_sles_12.mdx} | 17 ++++++- ...sles_15.mdx => edb-dms-reader_sles_15.mdx} | 18 ++++++- ...tu_20.mdx => edb-dms-reader_ubuntu_20.mdx} | 6 ++- ...tu_22.mdx => edb-dms-reader_ubuntu_22.mdx} | 6 ++- .../installing/linux_x86_64/index.mdx | 47 +++++++++---------- 11 files changed, 94 insertions(+), 52 deletions(-) rename advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/{dms_debian_11.mdx => edb-dms-reader_debian_11.mdx} (77%) rename advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/{dms_debian_12.mdx => edb-dms-reader_debian_12.mdx} (77%) rename advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/{dms_other_linux_9.mdx => edb-dms-reader_other_linux_9.mdx} (76%) rename advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/{dms_rhel_8.mdx => edb-dms-reader_rhel_8.mdx} (77%) rename advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/{dms_rhel_9.mdx => edb-dms-reader_rhel_9.mdx} (77%) rename advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/{dms_sles_12.mdx => edb-dms-reader_sles_12.mdx} (63%) rename advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/{dms_sles_15.mdx => edb-dms-reader_sles_15.mdx} (65%) rename advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/{dms_ubuntu_20.mdx => edb-dms-reader_ubuntu_20.mdx} (77%) rename advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/{dms_ubuntu_22.mdx => edb-dms-reader_ubuntu_22.mdx} (77%) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx index a1677666242..10fff3f06bb 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx @@ -1,30 +1,31 @@ --- -navTitle: Installing EDB DMS Reader -title: Installing EDB DMS Reader on Linux +navTitle: Installing +title: Installing EDB Data Migration Service Reader on Linux + navigation: - linux_x86_64 --- -Select a link to access the applicable installation instructions. +Select a link to access the applicable installation instructions: ## Linux [x86-64 (amd64)](linux_x86_64) ### Red Hat Enterprise Linux (RHEL) and derivatives -- [RHEL 9](linux_x86_64/dms_rhel_9), [RHEL 8](linux_x86_64/dms_rhel_8) +- [RHEL 9](linux_x86_64/edb-dms-reader_rhel_9), [RHEL 8](linux_x86_64/edb-dms-reader_rhel_8) -- [Oracle Linux (OL) 9](linux_x86_64/dms_rhel_9), [Oracle Linux (OL) 8](linux_x86_64/dms_rhel_8) +- [Oracle Linux (OL) 9](linux_x86_64/edb-dms-reader_rhel_9), [Oracle Linux (OL) 8](linux_x86_64/edb-dms-reader_rhel_8) -- [Rocky Linux 9](linux_x86_64/dms_other_linux_9) +- [Rocky Linux 9](linux_x86_64/edb-dms-reader_other_linux_9) -- [AlmaLinux 9](linux_x86_64/dms_other_linux_9) +- [AlmaLinux 9](linux_x86_64/edb-dms-reader_other_linux_9) ### SUSE Linux Enterprise (SLES) -- [SLES 15](linux_x86_64/dms_sles_15), [SLES 12](linux_x86_64/dms_sles_12) +- [SLES 15](linux_x86_64/edb-dms-reader_sles_15), [SLES 12](linux_x86_64/edb-dms-reader_sles_12) ### Debian and derivatives -- [Ubuntu 22.04](linux_x86_64/dms_ubuntu_22), [Ubuntu 20.04](linux_x86_64/dms_ubuntu_20) +- [Ubuntu 22.04](linux_x86_64/edb-dms-reader_ubuntu_22), [Ubuntu 20.04](linux_x86_64/edb-dms-reader_ubuntu_20) -- [Debian 12](linux_x86_64/dms_debian_12), [Debian 11](linux_x86_64/dms_debian_11) +- [Debian 12](linux_x86_64/edb-dms-reader_debian_12), [Debian 11](linux_x86_64/edb-dms-reader_debian_11) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_11.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_debian_11.mdx similarity index 77% rename from advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_11.mdx rename to advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_debian_11.mdx index cd7be7a8559..d7bbe807362 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_11.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_debian_11.mdx @@ -1,6 +1,6 @@ --- navTitle: Debian 11 -title: Installing the EDB DMS Reader on Debian 11 x86_64 +title: Installing EDB Data Migration Service Reader on Debian 11 x86_64 --- ## Prerequisites @@ -21,10 +21,12 @@ Before you begin the installation process: 1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads). - 1. Select the button that provides access to the EDB repo. + 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 Install the EDB DMS Reader (packaged as `cdcreader`): diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_12.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_debian_12.mdx similarity index 77% rename from advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_12.mdx rename to advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_debian_12.mdx index abd9510a40d..720bc8a0d5f 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_debian_12.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_debian_12.mdx @@ -1,6 +1,6 @@ --- navTitle: Debian 12 -title: Installing the EDB DMS Reader on Debian 12 x86_64 +title: Installing EDB Data Migration Service Reader on Debian 12 x86_64 --- ## Prerequisites @@ -21,10 +21,12 @@ Before you begin the installation process: 1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads). - 1. Select the button that provides access to the EDB repo. + 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 Install the EDB DMS Reader (packaged as `cdcreader`): diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_other_linux_9.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_other_linux_9.mdx similarity index 76% rename from advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_other_linux_9.mdx rename to advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_other_linux_9.mdx index 5c50ed81e9d..33d181bcd0a 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_other_linux_9.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_other_linux_9.mdx @@ -1,6 +1,7 @@ --- navTitle: AlmaLinux 9 or Rocky Linux 9 -title: Installing the EDB DMS Reader on AlmaLinux 9 or Rocky Linux 9 x86_64 +title: Installing EDB Data Migration Service Reader on AlmaLinux 9 or Rocky + Linux 9 x86_64 --- ## Prerequisites @@ -21,10 +22,12 @@ Before you begin the installation process: 1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads). - 1. Select the button that provides access to the EDB repo. + 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 Install the EDB DMS Reader (packaged as `cdcreader`): diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_8.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_rhel_8.mdx similarity index 77% rename from advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_8.mdx rename to advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_rhel_8.mdx index 4f79f23ff6c..9659bed9b50 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_8.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_rhel_8.mdx @@ -1,6 +1,6 @@ --- navTitle: RHEL 8 or OL 8 -title: Installing the EDB DMS Reader on RHEL 8 or OL 8 x86_64 +title: Installing EDB Data Migration Service Reader on RHEL 8 or OL 8 x86_64 --- ## Prerequisites @@ -21,10 +21,12 @@ Before you begin the installation process: 1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads). - 1. Select the button that provides access to the EDB repo. + 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 Install the EDB DMS Reader (packaged as `cdcreader`): diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_9.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_rhel_9.mdx similarity index 77% rename from advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_9.mdx rename to advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_rhel_9.mdx index 64eebbc208f..3dd455fa0bc 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_rhel_9.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_rhel_9.mdx @@ -1,6 +1,6 @@ --- navTitle: RHEL 9 or OL 9 -title: Installing the EDB DMS Reader on RHEL 9 or OL 9 x86_64 +title: Installing EDB Data Migration Service Reader on RHEL 9 or OL 9 x86_64 --- ## Prerequisites @@ -21,10 +21,12 @@ Before you begin the installation process: 1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads). - 1. Select the button that provides access to the EDB repo. + 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 Install the EDB DMS Reader (packaged as `cdcreader`): diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_12.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_sles_12.mdx similarity index 63% rename from advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_12.mdx rename to advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_sles_12.mdx index 83a2ed46e98..10ab3f530b6 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_12.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_sles_12.mdx @@ -1,6 +1,6 @@ --- navTitle: SLES 12 -title: Installing the EDB DMS Reader on SLES 12 x86_64 +title: Installing EDB Data Migration Service Reader on SLES 12 x86_64 --- ## Prerequisites @@ -21,10 +21,23 @@ Before you begin the installation process: 1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads). - 1. Select the button that provides access to the EDB repo. + 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. + +- Activate the required SUSE module: + ```shell + sudo SUSEConnect -p PackageHub/12.5/x86_64 + sudo SUSEConnect -p sle-sdk/12.5/x86_64 + + ``` +- Refresh the metadata: + ```shell + sudo zypper refresh + ``` + ## Install the package Install the EDB DMS Reader (packaged as `cdcreader`): diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_15.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_sles_15.mdx similarity index 65% rename from advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_15.mdx rename to advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_sles_15.mdx index fcd764b1b8c..3c449009a16 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_sles_15.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_sles_15.mdx @@ -1,6 +1,6 @@ --- navTitle: SLES 15 -title: Installing the EDB DMS Reader on SLES 15 x86_64 +title: Installing EDB Data Migration Service Reader on SLES 15 x86_64 --- ## Prerequisites @@ -21,10 +21,24 @@ Before you begin the installation process: 1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads). - 1. Select the button that provides access to the EDB repo. + 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. + +- Activate the required SUSE module: + + ```shell + sudo SUSEConnect -p PackageHub/15.4/x86_64 + + ``` + +- Refresh the metadata: + ```shell + sudo zypper refresh + ``` + ## Install the package Install the EDB DMS Reader (packaged as `cdcreader`): diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_20.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_ubuntu_20.mdx similarity index 77% rename from advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_20.mdx rename to advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_ubuntu_20.mdx index 88f3e855262..a3a9d623090 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_20.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_ubuntu_20.mdx @@ -1,6 +1,6 @@ --- navTitle: Ubuntu 20.04 -title: Installing the EDB DMS Reader on Ubuntu 20.04 x86_64 +title: Installing EDB Data Migration Service Reader on Ubuntu 20.04 x86_64 --- ## Prerequisites @@ -21,10 +21,12 @@ Before you begin the installation process: 1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads). - 1. Select the button that provides access to the EDB repo. + 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 Install the EDB DMS Reader (packaged as `cdcreader`): diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_22.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_ubuntu_22.mdx similarity index 77% rename from advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_22.mdx rename to advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_ubuntu_22.mdx index d38dd5cdd9f..e1be13644a5 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/dms_ubuntu_22.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/edb-dms-reader_ubuntu_22.mdx @@ -1,6 +1,6 @@ --- navTitle: Ubuntu 22.04 -title: Installing the EDB DMS Reader on Ubuntu 22.04 x86_64 +title: Installing EDB Data Migration Service Reader on Ubuntu 22.04 x86_64 --- ## Prerequisites @@ -21,10 +21,12 @@ Before you begin the installation process: 1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads). - 1. Select the button that provides access to the EDB repo. + 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 Install the EDB DMS Reader (packaged as `cdcreader`): diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/index.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/index.mdx index 55bb9cc91e4..093ba5ec8b2 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/index.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/index.mdx @@ -1,48 +1,47 @@ --- -title: "Installing EDB DMS Reader on Linux x86 (amd64)" +title: "Installing EDB Data Migration Service Reader on Linux x86 (amd64)" navTitle: "On Linux x86" navigation: - - dms_rhel_9 - - dms_rhel_8 - - dms_other_linux_9 - - dms_sles_15 - - dms_sles_12 - - dms_ubuntu_22 - - dms_ubuntu_20 - - dms_ubuntu_18 - - dms_debian_12 - - dms_debian_11 + - edb-dms-reader_rhel_9 + - edb-dms-reader_rhel_8 + - edb-dms-reader_other_linux_9 + - edb-dms-reader_sles_15 + - edb-dms-reader_sles_12 + - edb-dms-reader_ubuntu_22 + - edb-dms-reader_ubuntu_20 + - edb-dms-reader_debian_12 + - edb-dms-reader_debian_11 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives -- [RHEL 9](dms_rhel_9) +- [RHEL 9](edb-dms-reader_rhel_9) -- [RHEL 8](dms_rhel_8) +- [RHEL 8](edb-dms-reader_rhel_8) -- [Oracle Linux (OL) 9](dms_rhel_9) +- [Oracle Linux (OL) 9](edb-dms-reader_rhel_9) -- [Oracle Linux (OL) 8](dms_rhel_8) +- [Oracle Linux (OL) 8](edb-dms-reader_rhel_8) -- [Rocky Linux 9](dms_other_linux_9) +- [Rocky Linux 9](edb-dms-reader_other_linux_9) -- [AlmaLinux 9](dms_other_linux_9) +- [AlmaLinux 9](edb-dms-reader_other_linux_9) ### SUSE Linux Enterprise (SLES) -- [SLES 15](dms_sles_15) +- [SLES 15](edb-dms-reader_sles_15) -- [SLES 12](dms_sles_12) +- [SLES 12](edb-dms-reader_sles_12) ### Debian and derivatives -- [Ubuntu 22.04](dms_ubuntu_22) +- [Ubuntu 22.04](edb-dms-reader_ubuntu_22) -- [Ubuntu 20.04](dms_ubuntu_20) +- [Ubuntu 20.04](edb-dms-reader_ubuntu_20) -- [Debian 12](dms_debian_12) +- [Debian 12](edb-dms-reader_debian_12) -- [Debian 11](dms_debian_11) +- [Debian 11](edb-dms-reader_debian_11) From 749fd2b3c4d89e0b288e2a6ad3451e5d9b1d9556 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 24 Sep 2024 10:00:18 -0400 Subject: [PATCH 39/45] Changed version from 2.0 to 2 --- install_template/config.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index a8db7a9af67..1f926ad4ffc 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -3,31 +3,31 @@ products: platforms: - name: RHEL 8 or OL 8 arch: x86_64 - supported versions: [2.0] + supported versions: [2] - name: AlmaLinux 9 or Rocky Linux 9 arch: x86_64 - supported versions: [2.0] + supported versions: [2] - name: RHEL 9 or OL 9 arch: x86_64 - supported versions: [2.0] + supported versions: [2] - name: Debian 11 arch: x86_64 - supported versions: [2.0] + supported versions: [2] - name: Debian 12 arch: x86_64 - supported versions: [2.0] + supported versions: [2] - name: Ubuntu 20.04 arch: x86_64 - supported versions: [2.0] + supported versions: [2] - name: Ubuntu 22.04 arch: x86_64 - supported versions: [2.0] + supported versions: [2] - name: SLES 15 arch: x86_64 - supported versions: [2.0] + supported versions: [2] - name: SLES 12 arch: x86_64 - supported versions: [2.0] + supported versions: [2] - name: EDB JDBC Connector platforms: - name: RHEL 8 From f4be4b92146767431454cb653c0b22e749d86423 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Wed, 25 Sep 2024 12:37:21 +0200 Subject: [PATCH 40/45] Implemented feedback from Matt and Zahid --- .../preparing_postgres_source_databases.mdx | 16 +++++---- .../data-migration-service/limitations.mdx | 35 +++++++++++++++++-- 2 files changed, 42 insertions(+), 9 deletions(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx index 4017b7af1ce..edffde44eac 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx @@ -125,7 +125,7 @@ Where: ### Grant `CREATE` privileges on the source database to the CDC migration role -Since the `pgoutput` plugin is being used, the migration user needs to be granted `CREATE` priveleges on the source database in order for Debezium to be able to create publications. The 'CREATE' privelege can be granted using the following command: +Since the `pgoutput` plugin is being used, the migration user needs to be granted `CREATE` priveleges on the source database in order for Debezium to be able to create publications. The `CREATE` privelege can be granted using the following command: ```sql GRANT CREATE ON DATABASE to @@ -175,20 +175,22 @@ checkpoints_timed: 378 checkpoints_req: 3 [Pass] Timed checkpoints are more frequent than requested checkpoints. - *** [Transporter] - Check miguser user role -[Pass] User 'miguser' is present -[Pass] User 'miguser' has replication permission + *** [Transporter] - Check debezium user role +[Pass] User 'debezium' is present +[Pass] User 'debezium' has replication permission *** [Transporter] - Check SELECT privilege on the tables to be migrated -[Pass] User miguser has select privilege on all tables to be migrated. +[Pass] User debezium has select privilege on all tables to be migrated. *** [Transporter] - Check presence of a replication slot -[Pass] Replication slot 'miguser' is present +[Fail] Replication slot 'debezium' is not present ``` !!! Note -In the above example output, note that the `max_wal_size` check failed. Despite this, the migration was able to be run successfully without any issues. Therefore, although this check might fail, a lower setting may actually be sufficient in certain use cases depending on the workload on the source database. +In the previous example, the `max_wal_size` check failed, but the migration ran without any issues. Therefore, although this check might fail, a lower setting may be sufficient in certain use cases depending on the workload on the source database. + +Additionally, you can ignore the failure message related to the replication slot. This is an outdated check that is no longer required as the EDB DMS Reader automatically creates and manages the required replication slot. The check will be removed in a future version of the `postgresConfigValidationsh` script. !!! ## More information diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/limitations.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/limitations.mdx index f27ce703144..e915c1ac2c7 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/limitations.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/limitations.mdx @@ -1,8 +1,14 @@ --- title: "Limitations" -description: Revise any unsupported Oracle data types and features. +description: Revise any unsupported data types and features. --- +## General limitations + +EDB DMS doesn’t currently support migrating schemas, tables, and columns that have case-sensitive names. + +## Oracle limitations + A limited number of Oracle data types and features aren't supported by EDB Data Migration Service (EDB DMS). See the [Debezium documentation](https://debezium.io/documentation/reference/2.2/connectors/oracle.html#oracle-data-type-mappings) for detailed comments on supported data types. @@ -21,4 +27,29 @@ Unsupported Oracle data types include: EDB DMS supports replicating Oracle tables that contain BLOB, CLOB, or NCLOB columns only if these also have the primary key constraint. If the tables don't have the primary key constraint, the streaming replication will only support INSERT operations. -`BINARY_FLOAT` and `BINARY_DOUBLE` types in Oracle that might contain `Nan`, `+INF`, and `-INF` values are not supported by EDB DMS. +`BINARY_FLOAT` and `BINARY_DOUBLE` types in Oracle that might contain `Nan`, `+INF`, and `-INF` values are not supported by EDB DMS. + +## Postgres limitations + +### Unsupported domain type definitions in columns + +The EDB DMS doesn't support migrating tables with columns that have user-defined domains as data types for the following data type domains: + +- DATE +- TIME +- TIMESTAMP +- INTERVAL +- UUID +- ENUM +- JSON +- XML +- POINT +- LTREE + +### Incorrect failure messages + +The `postgresConfigValidation.sh` script referenced in [Preparing Postgres database sources](getting_started/preparing_db/preparing_postgres_source_databases) incorrectly reports failures for the `max_wal_size` database parameter check and for the replication slot check. + +The script reports a failure for the `max_wal_size` check, if the parameter is set to a value lower than 8 GB. Although this is a recommended setting for many production workloads, setting the parameter to a lower value doesn't prevent a migration from being performed. + +In addition, the Postgres configuration validation script also performs a check to see if a replication slot with a slot name matching the migration user/role was created. This is an outdated check that is no longer needed because the EDB DMS Reader automatically creates and manages the required replication slot. You can ignore the failure message related to the replication slot. The check will be removed in a future version of the `postgresConfigValidation.sh` script. \ No newline at end of file From cfde4f012480c65973c27f8e1ab6faf50e2b1d89 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Wed, 25 Sep 2024 14:47:31 +0200 Subject: [PATCH 41/45] Fixed misspelling of privilege --- .../preparing_db/preparing_postgres_source_databases.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx index edffde44eac..bb14fc07af2 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx @@ -125,7 +125,7 @@ Where: ### Grant `CREATE` privileges on the source database to the CDC migration role -Since the `pgoutput` plugin is being used, the migration user needs to be granted `CREATE` priveleges on the source database in order for Debezium to be able to create publications. The `CREATE` privelege can be granted using the following command: +Since the `pgoutput` plugin is being used, the migration user needs to be granted `CREATE` privileges on the source database in order for Debezium to be able to create publications. The `CREATE` privilege can be granted using the following command: ```sql GRANT CREATE ON DATABASE to From 4c317bac359bee81adff6a113ff5d9e5941f5fab Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Wed, 25 Sep 2024 14:53:51 +0200 Subject: [PATCH 42/45] Fixed misspelling of script. --- .../preparing_db/preparing_postgres_source_databases.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx index bb14fc07af2..dab5b05ebdc 100644 --- a/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx +++ b/advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/preparing_db/preparing_postgres_source_databases.mdx @@ -190,7 +190,7 @@ checkpoints_req: 3 !!! Note In the previous example, the `max_wal_size` check failed, but the migration ran without any issues. Therefore, although this check might fail, a lower setting may be sufficient in certain use cases depending on the workload on the source database. -Additionally, you can ignore the failure message related to the replication slot. This is an outdated check that is no longer required as the EDB DMS Reader automatically creates and manages the required replication slot. The check will be removed in a future version of the `postgresConfigValidationsh` script. +Additionally, you can ignore the failure message related to the replication slot. This is an outdated check that is no longer required as the EDB DMS Reader automatically creates and manages the required replication slot. The check will be removed in a future version of the `postgresConfigValidation.sh` script. !!! ## More information From 7f084b87884eb80dcc172b8feaf63d9c8e42d9de Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan Date: Wed, 25 Sep 2024 14:39:05 +0100 Subject: [PATCH 43/45] Fixed for rebase Signed-off-by: Dj Walker-Morgan --- src/pages/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/index.js b/src/pages/index.js index 18ec98acf11..abd5f6d3829 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -464,9 +464,9 @@ const Page = () => { Oracle Migration Handbook - + {/* Migration Toolkit - + */} Replication Server From 012e67cf4ba17422208c1b0649e718df2a62c81d Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Wed, 25 Sep 2024 15:24:26 +0000 Subject: [PATCH 44/45] Fix JDBC version for install templates --- install_template/config.yaml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 1f926ad4ffc..d67cab3420b 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -32,49 +32,49 @@ products: platforms: - name: RHEL 8 arch: ppc64le - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: RHEL 8 or OL 8 arch: x86_64 - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: RHEL 9 arch: ppc64le - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: AlmaLinux 9 or Rocky Linux 9 arch: x86_64 - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: RHEL 9 or OL 9 arch: x86_64 - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: Debian 11 arch: x86_64 - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: Debian 12 arch: x86_64 - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: Debian 12 arch: arm64 - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: Ubuntu 20.04 arch: x86_64 - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: Ubuntu 22.04 arch: x86_64 - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: SLES 15 arch: x86_64 - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: SLES 12 arch: x86_64 - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: SLES 15 arch: ppc64le - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: SLES 12 arch: ppc64le - supported versions: [42.5.4.2] + supported versions: [42.7.3.1] - name: Migration Toolkit platforms: - name: RHEL 8 or OL 8 From c9461b2abe89a306b236b01bcda35ae238bc321e Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Wed, 25 Sep 2024 15:25:05 +0000 Subject: [PATCH 45/45] update generated install files --- .../postgresql/installing/linux_arm64/postgresql_debian_12.mdx | 3 ++- .../postgresql/installing/linux_ppc64le/postgresql_rhel_8.mdx | 3 ++- .../postgresql/installing/linux_ppc64le/postgresql_rhel_9.mdx | 3 ++- .../postgresql/installing/linux_ppc64le/postgresql_sles_12.mdx | 3 ++- .../postgresql/installing/linux_ppc64le/postgresql_sles_15.mdx | 3 ++- .../installing/linux_x86_64/postgresql_debian_11.mdx | 3 ++- .../installing/linux_x86_64/postgresql_debian_12.mdx | 3 ++- .../installing/linux_x86_64/postgresql_other_linux_8.mdx | 3 ++- .../installing/linux_x86_64/postgresql_other_linux_9.mdx | 3 ++- .../postgresql/installing/linux_x86_64/postgresql_rhel_8.mdx | 3 ++- .../postgresql/installing/linux_x86_64/postgresql_rhel_9.mdx | 3 ++- .../postgresql/installing/linux_x86_64/postgresql_sles_12.mdx | 3 ++- .../postgresql/installing/linux_x86_64/postgresql_sles_15.mdx | 3 ++- .../installing/linux_x86_64/postgresql_ubuntu_20.mdx | 3 ++- .../installing/linux_x86_64/postgresql_ubuntu_22.mdx | 3 ++- .../edb_plus/41/installing/linux_arm64/edbplus_debian_12.mdx | 3 ++- .../edb_plus/41/installing/linux_ppc64le/edbplus_rhel_8.mdx | 3 ++- .../edb_plus/41/installing/linux_ppc64le/edbplus_rhel_9.mdx | 3 ++- .../edb_plus/41/installing/linux_ppc64le/edbplus_sles_12.mdx | 3 ++- .../edb_plus/41/installing/linux_ppc64le/edbplus_sles_15.mdx | 3 ++- .../edb_plus/41/installing/linux_x86_64/edbplus_debian_11.mdx | 3 ++- .../edb_plus/41/installing/linux_x86_64/edbplus_debian_12.mdx | 3 ++- .../41/installing/linux_x86_64/edbplus_other_linux_8.mdx | 3 ++- .../41/installing/linux_x86_64/edbplus_other_linux_9.mdx | 3 ++- .../edb_plus/41/installing/linux_x86_64/edbplus_rhel_8.mdx | 3 ++- .../edb_plus/41/installing/linux_x86_64/edbplus_rhel_9.mdx | 3 ++- .../edb_plus/41/installing/linux_x86_64/edbplus_sles_12.mdx | 3 ++- .../edb_plus/41/installing/linux_x86_64/edbplus_sles_15.mdx | 3 ++- .../edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_20.mdx | 3 ++- .../edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_22.mdx | 3 ++- .../docs/efm/4/installing/linux_arm64/efm_debian_12.mdx | 3 ++- .../docs/efm/4/installing/linux_ppc64le/efm_rhel_8.mdx | 3 ++- .../docs/efm/4/installing/linux_ppc64le/efm_rhel_9.mdx | 3 ++- .../docs/efm/4/installing/linux_ppc64le/efm_sles_12.mdx | 3 ++- .../docs/efm/4/installing/linux_ppc64le/efm_sles_15.mdx | 3 ++- .../docs/efm/4/installing/linux_x86_64/efm_debian_11.mdx | 3 ++- .../docs/efm/4/installing/linux_x86_64/efm_debian_12.mdx | 3 ++- .../docs/efm/4/installing/linux_x86_64/efm_other_linux_8.mdx | 3 ++- .../docs/efm/4/installing/linux_x86_64/efm_other_linux_9.mdx | 3 ++- product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_8.mdx | 3 ++- product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_9.mdx | 3 ++- .../docs/efm/4/installing/linux_x86_64/efm_sles_12.mdx | 3 ++- .../docs/efm/4/installing/linux_x86_64/efm_sles_15.mdx | 3 ++- .../docs/efm/4/installing/linux_x86_64/efm_ubuntu_20.mdx | 3 ++- .../docs/efm/4/installing/linux_x86_64/efm_ubuntu_22.mdx | 3 ++- .../docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx | 3 ++- .../docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx | 3 ++- .../docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx | 3 ++- .../docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx | 3 ++- .../docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx | 3 ++- .../epas/11/installing/linux_x86_64/epas_other_linux_8.mdx | 3 ++- .../epas/11/installing/linux_x86_64/epas_other_linux_9.mdx | 3 ++- .../docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx | 3 ++- .../docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx | 3 ++- .../docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx | 3 ++- .../docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx | 3 ++- .../docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx | 3 ++- .../docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx | 3 ++- .../docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx | 3 ++- .../docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx | 3 ++- .../docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx | 3 ++- .../docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx | 3 ++- .../docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx | 3 ++- .../epas/12/installing/linux_x86_64/epas_other_linux_8.mdx | 3 ++- .../epas/12/installing/linux_x86_64/epas_other_linux_9.mdx | 3 ++- .../docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx | 3 ++- .../docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx | 3 ++- .../docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx | 3 ++- .../docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx | 3 ++- .../docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx | 3 ++- .../docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx | 3 ++- .../docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx | 3 ++- .../docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx | 3 ++- .../docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx | 3 ++- .../docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx | 3 ++- .../docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx | 3 ++- .../epas/13/installing/linux_x86_64/epas_other_linux_8.mdx | 3 ++- .../epas/13/installing/linux_x86_64/epas_other_linux_9.mdx | 3 ++- .../docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx | 3 ++- .../docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx | 3 ++- .../docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx | 3 ++- .../docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx | 3 ++- .../docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx | 3 ++- .../docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx | 3 ++- .../docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx | 3 ++- .../docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx | 3 ++- .../docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx | 3 ++- .../docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx | 3 ++- .../docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx | 3 ++- .../epas/14/installing/linux_x86_64/epas_other_linux_8.mdx | 3 ++- .../epas/14/installing/linux_x86_64/epas_other_linux_9.mdx | 3 ++- .../docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx | 3 ++- .../docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx | 3 ++- .../docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx | 3 ++- .../docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx | 3 ++- .../docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx | 3 ++- .../docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx | 3 ++- .../docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx | 3 ++- .../docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx | 3 ++- .../docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx | 3 ++- .../docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx | 3 ++- .../docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx | 3 ++- .../epas/15/installing/linux_x86_64/epas_other_linux_8.mdx | 3 ++- .../epas/15/installing/linux_x86_64/epas_other_linux_9.mdx | 3 ++- .../docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx | 3 ++- .../docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx | 3 ++- .../docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx | 3 ++- .../docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx | 3 ++- .../docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx | 3 ++- .../docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx | 3 ++- .../docs/epas/16/installing/linux_arm64/epas_debian_12.mdx | 3 ++- .../docs/epas/16/installing/linux_ppc64le/epas_rhel_8.mdx | 3 ++- .../docs/epas/16/installing/linux_ppc64le/epas_rhel_9.mdx | 3 ++- .../docs/epas/16/installing/linux_ppc64le/epas_sles_12.mdx | 3 ++- .../docs/epas/16/installing/linux_ppc64le/epas_sles_15.mdx | 3 ++- .../docs/epas/16/installing/linux_x86_64/epas_debian_11.mdx | 3 ++- .../docs/epas/16/installing/linux_x86_64/epas_debian_12.mdx | 3 ++- .../epas/16/installing/linux_x86_64/epas_other_linux_8.mdx | 3 ++- .../epas/16/installing/linux_x86_64/epas_other_linux_9.mdx | 3 ++- .../docs/epas/16/installing/linux_x86_64/epas_rhel_8.mdx | 3 ++- .../docs/epas/16/installing/linux_x86_64/epas_rhel_9.mdx | 3 ++- .../docs/epas/16/installing/linux_x86_64/epas_sles_12.mdx | 3 ++- .../docs/epas/16/installing/linux_x86_64/epas_sles_15.mdx | 3 ++- .../docs/epas/16/installing/linux_x86_64/epas_ubuntu_20.mdx | 3 ++- .../docs/epas/16/installing/linux_x86_64/epas_ubuntu_22.mdx | 3 ++- .../docs/eprs/7/installing/linux_arm64/eprs_debian_12.mdx | 3 ++- .../docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx | 3 ++- .../docs/eprs/7/installing/linux_ppc64le/eprs_rhel_9.mdx | 3 ++- .../docs/eprs/7/installing/linux_ppc64le/eprs_sles_12.mdx | 3 ++- .../docs/eprs/7/installing/linux_ppc64le/eprs_sles_15.mdx | 3 ++- .../docs/eprs/7/installing/linux_x86_64/eprs_debian_11.mdx | 3 ++- .../docs/eprs/7/installing/linux_x86_64/eprs_debian_12.mdx | 3 ++- .../docs/eprs/7/installing/linux_x86_64/eprs_other_linux_8.mdx | 3 ++- .../docs/eprs/7/installing/linux_x86_64/eprs_other_linux_9.mdx | 3 ++- .../docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx | 3 ++- .../docs/eprs/7/installing/linux_x86_64/eprs_rhel_9.mdx | 3 ++- .../docs/eprs/7/installing/linux_x86_64/eprs_sles_12.mdx | 3 ++- .../docs/eprs/7/installing/linux_x86_64/eprs_sles_15.mdx | 3 ++- .../docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_20.mdx | 3 ++- .../docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_22.mdx | 3 ++- .../2/installing/linux_arm64/hadoop_debian_12.mdx | 3 ++- .../2/installing/linux_ppc64le/hadoop_rhel_8.mdx | 3 ++- .../2/installing/linux_ppc64le/hadoop_rhel_9.mdx | 3 ++- .../2/installing/linux_ppc64le/hadoop_sles_12.mdx | 3 ++- .../2/installing/linux_ppc64le/hadoop_sles_15.mdx | 3 ++- .../2/installing/linux_x86_64/hadoop_debian_11.mdx | 3 ++- .../2/installing/linux_x86_64/hadoop_debian_12.mdx | 3 ++- .../2/installing/linux_x86_64/hadoop_other_linux_8.mdx | 3 ++- .../2/installing/linux_x86_64/hadoop_other_linux_9.mdx | 3 ++- .../2/installing/linux_x86_64/hadoop_rhel_8.mdx | 3 ++- .../2/installing/linux_x86_64/hadoop_rhel_9.mdx | 3 ++- .../2/installing/linux_x86_64/hadoop_sles_12.mdx | 3 ++- .../2/installing/linux_x86_64/hadoop_sles_15.mdx | 3 ++- .../2/installing/linux_x86_64/hadoop_ubuntu_20.mdx | 3 ++- .../2/installing/linux_x86_64/hadoop_ubuntu_22.mdx | 3 ++- .../42.7.3.1/installing/linux_arm64/jdbc_debian_12.mdx | 3 ++- .../42.7.3.1/installing/linux_ppc64le/jdbc_rhel_8.mdx | 3 ++- .../42.7.3.1/installing/linux_ppc64le/jdbc_rhel_9.mdx | 3 ++- .../42.7.3.1/installing/linux_ppc64le/jdbc_sles_12.mdx | 3 ++- .../42.7.3.1/installing/linux_ppc64le/jdbc_sles_15.mdx | 3 ++- .../42.7.3.1/installing/linux_x86_64/jdbc_debian_11.mdx | 3 ++- .../42.7.3.1/installing/linux_x86_64/jdbc_debian_12.mdx | 3 ++- .../42.7.3.1/installing/linux_x86_64/jdbc_other_linux_8.mdx | 3 ++- .../42.7.3.1/installing/linux_x86_64/jdbc_other_linux_9.mdx | 3 ++- .../42.7.3.1/installing/linux_x86_64/jdbc_rhel_8.mdx | 3 ++- .../42.7.3.1/installing/linux_x86_64/jdbc_rhel_9.mdx | 3 ++- .../42.7.3.1/installing/linux_x86_64/jdbc_sles_12.mdx | 3 ++- .../42.7.3.1/installing/linux_x86_64/jdbc_sles_15.mdx | 3 ++- .../42.7.3.1/installing/linux_x86_64/jdbc_ubuntu_20.mdx | 3 ++- .../42.7.3.1/installing/linux_x86_64/jdbc_ubuntu_22.mdx | 3 ++- .../55/installing/linux_arm64/mtk_debian_12.mdx | 3 ++- .../55/installing/linux_ppc64le/mtk_rhel_8.mdx | 3 ++- .../55/installing/linux_ppc64le/mtk_rhel_9.mdx | 3 ++- .../55/installing/linux_ppc64le/mtk_sles_12.mdx | 3 ++- .../55/installing/linux_ppc64le/mtk_sles_15.mdx | 3 ++- .../55/installing/linux_x86_64/mtk_debian_11.mdx | 3 ++- .../55/installing/linux_x86_64/mtk_debian_12.mdx | 3 ++- .../55/installing/linux_x86_64/mtk_other_linux_8.mdx | 3 ++- .../55/installing/linux_x86_64/mtk_other_linux_9.mdx | 3 ++- .../55/installing/linux_x86_64/mtk_rhel_8.mdx | 3 ++- .../55/installing/linux_x86_64/mtk_rhel_9.mdx | 3 ++- .../55/installing/linux_x86_64/mtk_sles_12.mdx | 3 ++- .../55/installing/linux_x86_64/mtk_sles_15.mdx | 3 ++- .../55/installing/linux_x86_64/mtk_ubuntu_20.mdx | 3 ++- .../55/installing/linux_x86_64/mtk_ubuntu_22.mdx | 3 ++- .../5/installing/linux_arm64/mongo_debian_12.mdx | 3 ++- .../5/installing/linux_ppc64le/mongo_rhel_8.mdx | 3 ++- .../5/installing/linux_ppc64le/mongo_rhel_9.mdx | 3 ++- .../5/installing/linux_ppc64le/mongo_sles_12.mdx | 3 ++- .../5/installing/linux_ppc64le/mongo_sles_15.mdx | 3 ++- .../5/installing/linux_x86_64/mongo_debian_11.mdx | 3 ++- .../5/installing/linux_x86_64/mongo_debian_12.mdx | 3 ++- .../5/installing/linux_x86_64/mongo_other_linux_8.mdx | 3 ++- .../5/installing/linux_x86_64/mongo_other_linux_9.mdx | 3 ++- .../5/installing/linux_x86_64/mongo_rhel_8.mdx | 3 ++- .../5/installing/linux_x86_64/mongo_rhel_9.mdx | 3 ++- .../5/installing/linux_x86_64/mongo_sles_12.mdx | 3 ++- .../5/installing/linux_x86_64/mongo_sles_15.mdx | 3 ++- .../5/installing/linux_x86_64/mongo_ubuntu_20.mdx | 3 ++- .../5/installing/linux_x86_64/mongo_ubuntu_22.mdx | 3 ++- .../2/installing/linux_arm64/mysql_debian_12.mdx | 3 ++- .../2/installing/linux_ppc64le/mysql_rhel_8.mdx | 3 ++- .../2/installing/linux_ppc64le/mysql_rhel_9.mdx | 3 ++- .../2/installing/linux_ppc64le/mysql_sles_12.mdx | 3 ++- .../2/installing/linux_ppc64le/mysql_sles_15.mdx | 3 ++- .../2/installing/linux_x86_64/mysql_debian_11.mdx | 3 ++- .../2/installing/linux_x86_64/mysql_debian_12.mdx | 3 ++- .../2/installing/linux_x86_64/mysql_other_linux_8.mdx | 3 ++- .../2/installing/linux_x86_64/mysql_other_linux_9.mdx | 3 ++- .../2/installing/linux_x86_64/mysql_rhel_8.mdx | 3 ++- .../2/installing/linux_x86_64/mysql_rhel_9.mdx | 3 ++- .../2/installing/linux_x86_64/mysql_sles_12.mdx | 3 ++- .../2/installing/linux_x86_64/mysql_sles_15.mdx | 3 ++- .../2/installing/linux_x86_64/mysql_ubuntu_20.mdx | 3 ++- .../2/installing/linux_x86_64/mysql_ubuntu_22.mdx | 3 ++- .../ocl_connector/14/installing/linux_ppc64le/ocl_rhel_8.mdx | 3 ++- .../ocl_connector/14/installing/linux_ppc64le/ocl_rhel_9.mdx | 3 ++- .../ocl_connector/14/installing/linux_ppc64le/ocl_sles_12.mdx | 3 ++- .../ocl_connector/14/installing/linux_ppc64le/ocl_sles_15.mdx | 3 ++- .../ocl_connector/14/installing/linux_x86_64/ocl_debian_11.mdx | 3 ++- .../14/installing/linux_x86_64/ocl_other_linux_8.mdx | 3 ++- .../14/installing/linux_x86_64/ocl_other_linux_9.mdx | 3 ++- .../ocl_connector/14/installing/linux_x86_64/ocl_rhel_8.mdx | 3 ++- .../ocl_connector/14/installing/linux_x86_64/ocl_rhel_9.mdx | 3 ++- .../ocl_connector/14/installing/linux_x86_64/ocl_sles_12.mdx | 3 ++- .../ocl_connector/14/installing/linux_x86_64/ocl_sles_15.mdx | 3 ++- .../ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_20.mdx | 3 ++- .../ocl_connector/15/installing/linux_ppc64le/ocl_rhel_8.mdx | 3 ++- .../ocl_connector/15/installing/linux_ppc64le/ocl_rhel_9.mdx | 3 ++- .../ocl_connector/15/installing/linux_ppc64le/ocl_sles_12.mdx | 3 ++- .../ocl_connector/15/installing/linux_ppc64le/ocl_sles_15.mdx | 3 ++- .../ocl_connector/15/installing/linux_x86_64/ocl_debian_11.mdx | 3 ++- .../15/installing/linux_x86_64/ocl_other_linux_8.mdx | 3 ++- .../15/installing/linux_x86_64/ocl_other_linux_9.mdx | 3 ++- .../ocl_connector/15/installing/linux_x86_64/ocl_rhel_8.mdx | 3 ++- .../ocl_connector/15/installing/linux_x86_64/ocl_rhel_9.mdx | 3 ++- .../ocl_connector/15/installing/linux_x86_64/ocl_sles_12.mdx | 3 ++- .../ocl_connector/15/installing/linux_x86_64/ocl_sles_15.mdx | 3 ++- .../ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_20.mdx | 3 ++- .../ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_22.mdx | 3 ++- .../ocl_connector/16/installing/linux_arm64/ocl_debian_12.mdx | 3 ++- .../ocl_connector/16/installing/linux_ppc64le/ocl_rhel_8.mdx | 3 ++- .../ocl_connector/16/installing/linux_ppc64le/ocl_rhel_9.mdx | 3 ++- .../ocl_connector/16/installing/linux_ppc64le/ocl_sles_12.mdx | 3 ++- .../ocl_connector/16/installing/linux_ppc64le/ocl_sles_15.mdx | 3 ++- .../ocl_connector/16/installing/linux_x86_64/ocl_debian_11.mdx | 3 ++- .../ocl_connector/16/installing/linux_x86_64/ocl_debian_12.mdx | 3 ++- .../16/installing/linux_x86_64/ocl_other_linux_8.mdx | 3 ++- .../16/installing/linux_x86_64/ocl_other_linux_9.mdx | 3 ++- .../ocl_connector/16/installing/linux_x86_64/ocl_rhel_8.mdx | 3 ++- .../ocl_connector/16/installing/linux_x86_64/ocl_rhel_9.mdx | 3 ++- .../ocl_connector/16/installing/linux_x86_64/ocl_sles_12.mdx | 3 ++- .../ocl_connector/16/installing/linux_x86_64/ocl_sles_15.mdx | 3 ++- .../ocl_connector/16/installing/linux_x86_64/ocl_ubuntu_20.mdx | 3 ++- .../ocl_connector/16/installing/linux_x86_64/ocl_ubuntu_22.mdx | 3 ++- .../odbc_connector/13/installing/linux_ppc64le/odbc_rhel_8.mdx | 3 ++- .../odbc_connector/13/installing/linux_ppc64le/odbc_rhel_9.mdx | 3 ++- .../13/installing/linux_ppc64le/odbc_sles_12.mdx | 3 ++- .../13/installing/linux_ppc64le/odbc_sles_15.mdx | 3 ++- .../13/installing/linux_x86_64/odbc_debian_11.mdx | 3 ++- .../13/installing/linux_x86_64/odbc_other_linux_8.mdx | 3 ++- .../13/installing/linux_x86_64/odbc_other_linux_9.mdx | 3 ++- .../odbc_connector/13/installing/linux_x86_64/odbc_rhel_8.mdx | 3 ++- .../odbc_connector/13/installing/linux_x86_64/odbc_rhel_9.mdx | 3 ++- .../odbc_connector/13/installing/linux_x86_64/odbc_sles_12.mdx | 3 ++- .../odbc_connector/13/installing/linux_x86_64/odbc_sles_15.mdx | 3 ++- .../13/installing/linux_x86_64/odbc_ubuntu_20.mdx | 3 ++- .../13/installing/linux_x86_64/odbc_ubuntu_22.mdx | 3 ++- .../16/installing/linux_arm64/odbc_debian_12.mdx | 3 ++- .../odbc_connector/16/installing/linux_ppc64le/odbc_rhel_8.mdx | 3 ++- .../odbc_connector/16/installing/linux_ppc64le/odbc_rhel_9.mdx | 3 ++- .../16/installing/linux_ppc64le/odbc_sles_12.mdx | 3 ++- .../16/installing/linux_ppc64le/odbc_sles_15.mdx | 3 ++- .../16/installing/linux_x86_64/odbc_debian_11.mdx | 3 ++- .../16/installing/linux_x86_64/odbc_debian_12.mdx | 3 ++- .../16/installing/linux_x86_64/odbc_other_linux_8.mdx | 3 ++- .../16/installing/linux_x86_64/odbc_other_linux_9.mdx | 3 ++- .../odbc_connector/16/installing/linux_x86_64/odbc_rhel_8.mdx | 3 ++- .../odbc_connector/16/installing/linux_x86_64/odbc_rhel_9.mdx | 3 ++- .../odbc_connector/16/installing/linux_x86_64/odbc_sles_12.mdx | 3 ++- .../odbc_connector/16/installing/linux_x86_64/odbc_sles_15.mdx | 3 ++- .../16/installing/linux_x86_64/odbc_ubuntu_20.mdx | 3 ++- .../16/installing/linux_x86_64/odbc_ubuntu_22.mdx | 3 ++- .../9/installing_pem_agent/linux_arm64/pem_agent_debian_12.mdx | 3 ++- .../9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx | 3 ++- .../9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx | 3 ++- .../9/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx | 3 ++- .../9/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx | 3 ++- .../installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx | 3 ++- .../installing_pem_agent/linux_x86_64/pem_agent_debian_12.mdx | 3 ++- .../linux_x86_64/pem_agent_other_linux_8.mdx | 3 ++- .../linux_x86_64/pem_agent_other_linux_9.mdx | 3 ++- .../9/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx | 3 ++- .../9/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx | 3 ++- .../9/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx | 3 ++- .../9/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx | 3 ++- .../installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx | 3 ++- .../installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx | 3 ++- .../pgbouncer/1/installing/linux_arm64/pgbouncer_debian_12.mdx | 3 ++- .../pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_8.mdx | 3 ++- .../pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_9.mdx | 3 ++- .../pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_12.mdx | 3 ++- .../pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_15.mdx | 3 ++- .../1/installing/linux_x86_64/pgbouncer_debian_11.mdx | 3 ++- .../1/installing/linux_x86_64/pgbouncer_debian_12.mdx | 3 ++- .../1/installing/linux_x86_64/pgbouncer_other_linux_8.mdx | 3 ++- .../1/installing/linux_x86_64/pgbouncer_other_linux_9.mdx | 3 ++- .../pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_8.mdx | 3 ++- .../pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_9.mdx | 3 ++- .../pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_12.mdx | 3 ++- .../pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_15.mdx | 3 ++- .../1/installing/linux_x86_64/pgbouncer_ubuntu_20.mdx | 3 ++- .../1/installing/linux_x86_64/pgbouncer_ubuntu_22.mdx | 3 ++- .../docs/pge/15/installing/linux_x86_64/pge_debian_11.mdx | 3 ++- .../docs/pge/15/installing/linux_x86_64/pge_other_linux_8.mdx | 3 ++- .../docs/pge/15/installing/linux_x86_64/pge_other_linux_9.mdx | 3 ++- .../docs/pge/15/installing/linux_x86_64/pge_rhel_8.mdx | 3 ++- .../docs/pge/15/installing/linux_x86_64/pge_rhel_9.mdx | 3 ++- .../docs/pge/15/installing/linux_x86_64/pge_ubuntu_20.mdx | 3 ++- .../docs/pge/15/installing/linux_x86_64/pge_ubuntu_22.mdx | 3 ++- .../docs/pge/16/installing/linux_arm64/pge_debian_12.mdx | 3 ++- .../docs/pge/16/installing/linux_x86_64/pge_debian_11.mdx | 3 ++- .../docs/pge/16/installing/linux_x86_64/pge_debian_12.mdx | 3 ++- .../docs/pge/16/installing/linux_x86_64/pge_other_linux_8.mdx | 3 ++- .../docs/pge/16/installing/linux_x86_64/pge_other_linux_9.mdx | 3 ++- .../docs/pge/16/installing/linux_x86_64/pge_rhel_8.mdx | 3 ++- .../docs/pge/16/installing/linux_x86_64/pge_rhel_9.mdx | 3 ++- .../docs/pge/16/installing/linux_x86_64/pge_ubuntu_20.mdx | 3 ++- .../docs/pge/16/installing/linux_x86_64/pge_ubuntu_22.mdx | 3 ++- .../docs/pgpool/4/installing/linux_arm64/pgpool_debian_12.mdx | 3 ++- .../docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_8.mdx | 3 ++- .../docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_9.mdx | 3 ++- .../docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_12.mdx | 3 ++- .../docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_15.mdx | 3 ++- .../docs/pgpool/4/installing/linux_x86_64/pgpool_debian_11.mdx | 3 ++- .../docs/pgpool/4/installing/linux_x86_64/pgpool_debian_12.mdx | 3 ++- .../pgpool/4/installing/linux_x86_64/pgpool_other_linux_8.mdx | 3 ++- .../pgpool/4/installing/linux_x86_64/pgpool_other_linux_9.mdx | 3 ++- .../docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_8.mdx | 3 ++- .../docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_9.mdx | 3 ++- .../docs/pgpool/4/installing/linux_x86_64/pgpool_sles_12.mdx | 3 ++- .../docs/pgpool/4/installing/linux_x86_64/pgpool_sles_15.mdx | 3 ++- .../docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_20.mdx | 3 ++- .../docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_22.mdx | 3 ++- .../installing_extensions/linux_arm64/pgpoolext_debian_12.mdx | 3 ++- .../4/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx | 3 ++- .../4/installing_extensions/linux_ppc64le/pgpoolext_rhel_9.mdx | 3 ++- .../installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx | 3 ++- .../installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx | 3 ++- .../installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx | 3 ++- .../installing_extensions/linux_x86_64/pgpoolext_debian_12.mdx | 3 ++- .../linux_x86_64/pgpoolext_other_linux_8.mdx | 3 ++- .../linux_x86_64/pgpoolext_other_linux_9.mdx | 3 ++- .../4/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx | 3 ++- .../4/installing_extensions/linux_x86_64/pgpoolext_rhel_9.mdx | 3 ++- .../4/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx | 3 ++- .../4/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx | 3 ++- .../installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx | 3 ++- .../installing_extensions/linux_x86_64/pgpoolext_ubuntu_22.mdx | 3 ++- .../postgis/3/installing/linux_arm64/postgis_debian_12.mdx | 3 ++- .../docs/postgis/3/installing/linux_ppc64le/postgis_rhel_8.mdx | 3 ++- .../docs/postgis/3/installing/linux_ppc64le/postgis_rhel_9.mdx | 3 ++- .../postgis/3/installing/linux_ppc64le/postgis_sles_12.mdx | 3 ++- .../postgis/3/installing/linux_ppc64le/postgis_sles_15.mdx | 3 ++- .../postgis/3/installing/linux_x86_64/postgis_debian_11.mdx | 3 ++- .../postgis/3/installing/linux_x86_64/postgis_debian_12.mdx | 3 ++- .../3/installing/linux_x86_64/postgis_other_linux_8.mdx | 3 ++- .../3/installing/linux_x86_64/postgis_other_linux_9.mdx | 3 ++- .../docs/postgis/3/installing/linux_x86_64/postgis_rhel_8.mdx | 3 ++- .../docs/postgis/3/installing/linux_x86_64/postgis_rhel_9.mdx | 3 ++- .../docs/postgis/3/installing/linux_x86_64/postgis_sles_12.mdx | 3 ++- .../docs/postgis/3/installing/linux_x86_64/postgis_sles_15.mdx | 3 ++- .../postgis/3/installing/linux_x86_64/postgis_ubuntu_20.mdx | 3 ++- .../postgis/3/installing/linux_x86_64/postgis_ubuntu_22.mdx | 3 ++- 374 files changed, 748 insertions(+), 374 deletions(-) diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_arm64/postgresql_debian_12.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_arm64/postgresql_debian_12.mdx index cf273d5b4f9..aab8978ea6e 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_arm64/postgresql_debian_12.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_arm64/postgresql_debian_12.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_8.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_8.mdx index c3e2e5237d4..ab2207861b7 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_8.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_8.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_9.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_9.mdx index 3e762aa7b0a..cb2ccbf5d76 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_9.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_9.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_12.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_12.mdx index bf8141f3d66..31ef0406b6e 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_12.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_12.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_15.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_15.mdx index 0d0439786f6..d7b97854082 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_15.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_15.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_11.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_11.mdx index 634d828fb8c..6c4d367cb14 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_11.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_11.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_12.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_12.mdx index bf4e8c0cde7..06633744517 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_12.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_12.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_8.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_8.mdx index 1c5326e35eb..a4563db76d3 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_8.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_8.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_9.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_9.mdx index 961fd1f24c2..6a626afd764 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_9.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_9.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_8.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_8.mdx index 5593f7c58bb..0b70caa86b8 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_8.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_8.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_9.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_9.mdx index 1b1142ede51..77a64e42dd1 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_9.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_9.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_12.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_12.mdx index e82458ca808..1996a604df0 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_12.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_12.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_15.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_15.mdx index 78d2ff80496..ed35b457fd6 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_15.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_15.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_20.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_20.mdx index b64d5d720c7..bf1f3820542 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_20.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_20.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_22.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_22.mdx index 482bb140ab1..275f937b397 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_22.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_22.mdx @@ -15,7 +15,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -26,6 +26,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_arm64/edbplus_debian_12.mdx b/product_docs/docs/edb_plus/41/installing/linux_arm64/edbplus_debian_12.mdx index 01354ee8566..697d3763066 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_arm64/edbplus_debian_12.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_arm64/edbplus_debian_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_8.mdx b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_8.mdx index eda2f3d9221..651aec3275a 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_8.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_8.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_9.mdx b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_9.mdx index c286ac2a369..f7d4c3ed342 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_9.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_9.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_12.mdx b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_12.mdx index 4a338d3d211..3352dd57c09 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_12.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_15.mdx b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_15.mdx index db1a678bcb9..4784f4672e7 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_15.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_15.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_11.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_11.mdx index 64c314072df..92a58d42a04 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_11.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_11.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_12.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_12.mdx index 6d657a81671..268580978a7 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_12.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_8.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_8.mdx index e0eb31596db..f4cd8498760 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_8.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_8.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_9.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_9.mdx index 891e5cd8b22..52d584d3577 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_9.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_9.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_8.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_8.mdx index 4bd591c3e01..7a9a6c34bdb 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_8.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_8.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_9.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_9.mdx index 4ae4c14418e..f52dc17351a 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_9.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_9.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_12.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_12.mdx index c3ebe2bc609..a74dc1d18d5 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_12.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_15.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_15.mdx index 3e50338e46c..290a681cf2a 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_15.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_15.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_20.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_20.mdx index 01546e822af..dba1deb90c2 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_20.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_20.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_22.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_22.mdx index ae58f88ef84..fb44bb940ad 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_22.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_22.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_arm64/efm_debian_12.mdx b/product_docs/docs/efm/4/installing/linux_arm64/efm_debian_12.mdx index 021918bccdb..647b87e4364 100644 --- a/product_docs/docs/efm/4/installing/linux_arm64/efm_debian_12.mdx +++ b/product_docs/docs/efm/4/installing/linux_arm64/efm_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_8.mdx b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_8.mdx index dbdac049b10..71794071fa1 100644 --- a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_8.mdx +++ b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_9.mdx b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_9.mdx index af0e288c2d0..b2f07925afb 100644 --- a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_9.mdx +++ b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_12.mdx b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_12.mdx index 976b1b041d3..44f4c567140 100644 --- a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_12.mdx +++ b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_15.mdx b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_15.mdx index 83c9a7e2439..96a67f59d4e 100644 --- a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_15.mdx +++ b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_11.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_11.mdx index e397619c938..7476dee27ba 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_11.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_12.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_12.mdx index b04fed2f5a5..d137ef5a689 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_12.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_8.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_8.mdx index 60d5e3c4eed..fa8c85c2629 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_8.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_9.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_9.mdx index 57d65f849dc..3d61b46f9f7 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_9.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_8.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_8.mdx index e6a5e5d70ea..b5e98a4455c 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_8.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_9.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_9.mdx index f0a9a09410a..589fbc553f3 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_9.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_12.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_12.mdx index 6c0d3eaa96a..e9bf1812904 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_12.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_15.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_15.mdx index cf2b386735b..9f2c0b9437e 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_15.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_20.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_20.mdx index 8eac11baeb1..fa10c581e36 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_20.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_22.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_22.mdx index a6ce0ef1a6d..5e3d661d541 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_22.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx index 7a5593c9dc1..11e042dba32 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx index bbabff65e34..fb78afcb4e4 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx index 09b008e8882..2fb2aa06da2 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx index 1e7d18b522a..c7ef15eb95b 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx index 4e37db48dc7..4ae86e5c44a 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx index 88d9444c8c8..26d53495fa4 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx index 05f5953e152..d93707bcb76 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx index a35599ddfac..60f9edbbf14 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx index 4b2a0fda372..bdfc2816e88 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx index fe09c100fd5..64bd1e9fcd7 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx index ff0f0e9a040..7ae426e1b6f 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx index 9d6d0a604c3..bed1046e813 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx index ff0f358dd0d..071cc57f5a8 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx index 0010ab9236c..f2155b78dc8 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx index fda10633b0c..8014a63b072 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx index 9476c1dd5a2..429b655dc46 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx index ebf1923ea03..24a5e32ef0e 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx index df61513501e..bde54c5a4f2 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx index ae35d7c7550..a28eb778781 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx index f0649c414ec..c30162a47f3 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx index 83625c3a886..f9bd673b0c5 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx index 161da8d3f70..654c55f78b2 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx index 1297c547a24..38abf5dbf46 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx index e6f35a0eff7..7958412f51c 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx index 0c5a0e7acca..343b3a090b4 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx index 398c47497e1..3923e035f19 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx index 822bc595169..2bad33f70ec 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx index 7c9316c3518..763ac090dc7 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx index b99182814c6..7f76fdc0103 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx index af85d987127..1cb5cf16073 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx index c1a4a38f635..1f38741b6cc 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx index 4a9de692cc5..1c3e8fe961c 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx index 8c4e147116c..d6d50ff93dc 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx index 1b678ac8458..c869ecaa3cf 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx index 8206774534f..df4b3476006 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx index 99ce0bf1248..de73f59e301 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx index 1fdceabcd7b..6631d8b26c5 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx index 2236d010cd2..7464262b900 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx index a5a62e41266..ba2e294e211 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx index eb347ba4af9..490de0af66c 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx index 4c0336a162e..7aaea955615 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx index ed9d182000d..f6f1992cf81 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx index a1fddf9ff67..081b67dd24e 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx index 157d57b1c71..2430b8282f4 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx index 3c636980360..5a7af7ce782 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx index 83d67097293..edcf4c77700 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx index b5114902f44..1b9f89c383c 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx index 7b98c9ecde1..c85e608c3c0 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx index 612bd5dabb1..ac12331d7be 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx index e05a12991a4..591c2f47b2e 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx index 43bad223063..c4180958934 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx index 8722d913a27..efcf4009995 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx index b6f297c037c..7c796778c20 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx index 1bee8706d33..352436057e0 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx index 6ae29f774d5..59e376107a5 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx index 83f0f02ab60..a75c861a213 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx index ca7cf8580cc..67ed59b3c9c 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx index 090eafc6c16..b7a24f9d6f4 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx index 84c222f8d7e..99c5eec3a7b 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx index 586872b7c15..d65d51ed6a7 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx index befe179266c..73b5b7779b5 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx index 314e526663e..f1dba6cf535 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx index 4e4c71723fa..9b05e7d3a38 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx index 211ef6e1821..cf3a22cac96 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx index 07765cab13e..3677b3c18d5 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_arm64/epas_debian_12.mdx b/product_docs/docs/epas/16/installing/linux_arm64/epas_debian_12.mdx index fea68f28765..3f354f89629 100644 --- a/product_docs/docs/epas/16/installing/linux_arm64/epas_debian_12.mdx +++ b/product_docs/docs/epas/16/installing/linux_arm64/epas_debian_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_8.mdx index 20a0de22043..394f8baf56c 100644 --- a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_9.mdx index 425f706c128..0772be02315 100644 --- a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_12.mdx index dc74ddfd3f4..23d1956bd24 100644 --- a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_15.mdx index a35630cff46..50705b7cade 100644 --- a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_15.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_11.mdx index 8ed5ca43fb4..913ddf520a3 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_11.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_12.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_12.mdx index 0e090679225..146dc09c637 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_12.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_8.mdx index b4188e691f1..7a2a860940e 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_9.mdx index b53eb262949..52f218177a4 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_8.mdx index 5bb32697fc4..21464dd1602 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_9.mdx index 0f5c05bb931..030bdaa1332 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_12.mdx index d1ea27afc13..0003e2f05a1 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_12.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_15.mdx index bb314b369f6..ac0bc1b0d6c 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_15.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_20.mdx index 0c98d1e95a8..a198834ced3 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_22.mdx index 9190e710e6f..b1fcf9882c3 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_arm64/eprs_debian_12.mdx b/product_docs/docs/eprs/7/installing/linux_arm64/eprs_debian_12.mdx index 70aadfbd86f..10c7f8875bd 100644 --- a/product_docs/docs/eprs/7/installing/linux_arm64/eprs_debian_12.mdx +++ b/product_docs/docs/eprs/7/installing/linux_arm64/eprs_debian_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx index bb612c4a6b6..703cdacb107 100644 --- a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx +++ b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_9.mdx b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_9.mdx index 7ad41edfe10..5a673cb930b 100644 --- a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_9.mdx +++ b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_9.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_12.mdx b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_12.mdx index 069cd58bd0b..fde12967753 100644 --- a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_12.mdx +++ b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_15.mdx b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_15.mdx index cc54fffccf3..efe482408b1 100644 --- a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_15.mdx +++ b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_15.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_11.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_11.mdx index 60031e6aa56..dc01361569c 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_11.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_11.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_12.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_12.mdx index e47219ebdfe..8d44d4f2793 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_12.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_8.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_8.mdx index 5a2910994be..d756a6872eb 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_8.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_8.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_9.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_9.mdx index a3d4fd24779..c041f0bf32c 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_9.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_9.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx index b05855c283a..3c66331f38f 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_9.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_9.mdx index 6ee7c0d1375..d9680d2997d 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_9.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_9.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_12.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_12.mdx index e6239326df1..bdf54fdc7b5 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_12.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_15.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_15.mdx index 942218bba9f..e18b463c2a2 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_15.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_15.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_20.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_20.mdx index 7d7f5fb819f..def855e945f 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_20.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_20.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_22.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_22.mdx index 8107682a390..7b7368b92d7 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_22.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_22.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_arm64/hadoop_debian_12.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_arm64/hadoop_debian_12.mdx index f784d506d7a..e4ef638d00c 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_arm64/hadoop_debian_12.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_arm64/hadoop_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_8.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_8.mdx index f6752c48aa2..4d8dd180098 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_8.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_9.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_9.mdx index 2ab3c522d61..2098640d318 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_9.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_12.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_12.mdx index 6225bbc86b8..b6db7be62a0 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_12.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_15.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_15.mdx index 91c2fabc956..299f8da2f68 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_15.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_11.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_11.mdx index 0225c2563b1..ceb5ab8e659 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_11.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_12.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_12.mdx index 8dc55588b03..ea652a3cc76 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_12.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_8.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_8.mdx index 1d1e74cc8a4..eda284e872d 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_8.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_9.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_9.mdx index 0c621605aa5..51dfe8013ca 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_9.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_8.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_8.mdx index 3ff6fbf5aa6..7d943bcd095 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_8.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_9.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_9.mdx index 64354a2b850..e0374150d7d 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_9.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_12.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_12.mdx index 0fdc3978e65..552f342409b 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_12.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_15.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_15.mdx index 93fcf551493..51f291cd202 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_15.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_20.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_20.mdx index fc4f3f3d4c2..f747e6a0021 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_20.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_22.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_22.mdx index 0de24c6b486..b01ddaa1232 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_22.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_arm64/jdbc_debian_12.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_arm64/jdbc_debian_12.mdx index d6c0b0fe8ee..d7f9ee2a60e 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_arm64/jdbc_debian_12.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_arm64/jdbc_debian_12.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_rhel_8.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_rhel_8.mdx index 6198c2fdd49..c66c19f61d7 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_rhel_8.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_rhel_8.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_rhel_9.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_rhel_9.mdx index 3c56972f580..971626c03e2 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_rhel_9.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_rhel_9.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_sles_12.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_sles_12.mdx index b8960c14d72..6e0f21c52d3 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_sles_12.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_sles_12.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_sles_15.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_sles_15.mdx index b33d4cf3d42..27bfdad1c8b 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_sles_15.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_ppc64le/jdbc_sles_15.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_debian_11.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_debian_11.mdx index 62a02d0e80a..56a0d52de82 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_debian_11.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_debian_11.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_debian_12.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_debian_12.mdx index fce7edb2cfd..b709022749d 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_debian_12.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_debian_12.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_other_linux_8.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_other_linux_8.mdx index 041e81b63ea..694cf7d83c4 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_other_linux_8.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_other_linux_8.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_other_linux_9.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_other_linux_9.mdx index 39d10cd48da..ce2796f20b6 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_other_linux_9.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_other_linux_9.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_rhel_8.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_rhel_8.mdx index 0bc95e8dcfb..423c514265a 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_rhel_8.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_rhel_8.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_rhel_9.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_rhel_9.mdx index 84f622437fe..80aaa3f3d87 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_rhel_9.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_rhel_9.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_sles_12.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_sles_12.mdx index 0bfc62fa4f5..1799415eaca 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_sles_12.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_sles_12.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_sles_15.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_sles_15.mdx index e95fcf41065..e7a510dc675 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_sles_15.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_sles_15.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_ubuntu_20.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_ubuntu_20.mdx index f8eef9e6d49..d284df47324 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_ubuntu_20.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_ubuntu_20.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_ubuntu_22.mdx b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_ubuntu_22.mdx index 8a572e2ec77..ad08c56aeeb 100644 --- a/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_ubuntu_22.mdx +++ b/product_docs/docs/jdbc_connector/42.7.3.1/installing/linux_x86_64/jdbc_ubuntu_22.mdx @@ -27,7 +27,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -38,6 +38,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_arm64/mtk_debian_12.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_arm64/mtk_debian_12.mdx index 38442a608e9..31b632c73cd 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_arm64/mtk_debian_12.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_arm64/mtk_debian_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_8.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_8.mdx index d9881403291..752d623eae2 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_8.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_8.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_9.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_9.mdx index 86ed5e3b3e2..959861d5f6d 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_9.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_9.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_12.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_12.mdx index 0ff1cd89512..1f9bcf267a6 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_12.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_15.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_15.mdx index 88ff831c2cd..9e7c436f844 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_15.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_15.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_11.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_11.mdx index 01a4c2e0e8b..2df2810bcdc 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_11.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_11.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_12.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_12.mdx index 31b22160b70..7da42954076 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_12.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_8.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_8.mdx index b897c4d1642..6f5210245c0 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_8.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_8.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_9.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_9.mdx index 014dcfec388..9d8366de242 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_9.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_9.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_8.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_8.mdx index eae4c82e479..abfde9faf14 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_8.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_8.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_9.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_9.mdx index b60fa098149..f1b75329491 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_9.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_9.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_12.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_12.mdx index ff2e9f31ff1..57ce22c305a 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_12.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_15.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_15.mdx index cd8dee359d7..d0372c468d4 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_15.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_15.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_20.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_20.mdx index 6db2bf2f52a..941db16e7eb 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_20.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_20.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_22.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_22.mdx index 3818dc25878..f0f41f80e44 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_22.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_22.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_arm64/mongo_debian_12.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_arm64/mongo_debian_12.mdx index 0d3242e42a8..b89496e0349 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_arm64/mongo_debian_12.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_arm64/mongo_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_8.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_8.mdx index b40b6c28913..adb5d3f054d 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_8.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_9.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_9.mdx index cbced998c42..74f3f273248 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_9.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_12.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_12.mdx index 4b8f4d52fe7..7101f804182 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_12.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_15.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_15.mdx index ac8a223c48c..7511bafb5eb 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_15.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_11.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_11.mdx index e1bfdefc27d..2ae791fafc5 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_11.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_12.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_12.mdx index 42efffb3b86..002922a4153 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_12.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_8.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_8.mdx index 9fcbd9916d7..f7d79d2bafd 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_8.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_9.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_9.mdx index f5fd50b75d9..c28819559de 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_9.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_8.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_8.mdx index 32b06feb707..dc8ddd83064 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_8.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_9.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_9.mdx index b35166da234..d126b29f58e 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_9.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_12.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_12.mdx index d508004896c..368fcb49782 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_12.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_15.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_15.mdx index 7e554c6c541..29bc61f2c84 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_15.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_20.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_20.mdx index a2d650f261c..0455dc9135e 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_20.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_22.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_22.mdx index 184fc396711..f63fc65c989 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_22.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_arm64/mysql_debian_12.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_arm64/mysql_debian_12.mdx index e565b5dbbe7..3a64f2b5f3f 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_arm64/mysql_debian_12.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_arm64/mysql_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_8.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_8.mdx index 8482a7a042c..29368485e99 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_8.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_9.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_9.mdx index 4c35aed83ed..d983cdf438e 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_9.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_12.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_12.mdx index 59abded9e62..22e2a0e81e5 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_12.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_15.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_15.mdx index 5faff91743c..ce7ec3495e7 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_15.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_11.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_11.mdx index 8595ec1d23f..7a154d86d57 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_11.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_12.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_12.mdx index fc71cb3f640..b23060cb121 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_12.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_8.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_8.mdx index 0f63cb9c164..0f391065d21 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_8.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_9.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_9.mdx index 64f9425eb30..9d2553e2b9d 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_9.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_8.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_8.mdx index ce7db33b977..26df00fb2a1 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_8.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_9.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_9.mdx index b2927cd3da7..cdf12284cc2 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_9.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_12.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_12.mdx index 572a531f1f4..976784db8f6 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_12.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_15.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_15.mdx index 1948041abc9..c6a2fd377b3 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_15.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_20.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_20.mdx index 1f0c26f0490..f2f68973920 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_20.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_22.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_22.mdx index 5461b1cf9ae..6e584b42e8f 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_22.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_8.mdx b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_8.mdx index c1055a103ee..4af24bcd8ac 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_8.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_9.mdx b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_9.mdx index 0effcb916b9..8aabd45134f 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_9.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_12.mdx b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_12.mdx index 877f4aa1ac4..730cf1b58a3 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_12.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_15.mdx b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_15.mdx index 7ea4e43f758..bd8baf6ebe6 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_15.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_debian_11.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_debian_11.mdx index 6f314f36fcb..a77f40f67bf 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_debian_11.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_8.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_8.mdx index 8fae45e62f8..fa49d8a2d9d 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_8.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_9.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_9.mdx index 19768aadade..3f862386753 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_9.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_8.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_8.mdx index 9495c0d64d9..379cbb5cac5 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_8.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_9.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_9.mdx index 54e347c15b3..dd7df120d49 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_9.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_12.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_12.mdx index 957bc8e9ac5..6b7dcd3244a 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_12.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_15.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_15.mdx index efeb5329b9f..06bd2863702 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_15.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_20.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_20.mdx index 1d0e69515f3..cf442140923 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_20.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_8.mdx b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_8.mdx index c1710a43dfe..28676075d0f 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_8.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_9.mdx b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_9.mdx index 569f1ddea69..23b66aa4213 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_9.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_12.mdx b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_12.mdx index 44a3da2be2d..e48b6387050 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_12.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_15.mdx b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_15.mdx index d2025cb2003..9d86884cbc7 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_15.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_debian_11.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_debian_11.mdx index ff4d3b9e9b9..36cc67cf9ea 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_debian_11.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_8.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_8.mdx index dbcca28e4d3..6dabbcfc7b1 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_8.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_9.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_9.mdx index 1819241b02c..be4dd0ce437 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_9.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_8.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_8.mdx index e14efa3fa22..f34976ee994 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_8.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_9.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_9.mdx index cc88eabf5c8..077b6a2b394 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_9.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_12.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_12.mdx index c436545933c..2b64805800b 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_12.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_15.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_15.mdx index 8bfd50be807..66a9a978ebd 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_15.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_20.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_20.mdx index 7f66a04065a..d215b987fde 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_20.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_22.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_22.mdx index 42572d799b9..3be624b0f8d 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_22.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_arm64/ocl_debian_12.mdx b/product_docs/docs/ocl_connector/16/installing/linux_arm64/ocl_debian_12.mdx index d1e561ecbe5..50bb9d5156e 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_arm64/ocl_debian_12.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_arm64/ocl_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_rhel_8.mdx b/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_rhel_8.mdx index b41b7754db4..30d787932ad 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_rhel_8.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_rhel_9.mdx b/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_rhel_9.mdx index 7afb67b684b..08a7283e1a6 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_rhel_9.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_sles_12.mdx b/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_sles_12.mdx index c8e2b1ab6eb..b15dc341bd0 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_sles_12.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_sles_15.mdx b/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_sles_15.mdx index c28a5dd4b45..63bccb6025a 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_sles_15.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_ppc64le/ocl_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_debian_11.mdx b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_debian_11.mdx index c3e1ff2f6f7..3692a0d6405 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_debian_11.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_debian_12.mdx b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_debian_12.mdx index 1ee9cf54f8b..220dc076cb1 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_debian_12.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_other_linux_8.mdx b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_other_linux_8.mdx index 89d012d7464..d8972bc0844 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_other_linux_8.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_other_linux_9.mdx b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_other_linux_9.mdx index 18d8c97e3e5..3b9b9d30fa3 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_other_linux_9.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_rhel_8.mdx b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_rhel_8.mdx index 692cd52d3c5..b1faa7ddda4 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_rhel_8.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_rhel_9.mdx b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_rhel_9.mdx index a8f1c9aa4d0..8243959e6bd 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_rhel_9.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_sles_12.mdx b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_sles_12.mdx index 00764c7c419..75e80203eec 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_sles_12.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_sles_15.mdx b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_sles_15.mdx index adf6f6ef0aa..81f1773c633 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_sles_15.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_ubuntu_20.mdx b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_ubuntu_20.mdx index cdae37356a1..5b5fcd207e1 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_ubuntu_20.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_ubuntu_22.mdx b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_ubuntu_22.mdx index 0c2205eccb6..0f2962cd3e5 100644 --- a/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_ubuntu_22.mdx +++ b/product_docs/docs/ocl_connector/16/installing/linux_x86_64/ocl_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_8.mdx b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_8.mdx index 2afc90d5a9a..f66ca590fbf 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_8.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_9.mdx b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_9.mdx index 62b1ec8a9d4..e58bfb03f25 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_9.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_12.mdx b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_12.mdx index ccb80ef335e..c7f1dcf9957 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_12.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_15.mdx b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_15.mdx index 8a23148bf0b..2a636bd5d73 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_15.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_debian_11.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_debian_11.mdx index 6f632486833..0072d1a8ea9 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_debian_11.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_8.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_8.mdx index dac05a6b5fe..34418410e55 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_8.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_9.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_9.mdx index 9118d4fb9a5..ed00881aa8a 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_9.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_8.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_8.mdx index 9f83eeaf7eb..2d9dafcc569 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_8.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_9.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_9.mdx index 6f1a3544541..950680ffd07 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_9.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_12.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_12.mdx index 4eea918c602..0cec4185dff 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_12.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_15.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_15.mdx index 1f45fb89a05..e56729b2b33 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_15.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_20.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_20.mdx index f33cd4279df..f99905f2402 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_20.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_22.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_22.mdx index 8a09c388761..e0b0179b656 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_22.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_arm64/odbc_debian_12.mdx b/product_docs/docs/odbc_connector/16/installing/linux_arm64/odbc_debian_12.mdx index 972c3478c25..daa13f9a040 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_arm64/odbc_debian_12.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_arm64/odbc_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_rhel_8.mdx b/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_rhel_8.mdx index c44f2701cff..0305a18de6e 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_rhel_8.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_rhel_9.mdx b/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_rhel_9.mdx index 6ab7fa344c3..5d14db2a69a 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_rhel_9.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_sles_12.mdx b/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_sles_12.mdx index 8d0d47e154f..1bf1c23fc1d 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_sles_12.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_sles_15.mdx b/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_sles_15.mdx index d95a8169c2f..8325373d97b 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_sles_15.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_ppc64le/odbc_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_debian_11.mdx b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_debian_11.mdx index 7590e2d21e7..d94435fb709 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_debian_11.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_debian_12.mdx b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_debian_12.mdx index 1a3892c7cdf..8f9bc9a5023 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_debian_12.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_other_linux_8.mdx b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_other_linux_8.mdx index d3857c9b0bd..4628cfaa1b4 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_other_linux_8.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_other_linux_9.mdx b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_other_linux_9.mdx index 00a196be278..31d5e8121bf 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_other_linux_9.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_rhel_8.mdx b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_rhel_8.mdx index 1928e55c573..3a3c6c6798b 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_rhel_8.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_rhel_9.mdx b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_rhel_9.mdx index edc170edc2a..2638f4ed0a4 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_rhel_9.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_sles_12.mdx b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_sles_12.mdx index 5cd8ef15f9c..8c456ab298c 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_sles_12.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_sles_15.mdx b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_sles_15.mdx index 4262c6130cd..49ac0ab9edf 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_sles_15.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_ubuntu_20.mdx b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_ubuntu_20.mdx index 556d755e809..f0e0ffb8ca0 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_ubuntu_20.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_ubuntu_22.mdx b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_ubuntu_22.mdx index e4622d391a5..5dc6c59b40e 100644 --- a/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_ubuntu_22.mdx +++ b/product_docs/docs/odbc_connector/16/installing/linux_x86_64/odbc_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_arm64/pem_agent_debian_12.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_arm64/pem_agent_debian_12.mdx index 76f2761edce..6d13c023365 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_arm64/pem_agent_debian_12.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_arm64/pem_agent_debian_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx index 0c0ee921be9..36fdcd5b45f 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx index c9b7635769a..ae248ddc954 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx index 2c220ca8ac2..ffb13f8fd3d 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx @@ -21,7 +21,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -32,6 +32,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx index b2dc06cfbe4..db724d44f6b 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx @@ -21,7 +21,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -32,6 +32,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx index 9675be35346..08adeaf2a21 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_12.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_12.mdx index dce5c2a20a8..3311d21c3ed 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_12.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_12.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_8.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_8.mdx index 476b9269589..17a63e9b5fb 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_8.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_8.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_9.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_9.mdx index a397db9024d..c42dd0e4273 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_9.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_9.mdx @@ -18,7 +18,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -29,6 +29,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx index 71d311accb8..6950a44ade3 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx index 72dc0095ea4..8ade2585ade 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx index 3dfe4adae6c..6b63c79c68f 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx @@ -21,7 +21,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -32,6 +32,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx index df37a56dbe1..ece43edebf0 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx @@ -21,7 +21,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -32,6 +32,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx index 7ede7dd184d..9d9a08f075c 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx index 06056d01bd6..b332234ce9a 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx @@ -17,7 +17,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -28,6 +28,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_arm64/pgbouncer_debian_12.mdx b/product_docs/docs/pgbouncer/1/installing/linux_arm64/pgbouncer_debian_12.mdx index 9f7c75c5826..f2b5f0d1e7e 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_arm64/pgbouncer_debian_12.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_arm64/pgbouncer_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_8.mdx b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_8.mdx index 03fb6aec235..0ff28419b30 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_8.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_9.mdx b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_9.mdx index bb9775ad020..0d39421bede 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_9.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_12.mdx b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_12.mdx index af2481c478c..abcceba5d5b 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_12.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_15.mdx b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_15.mdx index b084a63dd0d..b3f619e5da5 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_15.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_11.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_11.mdx index 9a01a873f7e..1be505517c8 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_11.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_12.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_12.mdx index 02b38c88edd..64211170f96 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_12.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_8.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_8.mdx index 17ec0f8d3d1..9a9b514973c 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_8.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_9.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_9.mdx index 0bd1be6a887..94b81629e37 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_9.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_8.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_8.mdx index a473593cdbf..a2e874c2b28 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_8.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_9.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_9.mdx index b3c99c7a466..b615ee685f3 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_9.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_12.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_12.mdx index b4fcec4af05..2380c40e4c8 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_12.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_15.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_15.mdx index c79b0e71b47..59574c9335d 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_15.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_20.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_20.mdx index bedfb5cee8e..a2b14f0bb93 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_20.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_22.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_22.mdx index f25593f97c8..0fd08b0bd8f 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_22.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_debian_11.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_debian_11.mdx index 41e62cff495..1bc196dc5be 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_debian_11.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_debian_11.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_8.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_8.mdx index 961d2af83d0..8b9a447e322 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_8.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_8.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_9.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_9.mdx index 2bf1110c937..1c18c03e9ec 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_9.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_9.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_8.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_8.mdx index bdd7f1a8afc..de600af4057 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_8.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_8.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_9.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_9.mdx index 95eec216f19..4c2b5a51c6e 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_9.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_9.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_20.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_20.mdx index 54546e7ff5c..e4c490c09e1 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_20.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_20.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_22.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_22.mdx index 94b171bb595..e1caa18c9ae 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_22.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_22.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/16/installing/linux_arm64/pge_debian_12.mdx b/product_docs/docs/pge/16/installing/linux_arm64/pge_debian_12.mdx index e93d36d9739..3c03601a90c 100644 --- a/product_docs/docs/pge/16/installing/linux_arm64/pge_debian_12.mdx +++ b/product_docs/docs/pge/16/installing/linux_arm64/pge_debian_12.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/16/installing/linux_x86_64/pge_debian_11.mdx b/product_docs/docs/pge/16/installing/linux_x86_64/pge_debian_11.mdx index 89fcd0759ed..2219fbb1d65 100644 --- a/product_docs/docs/pge/16/installing/linux_x86_64/pge_debian_11.mdx +++ b/product_docs/docs/pge/16/installing/linux_x86_64/pge_debian_11.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/16/installing/linux_x86_64/pge_debian_12.mdx b/product_docs/docs/pge/16/installing/linux_x86_64/pge_debian_12.mdx index 4a795250b94..629f691f58a 100644 --- a/product_docs/docs/pge/16/installing/linux_x86_64/pge_debian_12.mdx +++ b/product_docs/docs/pge/16/installing/linux_x86_64/pge_debian_12.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/16/installing/linux_x86_64/pge_other_linux_8.mdx b/product_docs/docs/pge/16/installing/linux_x86_64/pge_other_linux_8.mdx index 2a15150482b..378b109d0de 100644 --- a/product_docs/docs/pge/16/installing/linux_x86_64/pge_other_linux_8.mdx +++ b/product_docs/docs/pge/16/installing/linux_x86_64/pge_other_linux_8.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/16/installing/linux_x86_64/pge_other_linux_9.mdx b/product_docs/docs/pge/16/installing/linux_x86_64/pge_other_linux_9.mdx index a42e1a19e3c..dad4bd97389 100644 --- a/product_docs/docs/pge/16/installing/linux_x86_64/pge_other_linux_9.mdx +++ b/product_docs/docs/pge/16/installing/linux_x86_64/pge_other_linux_9.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/16/installing/linux_x86_64/pge_rhel_8.mdx b/product_docs/docs/pge/16/installing/linux_x86_64/pge_rhel_8.mdx index b72acdbacf7..98180e902ae 100644 --- a/product_docs/docs/pge/16/installing/linux_x86_64/pge_rhel_8.mdx +++ b/product_docs/docs/pge/16/installing/linux_x86_64/pge_rhel_8.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/16/installing/linux_x86_64/pge_rhel_9.mdx b/product_docs/docs/pge/16/installing/linux_x86_64/pge_rhel_9.mdx index 58bb9175ec5..9fb8d89af1b 100644 --- a/product_docs/docs/pge/16/installing/linux_x86_64/pge_rhel_9.mdx +++ b/product_docs/docs/pge/16/installing/linux_x86_64/pge_rhel_9.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/16/installing/linux_x86_64/pge_ubuntu_20.mdx b/product_docs/docs/pge/16/installing/linux_x86_64/pge_ubuntu_20.mdx index 3e5749b46fe..083d38bbf35 100644 --- a/product_docs/docs/pge/16/installing/linux_x86_64/pge_ubuntu_20.mdx +++ b/product_docs/docs/pge/16/installing/linux_x86_64/pge_ubuntu_20.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pge/16/installing/linux_x86_64/pge_ubuntu_22.mdx b/product_docs/docs/pge/16/installing/linux_x86_64/pge_ubuntu_22.mdx index a93b4c3ca45..5dd8c6ecb57 100644 --- a/product_docs/docs/pge/16/installing/linux_x86_64/pge_ubuntu_22.mdx +++ b/product_docs/docs/pge/16/installing/linux_x86_64/pge_ubuntu_22.mdx @@ -16,7 +16,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -27,6 +27,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_arm64/pgpool_debian_12.mdx b/product_docs/docs/pgpool/4/installing/linux_arm64/pgpool_debian_12.mdx index 5aea26704fe..1739179f996 100644 --- a/product_docs/docs/pgpool/4/installing/linux_arm64/pgpool_debian_12.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_arm64/pgpool_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_8.mdx b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_8.mdx index f7895e0a110..2c3b87e7fde 100644 --- a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_8.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_9.mdx b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_9.mdx index 3dccb0a1515..10ffb5f6999 100644 --- a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_9.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_12.mdx b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_12.mdx index fcf195ae82e..8384eb69290 100644 --- a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_12.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_15.mdx b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_15.mdx index 7099f029152..f0ab2fff227 100644 --- a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_15.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_11.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_11.mdx index f65cae5f1d3..d33e0ea9a67 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_11.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_12.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_12.mdx index 642ee857fda..a33a2170ea9 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_12.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_8.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_8.mdx index a3071150cd1..ae0de67f54f 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_8.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_9.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_9.mdx index db31647aff5..6e5d0409a92 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_9.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_8.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_8.mdx index db1358c3db4..d7d46844e4b 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_8.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_9.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_9.mdx index e65e1d35d13..74f62bd3f30 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_9.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_12.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_12.mdx index b73d47dae4a..0e3ce060b99 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_12.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_15.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_15.mdx index dd23ff0e6ae..11189d975cc 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_15.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_20.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_20.mdx index 6817fa5e045..9fc245cbd50 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_20.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_22.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_22.mdx index 372af97a817..4c92e0caca0 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_22.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_arm64/pgpoolext_debian_12.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_arm64/pgpoolext_debian_12.mdx index 391daa36433..263ca069532 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_arm64/pgpoolext_debian_12.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_arm64/pgpoolext_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx index bdca1f6eba6..4c390b08945 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_9.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_9.mdx index 2f798384599..aff6cc219ea 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_9.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx index f87d8f121ad..0dfc09048a4 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx index d2c7a6cc071..85aefa88581 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx index 4967e4d6099..840b40b6990 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_12.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_12.mdx index a3acd1e5980..40aa5c542ab 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_12.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx index 6255be0f831..6c1a6a86272 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_9.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_9.mdx index f11f919d87c..c4c94b1aa29 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_9.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx index 7cc9d4d4ded..f5742f9aedd 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_9.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_9.mdx index 3c555e2fdcd..94f68c73ab3 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_9.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx index 1f2d95c7843..c6c4f84c874 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx index 13d576fde74..0fe01e52ac1 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx index 0f7047c38f0..11973d9f89d 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_22.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_22.mdx index d1ac1cfd406..29c0ee2f219 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_22.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_arm64/postgis_debian_12.mdx b/product_docs/docs/postgis/3/installing/linux_arm64/postgis_debian_12.mdx index 16c2f65f43a..a8a3ff62717 100644 --- a/product_docs/docs/postgis/3/installing/linux_arm64/postgis_debian_12.mdx +++ b/product_docs/docs/postgis/3/installing/linux_arm64/postgis_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_rhel_8.mdx b/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_rhel_8.mdx index 68abfb7dfcc..f4d8d2a7b53 100644 --- a/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_rhel_8.mdx +++ b/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_rhel_9.mdx b/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_rhel_9.mdx index b4fec1e465f..fa9ce889abc 100644 --- a/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_rhel_9.mdx +++ b/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_sles_12.mdx b/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_sles_12.mdx index 5838140353f..04f597c30c3 100644 --- a/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_sles_12.mdx +++ b/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_sles_15.mdx b/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_sles_15.mdx index 2640b3428fd..05a515c196c 100644 --- a/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_sles_15.mdx +++ b/product_docs/docs/postgis/3/installing/linux_ppc64le/postgis_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_debian_11.mdx b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_debian_11.mdx index 40e8c1cbb02..fc1c04d0781 100644 --- a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_debian_11.mdx +++ b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_debian_12.mdx b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_debian_12.mdx index 64a20eab624..e15095f8b60 100644 --- a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_debian_12.mdx +++ b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_debian_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_other_linux_8.mdx b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_other_linux_8.mdx index 370cd4a54e3..c11a43d6f6a 100644 --- a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_other_linux_8.mdx +++ b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_other_linux_9.mdx b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_other_linux_9.mdx index 973eeeda5a1..79641e3e1d5 100644 --- a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_other_linux_9.mdx +++ b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_rhel_8.mdx b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_rhel_8.mdx index 6778bf43495..b2a747f3e80 100644 --- a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_rhel_8.mdx +++ b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_rhel_9.mdx b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_rhel_9.mdx index fbf4e87d669..edb377812bb 100644 --- a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_rhel_9.mdx +++ b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `dnf repolist | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_sles_12.mdx b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_sles_12.mdx index 2ce94a7c6df..bcf8c98f504 100644 --- a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_sles_12.mdx +++ b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_sles_15.mdx b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_sles_15.mdx index 4afcb64515c..2b98bcd698f 100644 --- a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_sles_15.mdx +++ b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `zypper lr -E | grep enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_ubuntu_20.mdx b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_ubuntu_20.mdx index dda004356d3..f0a07faa4ff 100644 --- a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_ubuntu_20.mdx +++ b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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. diff --git a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_ubuntu_22.mdx b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_ubuntu_22.mdx index e53ba8ce42e..07a5dc1efe0 100644 --- a/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_ubuntu_22.mdx +++ b/product_docs/docs/postgis/3/installing/linux_x86_64/postgis_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: 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: + To determine if your repository exists, enter: `apt-cache search enterprisedb` @@ -34,6 +34,7 @@ Before you begin the installation process: 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.