From dd6c243e9428648063a45e4276213c51bf3f2c95 Mon Sep 17 00:00:00 2001 From: Chris Estes <106166814+ccestes@users.noreply.github.com> Date: Mon, 18 Jul 2022 17:34:56 -0400 Subject: [PATCH 01/30] added preliminary content --- .../03_connecting_from_pgadmin.mdx | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx diff --git a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx new file mode 100644 index 00000000000..a6df0f28eda --- /dev/null +++ b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx @@ -0,0 +1,61 @@ +--- +title: Connecting from pgAdmin +--- + +In the pgAdmin client, you can add your BigAnimal cluster. + +## Prerequisites + +- Create a cluster in BigAnimal. For instructions, see [Creating a cluster](https://www.enterprisedb.com/docs/biganimal/latest/getting_started/creating_a_cluster/). + +- Install the pgAdmin tool. To install pgAdmin, see the [Download page](https://www.pgadmin.org/download/) on the pgAdmin site. + +!!!Note + When pgAdmin opens for the first time, it asks you to set a master password. The master password secures your connections and credentials. +!!! + +## Connecting to your cluster + +1. Open pgAdmin. + +1. In the **Quick Links** panel, select **Add New Server**. Alternatively, right-click on **Servers** and select **Create > Server**. A **Create-Server** dialog box opens. + +1. In the **General** tab, enter a server name in the **Name** field. + +1. Open BigAnimal: + + 1. Select the **Clusters** tab. + + 1. Select the cluster you want. + + 1. Select the **Overview** tab. + +1. Enter the server address: + + 1. In BigAnimal, under **QUICK CONNECT** copy the server address. If the command appears as in the example, then copy `p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io`: + + ```shell + psql -W "postgres://edb_admin@p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io:5432/edb_admin?sslmode + ``` + + 1. In pgAdmin, select the **Connection** tab. + + 1. In the **Host name/address** field, paste the server address. + +1. Enter the port: + + 1. In BigAnimal, under **QUICK CONNECT** copy the port. The port appears after the server address. In the example, the port is `5432`. + + 1. In pgAdmin, paste the port name in the **Port** field. + +1. Enter the maintenance database: + + 1. In BigAnimal, under **QUICK CONNECT** copy the maintenance database. The maintenance databse appears before the server address. In the example, the maintenance database is `edb_admin`. + + 1. In pgAdmin, paste the maintenance database in the **Maintenance database** field. + +1. In the **Connection** tab, enter the cluster's administrator credentials in the **Username** and **Password** fields. These are the same credentials you set when configuring the cluster. + +1. In the **SSL** tab, set the **SSL mode** field to **Require**. + +1. Select **Save** and pgAdmin attempts to connect to the BigAnimal cluster. From 9860b1c87aca290ffde93220e5eb2d33c6304a9f Mon Sep 17 00:00:00 2001 From: Chris Estes <106166814+ccestes@users.noreply.github.com> Date: Tue, 19 Jul 2022 11:10:32 -0400 Subject: [PATCH 02/30] Second pass --- .../03_connecting_from_pgadmin.mdx | 12 ++++++------ .../02_connecting_your_cluster/index.mdx | 3 ++- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx index a6df0f28eda..c790da56cc6 100644 --- a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx +++ b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx @@ -2,13 +2,13 @@ title: Connecting from pgAdmin --- -In the pgAdmin client, you can add your BigAnimal cluster. +In the pgAdmin client, you can connect to your BigAnimal cluster. ## Prerequisites -- Create a cluster in BigAnimal. For instructions, see [Creating a cluster](https://www.enterprisedb.com/docs/biganimal/latest/getting_started/creating_a_cluster/). +- Sign in to [BigAnimal](portal.biganimal.com) and create a cluster. For instructions, see [Creating a cluster](https://www.enterprisedb.com/docs/biganimal/latest/getting_started/creating_a_cluster/). -- Install the pgAdmin tool. To install pgAdmin, see the [Download page](https://www.pgadmin.org/download/) on the pgAdmin site. +- Install the pgAdmin tool. To install pgAdmin, see the [Download](https://www.pgadmin.org/download/) page on the pgAdmin site. !!!Note When pgAdmin opens for the first time, it asks you to set a master password. The master password secures your connections and credentials. @@ -24,7 +24,7 @@ In the pgAdmin client, you can add your BigAnimal cluster. 1. Open BigAnimal: - 1. Select the **Clusters** tab. + 1. Go to the [**Clusters**](https://portal.biganimal.com/clusters) page. 1. Select the cluster you want. @@ -32,10 +32,10 @@ In the pgAdmin client, you can add your BigAnimal cluster. 1. Enter the server address: - 1. In BigAnimal, under **QUICK CONNECT** copy the server address. If the command appears as in the example, then copy `p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io`: + 1. In BigAnimal, under **QUICK CONNECT** copy the server address. The server address is in the **QUICK COMMAND** connection string. For example, the server address is `p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io` in this command: ```shell - psql -W "postgres://edb_admin@p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io:5432/edb_admin?sslmode + $ psql -W "postgres://edb_admin@p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io:5432/edb_admin?sslmode=require" ``` 1. In pgAdmin, select the **Connection** tab. diff --git a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx index c776b0cbb6a..7ae63573db6 100644 --- a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx +++ b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx @@ -89,4 +89,5 @@ The Private Networking option offers a higher level of isolation and security by For examples to guide you through the different methods of connecting to your cluster, see - [Connecting from Azure](01_connecting_from_azure) -- [Connecting from AWS](02_connecting_from_aws) \ No newline at end of file + - [Connecting from AWS](02_connecting_from_aws) + - [Connecting from pgAdmin](03_connecting_from_pgadmin) \ No newline at end of file From 250d3436fbd74b002ea7072c71675579f595f1ae Mon Sep 17 00:00:00 2001 From: Chris Estes <106166814+ccestes@users.noreply.github.com> Date: Tue, 19 Jul 2022 15:28:21 -0400 Subject: [PATCH 03/30] feedback changes --- .../03_connecting_from_pgadmin.mdx | 44 ++++++++----------- 1 file changed, 19 insertions(+), 25 deletions(-) diff --git a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx index c790da56cc6..dd0c1979a3d 100644 --- a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx +++ b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx @@ -2,11 +2,11 @@ title: Connecting from pgAdmin --- -In the pgAdmin client, you can connect to your BigAnimal cluster. +In the pgAdmin client, you can connect to your BigAnimal cluster. The pgAdmin tool allows you to inspect, monitor, manage, and query your cluster's databases from a desktop or web UI. ## Prerequisites -- Sign in to [BigAnimal](portal.biganimal.com) and create a cluster. For instructions, see [Creating a cluster](https://www.enterprisedb.com/docs/biganimal/latest/getting_started/creating_a_cluster/). +- Sign in to [BigAnimal](portal.biganimal.com) and create a cluster. For instructions, see [Creating a cluster](../../getting_started/creating_a_cluster/). - Install the pgAdmin tool. To install pgAdmin, see the [Download](https://www.pgadmin.org/download/) page on the pgAdmin site. @@ -16,46 +16,40 @@ In the pgAdmin client, you can connect to your BigAnimal cluster. ## Connecting to your cluster -1. Open pgAdmin. - -1. In the **Quick Links** panel, select **Add New Server**. Alternatively, right-click on **Servers** and select **Create > Server**. A **Create-Server** dialog box opens. - -1. In the **General** tab, enter a server name in the **Name** field. +To connect to your BigAnimal cluster, you need to enter its values into pgAdmin. Find the values in BigAnimal: -1. Open BigAnimal: +1. Open BigAnimal. - 1. Go to the [**Clusters**](https://portal.biganimal.com/clusters) page. +1. Go to the [Clusters](https://portal.biganimal.com/clusters) page. - 1. Select the cluster you want. +1. Select the cluster you want to connect to. - 1. Select the **Overview** tab. +1. Select the **Overview** tab. -1. Enter the server address: - - 1. In BigAnimal, under **QUICK CONNECT** copy the server address. The server address is in the **QUICK COMMAND** connection string. For example, the server address is `p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io` in this command: +1. Under **Quick Connect**, a command appears like in the example: ```shell $ psql -W "postgres://edb_admin@p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io:5432/edb_admin?sslmode=require" ``` - 1. In pgAdmin, select the **Connection** tab. +The command contains the values to connect your cluster. Enter the values: + +1. Open pgAdmin. - 1. In the **Host name/address** field, paste the server address. +1. In the **Quick Links** panel, select **Add New Server**. -1. Enter the port: +1. In the Create-Server dialog box, under the **General** tab, enter a server name in the **Name** field. - 1. In BigAnimal, under **QUICK CONNECT** copy the port. The port appears after the server address. In the example, the port is `5432`. +1. Select the **Connection** tab. - 1. In pgAdmin, paste the port name in the **Port** field. +1. In the **Host name/address** field, enter the server address. Find the server address in the BigAnimal **Quick Connect** connection string. In the example, the server address is `p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io`. -1. Enter the maintenance database: +1. In the **Port** field, enter the port name. Find the port name after the server address in the BigAnimal **Quick Connect** connection string. In the example, the port name is `5432`. - 1. In BigAnimal, under **QUICK CONNECT** copy the maintenance database. The maintenance databse appears before the server address. In the example, the maintenance database is `edb_admin`. - - 1. In pgAdmin, paste the maintenance database in the **Maintenance database** field. +1. In the **Maintenance database** field, enter the maintenance database name. Find the maintenance database name before the server address in the BigAnimal **Quick Connect** connection string. In the example, the maintenance database name is `edb_admin` -1. In the **Connection** tab, enter the cluster's administrator credentials in the **Username** and **Password** fields. These are the same credentials you set when configuring the cluster. +1. In the **Username** and **Password** fields, enter the cluster's administrator credentials. These are the same credentials you set when configuring the cluster. 1. In the **SSL** tab, set the **SSL mode** field to **Require**. -1. Select **Save** and pgAdmin attempts to connect to the BigAnimal cluster. +1. Select **Save**. pgAdmin attempts to connect to the BigAnimal cluster. From 07dc89bdf205459daf61ab0ea3366bf943a13471 Mon Sep 17 00:00:00 2001 From: Chris Estes <106166814+ccestes@users.noreply.github.com> Date: Tue, 19 Jul 2022 15:46:38 -0400 Subject: [PATCH 04/30] another feedback change --- .../02_connecting_your_cluster/03_connecting_from_pgadmin.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx index dd0c1979a3d..a11ce24439f 100644 --- a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx +++ b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx @@ -16,7 +16,7 @@ In the pgAdmin client, you can connect to your BigAnimal cluster. The pgAdmin to ## Connecting to your cluster -To connect to your BigAnimal cluster, you need to enter its values into pgAdmin. Find the values in BigAnimal: +To connect to your BigAnimal cluster, you need to enter its values into pgAdmin. Find the values in BigAnimal to copy and then paste into the pgAdmin fields: 1. Open BigAnimal. From 060b233fdc1b35af1ec0edf240b1ae09415f3977 Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Mon, 25 Jul 2022 14:31:14 +0530 Subject: [PATCH 05/30] EPAS - Redhat install topics --- install_template/deploy.mjs | 10 ++ .../_centos-rhel-installcommand.njk | 2 +- .../almalinux-8-or-rocky-linux-8.njk | 7 - .../edb-postgres-advanced-server/base.njk | 1 + .../ibm_power_ppc64le/epas_rhel8_ppcle.mdx | 119 ++++++++-------- .../ibm_power_ppc64le/epas_sles12_ppcle.mdx | 1 + .../ibm_power_ppc64le/epas_sles15_ppcle.mdx | 1 + .../ibm_power_ppc64le/index.mdx | 1 - .../index.mdx | 3 +- .../x86_amd64/epas_centos7_x86.mdx | 110 +++++++-------- .../x86_amd64/epas_deb10_x86.mdx | 1 + .../x86_amd64/epas_other_linux8_x86.mdx | 123 ++++++++--------- .../x86_amd64/epas_rhel7_x86.mdx | 115 ++++++++-------- .../x86_amd64/epas_rhel8_x86.mdx | 127 ++++++++---------- .../x86_amd64/epas_sles12_x86.mdx | 1 + .../x86_amd64/epas_sles15_x86.mdx | 1 + .../x86_amd64/epas_ubuntu18_x86.mdx | 1 + .../x86_amd64/epas_ubuntu20_x86.mdx | 1 + 18 files changed, 302 insertions(+), 323 deletions(-) diff --git a/install_template/deploy.mjs b/install_template/deploy.mjs index 7df16d5f103..2c74cebaa8b 100644 --- a/install_template/deploy.mjs +++ b/install_template/deploy.mjs @@ -152,6 +152,16 @@ const moveDoc = async (product, platform, version) => { (ctx) => `edb_plus/40/03_installing_edb_plus/install_on_linux/${fmtArchPath(ctx)}/edbplus_ubuntu18_${fmtArchFilename(ctx)}.mdx`), when({product: {name: "EDB*Plus", version: 40}, platform: {name: "Ubuntu 20.04"}}, (ctx) => `edb_plus/40/03_installing_edb_plus/install_on_linux/${fmtArchPath(ctx)}/edbplus_ubuntu20_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB Postgres Advanced Server"}, platform: {name: "CentOS 7"}}, + (ctx) => `epas/14/epas_inst_linux/installing_epas_using_edb_repository/${fmtArchPath(ctx)}/epas_centos7_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB Postgres Advanced Server"}, platform: {name: "AlmaLinux 8 or Rocky Linux 8"}}, + (ctx) => `epas/14/epas_inst_linux/installing_epas_using_edb_repository//${fmtArchPath(ctx)}/epas_other_linux8_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB Postgres Advanced Server"}, platform: {name: "RHEL 7 or OL 7"}}, + (ctx) => `epas/14/epas_inst_linux/installing_epas_using_edb_repository//${fmtArchPath(ctx)}/epas_rhel7_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB Postgres Advanced Server"}, platform: {name: "RHEL 8 or OL 8"}}, + (ctx) => `epas/14/epas_inst_linux/installing_epas_using_edb_repository//${fmtArchPath(ctx)}/epas_rhel8_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB Postgres Advanced Server"}, platform: {name: "RHEL 8"}}, + (ctx) => `epas/14/epas_inst_linux/installing_epas_using_edb_repository//${fmtArchPath(ctx)}/epas_rhel8_${fmtArchFilename(ctx)}.mdx`), when({product: {name: "EDB Postgres Advanced Server"}, platform: {name: "SLES 12"}}, (ctx) => `epas/14/epas_inst_linux/installing_epas_using_edb_repository/${fmtArchPath(ctx)}/epas_sles12_${fmtArchFilename(ctx)}.mdx`), when({product: {name: "EDB Postgres Advanced Server"}, platform: {name: "SLES 15"}}, diff --git a/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk b/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk index f68d90274aa..47376f89cba 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk @@ -1 +1 @@ -Installing the server package creates an operating system user named `enterprisedb`. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as{{ product.version }}`. \ No newline at end of file +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as{{ product.version }}`. \ No newline at end of file diff --git a/install_template/templates/products/edb-postgres-advanced-server/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/edb-postgres-advanced-server/almalinux-8-or-rocky-linux-8.njk index 634fb34f8f2..61af3ad29ab 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/almalinux-8-or-rocky-linux-8.njk @@ -1,12 +1,5 @@ {% extends "products/edb-postgres-advanced-server/base.njk" %} {% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} -{% block prerequisites %} -{{ super() }} -```shell -# Disable the built-in PostgreSQL module: -dnf -qy module disable postgresql -``` -{% endblock prerequisites %} {% block installCommand %} {{ super() }} {% include "products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk" %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/base.njk b/install_template/templates/products/edb-postgres-advanced-server/base.njk index 58a4a75c84e..b48aed5ffa1 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/base.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/base.njk @@ -23,6 +23,7 @@ PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as{{ product.version }}/bin/edb-as-{{ # Start the database cluster systemctl start edb-as-{{ product.version }}{% endblock debian_ubuntu %} + # To work in your cluster, login as the enterprisedb user su - enterprisedb diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_rhel8_ppcle.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_rhel8_ppcle.mdx index 2118d452898..5560b64cc0e 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_rhel8_ppcle.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_rhel8_ppcle.mdx @@ -1,101 +1,98 @@ --- -title: "Installing EDB Postgres Advanced Server on RHEL 8 ppc64le" -navTitle: "RHEL 8" +navTitle: RHEL 8 +title: Installing EDB Postgres Advanced Server on RHEL 8 ppc64le --- -There are two steps to completing an installation: - -- Setting up the repository -- Installing the package - -For each step, you must be logged in as superuser. - -To log in as a superuser: +Before you begin the installation process, log in as superuser. ```shell +# To log in as a superuser: sudo su - ``` -## Setting up the repository - -1. To register with EDB to receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). - -1. Set up the EDB repository: - - ```shell - dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` +## Set up the repository - This creates the /etc/yum.repos.d/edb.repo configuration file. +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). -1. Replace `'USERNAME:PASSWORD'` below with your username and password available from your - [EDB account](https://www.enterprisedb.com/user) in the edb.repo file: - - ```shell - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm -1. Install EPEL repository and refresh the cache: +# Replace '' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ```shell - dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm - dnf makecache - ``` +# Install the EPEL repository: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -1. Enable the codeready-builder-for-rhel-8-\*-rpms repository since EPEL packages may depend on packages from it: +# Refresh the cache: +dnf makecache - ```shell - ARCH=$( /bin/arch ) - subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - ``` +# Enable additional repositories to resolve dependencies: +ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" -1. Disable the built-in PostgreSQL module: - - ```shell - dnf -qy module disable postgresql - ``` +# Disable the built-in PostgreSQL module: +dnf -qy module disable postgresql +``` -## Installing the package +## Install the package ```shell -dnf -y install edb-as14-server +dnf -y install edb-as-server ``` -Installing the server package creates an operating system user named `enterprisedb`. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. + +Where `` is the version of the EDB Postgres Advanced server you are installing. To install an individual component: ```shell -dnf install package_name +dnf install ``` -Where `package_name` can be any of the available package from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). +Where `package_name` can be any of the available packages from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). + +Installing the server package creates an operating system user named `enterprisedb`. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. See [Managing an EDB Postgres Advanced Server installation](/epas/latest/epas_inst_linux/managing_an_advanced_server_installation), for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface instead of the command line option given below. + +This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. ```shell -# Initialize the database cluster: +# Initialize the database cluster PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - -# Start the database cluster: + +# Start the database cluster systemctl start edb-as-14 -# To work in your cluster, login as `enterprisedb` user: + +# To work in your cluster, login as the enterprisedb user su - enterprisedb -# Connect to the database server using psql command line client: + +# Connect to the database server using the psql command line client psql edb -# Assign a password to the database superuser `enterprisedb`: + +# Assign a password to the database superuser the enterprisedb ALTER ROLE enterprisedb IDENTIFIED BY password; -# Creating a database (named hr): + +# Create a database (named hr) CREATE DATABASE hr; -# Connect to the new database and create a table (named dept): + +# Connect to the new database and create a table (named dept) \c hr -CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk PRIMARY KEY, -dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc varchar(13)); -# Add data to the table: +CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk +PRIMARY KEY, dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc +varchar(13)); + +# Add data to the table INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); INSERT into dept VALUES (20,'RESEARCH','DALLAS'); -# You can use simple SQL commands to query the database and retrieve -# information about the data you have added to the table. + +# You can use simple SQL commands to query the database and retrieve +# information about the data you have added to the table SELECT * FROM dept; +__OUTPUT__ +deptno | dname | loc +--------+------------+---------- +10 | ACCOUNTING | NEW YORK +20 | RESEARCH | DALLAS +(2 rows) ``` - diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_sles12_ppcle.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_sles12_ppcle.mdx index b2a40051528..c00364985c7 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_sles12_ppcle.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_sles12_ppcle.mdx @@ -62,6 +62,7 @@ PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb # Start the database cluster systemctl start edb-as-14 + # To work in your cluster, login as the enterprisedb user su - enterprisedb diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_sles15_ppcle.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_sles15_ppcle.mdx index 08ce72ff352..642a60b30d3 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_sles15_ppcle.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_sles15_ppcle.mdx @@ -61,6 +61,7 @@ PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb # Start the database cluster systemctl start edb-as-14 + # To work in your cluster, login as the enterprisedb user su - enterprisedb diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/index.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/index.mdx index ab88dbb3963..2fdd4b1ced3 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/index.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/index.mdx @@ -6,7 +6,6 @@ redirects: navigation: - epas_rhel8_ppcle -- epas_rhel7_ppcle - epas_sles15_ppcle - epas_sles12_ppcle --- diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/index.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/index.mdx index 6bd2ac9c25e..a0eed314810 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/index.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/index.mdx @@ -16,7 +16,6 @@ For platform-specific install instructions, including accessing the repo, see: - Linux x86-64 (amd64): - [RHEL 8/OL 8](x86_amd64/epas_rhel8_x86) - - [Rocky Linux 8/AlmaLinux 8/](x86_amd64/epas_other_linux8_x86) - [RHEL 7/OL 7](x86_amd64/epas_rhel7_x86) - [CentOS 7](x86_amd64/epas_centos7_x86) @@ -26,8 +25,8 @@ For platform-specific install instructions, including accessing the repo, see: - [Ubuntu 18.04](x86_amd64/epas_ubuntu18_x86) - [Debian 10](x86_amd64/epas_deb10_x86) + - Linux on IBM Power (ppc64le): - [RHEL 8](ibm_power_ppc64le/epas_rhel8_ppcle) - - [SLES 15](ibm_power_ppc64le/epas_sles15_ppcle) - [SLES 12](ibm_power_ppc64le/epas_sles12_ppcle) \ No newline at end of file diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_centos7_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_centos7_x86.mdx index 573d9490bc0..8be3bd6aec5 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_centos7_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_centos7_x86.mdx @@ -1,89 +1,89 @@ --- -title: "Installing EDB Postgres Advanced Server on CentOS 7 x86" -navTitle: "CentOS 7" -redirects: -- /epas/latest/epas_inst_linux/03_using_a_package_manager_to_install_advanced_server/#installing-on-centos-7-or-rocky-linuxalmalinux-8 +navTitle: CentOS 7 +title: Installing EDB Postgres Advanced Server on CentOS 7 x86_64 --- -You can use an RPM package to install EDB Postgres Advanced Server on a CentOS 7 host. +Before you begin the installation process, log in as superuser. -## Setting up the repository - -- To install the repository configuration file, assume superuser privileges and invoke the following commands: - - ```text - yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` - -- Replace the `USERNAME:PASSWORD` variable in the following command with the username and password of a registered EDB user: - - ```text - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` - -- Before installing EDB Postgres Advanced Server, you must install the `epel-release` package: +```shell +# To log in as a superuser: +sudo su - +``` - ```text - # yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +## Set up the repository - # yum makecache - ``` +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). -The repository configuration file is named `edb.repo`. The file resides in `/etc/yum.repos.d.` +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm -You must download and install the repository key. Provide the registered `username` and `password` with the `curl` command to download the repository key using the following command: +# Replace '' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo -```text -curl -o /etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY https://:@yum.enterprisedb.com/ENTERPRISEDB-GPG-KEY +# Install the EPEL repository: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -Use the following command to install the key: +## Install the package -```text -rpm --import /etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY +```shell +yum -y install edb-as-server ``` -## Install the package +Where `` is the version of the EDB Postgres Advanced server you are installing. -You can use `yum install` command to install EDB Postgres Advanced Server. For example, to install the server and its core components, use the command: +To install an individual component: -```text -yum -y install edb-as14-server +```shell +yum install ``` -When you install an RPM package that is signed by a source that is not recognized by your system, `yum` may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter a `y`, and press `Return` to continue. +Where `package_name` can be any of the available packages from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). -!!! Note - During the installation, `yum` may encounter a dependency that it cannot resolve. If it does, it provides a list of the required dependencies that you must manually resolve. +Installing the server package creates an operating system user named `enterprisedb`. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. See [Managing an EDB Postgres Advanced Server installation](/epas/latest/epas_inst_linux/managing_an_advanced_server_installation), for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface instead of the command line option given below. + +This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. ```shell -# Initialize the database cluster: +# Initialize the database cluster PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - -# Start the database cluster: + +# Start the database cluster systemctl start edb-as-14 -# To work in your cluster, login as `enterprisedb` user: + +# To work in your cluster, login as the enterprisedb user su - enterprisedb -# Connect to the database server using psql command line client: + +# Connect to the database server using the psql command line client psql edb -# Assign a password to the database superuser `enterprisedb`: + +# Assign a password to the database superuser the enterprisedb ALTER ROLE enterprisedb IDENTIFIED BY password; -# Creating a database (named hr): + +# Create a database (named hr) CREATE DATABASE hr; -# Connect to the new database and create a table (named dept): + +# Connect to the new database and create a table (named dept) \c hr -CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk PRIMARY KEY, -dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc varchar(13)); -# Add data to the table: +CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk +PRIMARY KEY, dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc +varchar(13)); + +# Add data to the table INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); INSERT into dept VALUES (20,'RESEARCH','DALLAS'); -# You can use simple SQL commands to query the database and retrieve -# information about the data you have added to the table. + +# You can use simple SQL commands to query the database and retrieve +# information about the data you have added to the table SELECT * FROM dept; +__OUTPUT__ +deptno | dname | loc +--------+------------+---------- +10 | ACCOUNTING | NEW YORK +20 | RESEARCH | DALLAS +(2 rows) ``` - - - diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_deb10_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_deb10_x86.mdx index 26fd00824e5..d519f151363 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_deb10_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_deb10_x86.mdx @@ -54,6 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa 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 + # To work in your cluster, login as the enterprisedb user su - enterprisedb diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_other_linux8_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_other_linux8_x86.mdx index 4b8c5577a26..d2d81d903c8 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_other_linux8_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_other_linux8_x86.mdx @@ -1,104 +1,95 @@ --- -title: "Installing EDB Postgres Advanced Server on Rocky Linux 8/AlmaLinux 8 x86" -navTitle: "Rocky Linux 8/AlmaLinux 8" +navTitle: AlmaLinux 8 or Rocky Linux 8 +title: Installing EDB Postgres Advanced Server on AlmaLinux 8 or Rocky Linux 8 x86_64 --- -You can use an RPM package to install EDB Postgres Advanced Server on a Rocky Linux/AlmaLinux 8 host. +Before you begin the installation process, log in as superuser. -## Setting up the repository - -- To install the repository configuration file, assume superuser privileges and invoke the following commands: - - ```text - dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` - -- Replace the `USERNAME:PASSWORD` variable in the following command with the username and password of a registered EDB user: - - ```text - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` - -- Before installing EDB Postgres Advanced Server, you must install the `epel-release` package: - - ```text - # dnf -y install epel-release - - # dnf makecache - ``` +```shell +# To log in as a superuser: +sudo su - +``` -- Enable the PowerTools repository to satisfy package dependencies: +## Set up the repository - ```text - dnf config-manager --set-enabled PowerTools - ``` +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). -- Disable the built-in PostgreSQL module: +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ```text - dnf -qy module disable postgresql - ``` +# Replace '' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo -The repository configuration file is named `edb.repo`. The file resides in `/etc/yum.repos.d.` +# Install the EPEL repository: +dnf -y install epel-release -You must download and install the repository key. Provide the registered `username` and `password` with the `curl` command to download the repository key using the following command: +# Enable additional repositories to resolve dependencies: +dnf config-manager --set-enabled PowerTools -```text -curl -o /etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY https://:@yum.enterprisedb.com/ENTERPRISEDB-GPG-KEY +# Disable the built-in PostgreSQL module: +dnf -qy module disable postgresql ``` -Use the following command to install the key: +## Install the package -```text -rpm --import /etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY +```shell +dnf -y install edb-as-server ``` -## Install the package - -You can use `dnf install` command to install EDB Postgres Advanced Server. For example, to install the server and its core components, use the command: +Where `` is the version of the EDB Postgres Advanced server you are installing. -```text -dnf -y install edb-as14-server -``` To install an individual component: ```shell -dnf install package_name +dnf install ``` -Where `package_name` can be any of the available package from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). +Where `package_name` can be any of the available packages from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). -When you install an RPM package that is signed by a source that is not recognized by your system, `yum` may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter a `y`, and press `Return` to continue. - -!!! Note - During the installation, `yum` may encounter a dependency that it cannot resolve. If it does, it provides a list of the required dependencies that you must manually resolve. +Installing the server package creates an operating system user named `enterprisedb`. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. See [Managing an EDB Postgres Advanced Server installation](/epas/latest/epas_inst_linux/managing_an_advanced_server_installation), for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface instead of the command line option given below. + +This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. ```shell -# Initialize the database cluster: +# Initialize the database cluster PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - -# Start the database cluster: + +# Start the database cluster systemctl start edb-as-14 -# To work in your cluster, login as `enterprisedb` user: + +# To work in your cluster, login as the enterprisedb user su - enterprisedb -# Connect to the database server using psql command line client: + +# Connect to the database server using the psql command line client psql edb -# Assign a password to the database superuser `enterprisedb`: + +# Assign a password to the database superuser the enterprisedb ALTER ROLE enterprisedb IDENTIFIED BY password; -# Creating a database (named hr): + +# Create a database (named hr) CREATE DATABASE hr; -# Connect to the new database and create a table (named dept): + +# Connect to the new database and create a table (named dept) \c hr -CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk PRIMARY KEY, -dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc varchar(13)); -# Add data to the table: +CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk +PRIMARY KEY, dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc +varchar(13)); + +# Add data to the table INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); INSERT into dept VALUES (20,'RESEARCH','DALLAS'); -# You can use simple SQL commands to query the database and retrieve -# information about the data you have added to the table. + +# You can use simple SQL commands to query the database and retrieve +# information about the data you have added to the table SELECT * FROM dept; +__OUTPUT__ +deptno | dname | loc +--------+------------+---------- +10 | ACCOUNTING | NEW YORK +20 | RESEARCH | DALLAS +(2 rows) ``` - diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel7_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel7_x86.mdx index 63094c78bb4..a2ed0120cff 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel7_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel7_x86.mdx @@ -1,97 +1,92 @@ --- -title: "Installing EDB Postgres Advanced Server on RHEL 7/OL 7 x86" -navTitle: "RHEL 7/OL 7" +navTitle: RHEL 7 or OL 7 +title: Installing EDB Postgres Advanced Server on RHEL 7 or OL 7 x86_64 --- -You can use native packages to install EDB Postgres Advanced Server on a RHEL 7 or OL 7 host. +Before you begin the installation process, log in as superuser. -## Setting up the repository - -- To install the repository configuration file, assume superuser privileges and invoke the following commands: - - ```text - yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` - -- Replace the `USERNAME:PASSWORD` variable in the following command with the username and password of a registered EDB user: - - ```text - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` - -- Before installing EDB Postgres Advanced Server, you must install the `epel-release` package: - - ```text - # yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +```shell +# To log in as a superuser: +sudo su - +``` - # yum makecache - ``` +## Set up the repository -- Enable the `optional`, `extras`, and `HA` repositories to satisfy package dependencies: +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). - ```text - subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - ``` +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm -The repository configuration file is named `edb.repo`. The file resides in `/etc/yum.repos.d.` +# Replace '' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo -You must download and install the repository key. Provide the registered `username` and `password` with the `curl` command to download the repository key using the following command: +# Install the EPEL repository: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -```text -curl -o /etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY https://:@yum.enterprisedb.com/ENTERPRISEDB-GPG-KEY +# Enable additional repositories to resolve dependencies: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` -Use the following command to install the key: +## Install the package -```text -rpm --import /etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY +```shell +yum -y install edb-as-server ``` -## Install the package - -You can use `yum install` command to install EDB Postgres Advanced Server. For example, to install the server and its core components, use the command: +Where `` is the version of the EDB Postgres Advanced server you are installing. -```text -yum -y install edb-as14-server -``` To install an individual component: ```shell -yum install package_name +yum install ``` -Where `package_name` can be any of the available package from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). - -When you install native package that is signed by a source that is not recognized by your system, `yum` may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter a `y`, and press `Return` to continue. +Where `package_name` can be any of the available packages from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). -!!! Note - During the installation, `yum` may encounter a dependency that it cannot resolve. If it does, it provides a list of the required dependencies that you must manually resolve. +Installing the server package creates an operating system user named `enterprisedb`. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. See [Managing an EDB Postgres Advanced Server installation](/epas/latest/epas_inst_linux/managing_an_advanced_server_installation), for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface instead of the command line option given below. + +This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. ```shell -# Initialize the database cluster: +# Initialize the database cluster PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - -# Start the database cluster: + +# Start the database cluster systemctl start edb-as-14 -# To work in your cluster, login as `enterprisedb` user: + +# To work in your cluster, login as the enterprisedb user su - enterprisedb -# Connect to the database server using psql command line client: + +# Connect to the database server using the psql command line client psql edb -# Assign a password to the database superuser `enterprisedb`: + +# Assign a password to the database superuser the enterprisedb ALTER ROLE enterprisedb IDENTIFIED BY password; -# Creating a database (named hr): + +# Create a database (named hr) CREATE DATABASE hr; -# Connect to the new database and create a table (named dept): + +# Connect to the new database and create a table (named dept) \c hr -CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk PRIMARY KEY, -dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc varchar(13)); -# Add data to the table: +CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk +PRIMARY KEY, dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc +varchar(13)); + +# Add data to the table INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); INSERT into dept VALUES (20,'RESEARCH','DALLAS'); -# You can use simple SQL commands to query the database and retrieve -# information about the data you have added to the table. + +# You can use simple SQL commands to query the database and retrieve +# information about the data you have added to the table SELECT * FROM dept; +__OUTPUT__ +deptno | dname | loc +--------+------------+---------- +10 | ACCOUNTING | NEW YORK +20 | RESEARCH | DALLAS +(2 rows) ``` diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel8_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel8_x86.mdx index d4da6075b85..9e605dbe687 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel8_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel8_x86.mdx @@ -1,108 +1,95 @@ --- -title: "Installing EDB Postgres Advanced Server on RHEL 8/OL 8 x86" -navTitle: "RHEL 8/OL 8" -redirects: -- /epas/latest/epas_inst_linux/03_using_a_package_manager_to_install_advanced_server/#installing-on-rhel +navTitle: RHEL 8 or OL 8 +title: Installing EDB Postgres Advanced Server on RHEL 8 or OL 8 x86_64 --- -You can use native package to install EDB Postgres Advanced Server on a RHEL 8 or OL 8 host. +Before you begin the installation process, log in as superuser. -## Setting up the repository - -- To install the repository configuration file, assume superuser privileges and invoke one of the following platform specific commands: - - ```text - dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` - -- Replace the `USERNAME:PASSWORD` variable in the following command with the username and password of a registered EDB user: - - ```text - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` - -- Before installing EDB Postgres Advanced Server, you must install the `epel-release` package: - - ```text - # dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm - - # dnf makecache - ``` - -- Enable the `codeready-builder-for-rhel-8-*-rpms` repository to satisfy package dependencies: +```shell +# To log in as a superuser: +sudo su - +``` - ```text - ARCH=$( /bin/arch ) +## Set up the repository - subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - ``` +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). -- Disable the built-in PostgreSQL module: +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ```text - dnf -qy module disable postgresql - ``` +# Replace '' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo -The repository configuration file is named `edb.repo`. The file resides in `/etc/yum.repos.d.` +# Install the EPEL repository: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -You must download and install the repository key. Provide the registered `username` and `password` with the `curl` command to download the repository key using the following command: +# Enable additional repositories to resolve dependencies: +ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" -```text -curl -o /etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY https://:@yum.enterprisedb.com/ENTERPRISEDB-GPG-KEY +# Disable the built-in PostgreSQL module: +dnf -qy module disable postgresql ``` -Use the following command to install the key: +## Install the package -```text -rpm --import /etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY +```shell +dnf -y install edb-as-server ``` -## Install the package +Where `` is the version of the EDB Postgres Advanced server you are installing. -You can use `dnf install` command to install EDB Postgres Advanced Server. For example, to install the server and its core components, use the command: - -```text -dnf -y install edb-as14-server -``` To install an individual component: ```shell -dnf install package_name +dnf install ``` -Where `package_name` can be any of the available package from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). +Where `package_name` can be any of the available packages from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). -When you install an RPM package that is signed by a source that is not recognized by your system, `yum` may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter a `y`, and press `Return` to continue. - -!!! Note - During the installation, `dnf` may encounter a dependency that it cannot resolve. If it does, it provides a list of the required dependencies that you must manually resolve. +Installing the server package creates an operating system user named `enterprisedb`. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. See [Managing an EDB Postgres Advanced Server installation](/epas/latest/epas_inst_linux/managing_an_advanced_server_installation), for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface instead of the command line option given below. + +This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. ```shell -# Initialize the database cluster: +# Initialize the database cluster PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - -# Start the database cluster: + +# Start the database cluster systemctl start edb-as-14 -# To work in your cluster, login as `enterprisedb` user: + +# To work in your cluster, login as the enterprisedb user su - enterprisedb -# Connect to the database server using psql command line client: + +# Connect to the database server using the psql command line client psql edb -# Assign a password to the database superuser `enterprisedb`: + +# Assign a password to the database superuser the enterprisedb ALTER ROLE enterprisedb IDENTIFIED BY password; -# Creating a database (named hr): + +# Create a database (named hr) CREATE DATABASE hr; -# Connect to the new database and create a table (named dept): + +# Connect to the new database and create a table (named dept) \c hr -CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk PRIMARY KEY, -dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc varchar(13)); -# Add data to the table: +CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk +PRIMARY KEY, dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc +varchar(13)); + +# Add data to the table INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); INSERT into dept VALUES (20,'RESEARCH','DALLAS'); -# You can use simple SQL commands to query the database and retrieve -# information about the data you have added to the table. + +# You can use simple SQL commands to query the database and retrieve +# information about the data you have added to the table SELECT * FROM dept; +__OUTPUT__ +deptno | dname | loc +--------+------------+---------- +10 | ACCOUNTING | NEW YORK +20 | RESEARCH | DALLAS +(2 rows) ``` - diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_sles12_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_sles12_x86.mdx index f1c3e1e56e5..26704b33c97 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_sles12_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_sles12_x86.mdx @@ -62,6 +62,7 @@ PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb # Start the database cluster systemctl start edb-as-14 + # To work in your cluster, login as the enterprisedb user su - enterprisedb diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_sles15_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_sles15_x86.mdx index 8e43e10f0b1..c1b29f3b42c 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_sles15_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_sles15_x86.mdx @@ -61,6 +61,7 @@ PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb # Start the database cluster systemctl start edb-as-14 + # To work in your cluster, login as the enterprisedb user su - enterprisedb diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_ubuntu18_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_ubuntu18_x86.mdx index 857fdc1bbb0..33c9f490e4c 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_ubuntu18_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_ubuntu18_x86.mdx @@ -54,6 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa 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 + # To work in your cluster, login as the enterprisedb user su - enterprisedb diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_ubuntu20_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_ubuntu20_x86.mdx index 242c490c667..aa055570136 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_ubuntu20_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_ubuntu20_x86.mdx @@ -54,6 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa 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 + # To work in your cluster, login as the enterprisedb user su - enterprisedb From f4b8ef19cc886d8029384775d8bd1ee83de73505 Mon Sep 17 00:00:00 2001 From: Chris Estes <106166814+ccestes@users.noreply.github.com> Date: Mon, 25 Jul 2022 12:51:51 -0400 Subject: [PATCH 06/30] Moved to parent topic and added table --- .../03_connecting_from_pgadmin.mdx | 55 ------------------- .../02_connecting_your_cluster/index.mdx | 40 ++++++++++++++ 2 files changed, 40 insertions(+), 55 deletions(-) delete mode 100644 product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx diff --git a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx deleted file mode 100644 index a11ce24439f..00000000000 --- a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/03_connecting_from_pgadmin.mdx +++ /dev/null @@ -1,55 +0,0 @@ ---- -title: Connecting from pgAdmin ---- - -In the pgAdmin client, you can connect to your BigAnimal cluster. The pgAdmin tool allows you to inspect, monitor, manage, and query your cluster's databases from a desktop or web UI. - -## Prerequisites - -- Sign in to [BigAnimal](portal.biganimal.com) and create a cluster. For instructions, see [Creating a cluster](../../getting_started/creating_a_cluster/). - -- Install the pgAdmin tool. To install pgAdmin, see the [Download](https://www.pgadmin.org/download/) page on the pgAdmin site. - -!!!Note - When pgAdmin opens for the first time, it asks you to set a master password. The master password secures your connections and credentials. -!!! - -## Connecting to your cluster - -To connect to your BigAnimal cluster, you need to enter its values into pgAdmin. Find the values in BigAnimal to copy and then paste into the pgAdmin fields: - -1. Open BigAnimal. - -1. Go to the [Clusters](https://portal.biganimal.com/clusters) page. - -1. Select the cluster you want to connect to. - -1. Select the **Overview** tab. - -1. Under **Quick Connect**, a command appears like in the example: - - ```shell - $ psql -W "postgres://edb_admin@p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io:5432/edb_admin?sslmode=require" - ``` - -The command contains the values to connect your cluster. Enter the values: - -1. Open pgAdmin. - -1. In the **Quick Links** panel, select **Add New Server**. - -1. In the Create-Server dialog box, under the **General** tab, enter a server name in the **Name** field. - -1. Select the **Connection** tab. - -1. In the **Host name/address** field, enter the server address. Find the server address in the BigAnimal **Quick Connect** connection string. In the example, the server address is `p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io`. - -1. In the **Port** field, enter the port name. Find the port name after the server address in the BigAnimal **Quick Connect** connection string. In the example, the port name is `5432`. - -1. In the **Maintenance database** field, enter the maintenance database name. Find the maintenance database name before the server address in the BigAnimal **Quick Connect** connection string. In the example, the maintenance database name is `edb_admin` - -1. In the **Username** and **Password** fields, enter the cluster's administrator credentials. These are the same credentials you set when configuring the cluster. - -1. In the **SSL** tab, set the **SSL mode** field to **Require**. - -1. Select **Save**. pgAdmin attempts to connect to the BigAnimal cluster. diff --git a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx index 7ae63573db6..2902f3e7814 100644 --- a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx +++ b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx @@ -12,6 +12,46 @@ You can connect to your cluster using [`psql`](http://postgresguide.com/utilitie - [Recommendations for settings for SSL mode](#recommended-settings-for-ssl-mode) - [Using a private network to connect to your cluster](#setting-up-cloud-infrastructure-to-connect-to-a-private-network-cluster) +## Connect to your cluster using pgAdmin + +[pgAdmin](https://www.pgadmin.org/docs/) allows you to inspect, monitor, manage, and query your cluster's databases from a desktop or web UI. + +To connect to your BigAnimal cluster from pgAdmin, you need to enter the values into pgAdmin. Keep BigAnimal and pgAdmin open to copy and paste the cluster values. + + Navigate to the location of the values: + +1. Open BigAnimal. + +1. Go to the [Clusters](https://portal.biganimal.com/clusters) page. + +1. Select the cluster you want to connect to. + +1. Select the **Connect** tab. + +Enter the values in pgAdmin: + +1. Open pgAdmin. + +1. In the **Quick Links** panel, select **Add New Server**. + +1. In the Create-Server dialog box, under the **General** tab, enter a server name in the **Name** field. + +1. Select the **Connection** tab. + +1. Copy the corresponding values from BigAnimal and paste them into pgAdmin. + + | BigAnimal field | pgAdmin field | Example value | + |-----------------|-------------------|---------------| + | Host | Host name/address | p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io | + | Port | Port | 5432 | + | Dbname | Maintenance database | edb_admin | + +1. In the **Username** and **Password** fields, enter the cluster's administrator credentials. These are the same credentials you set when configuring the cluster. + +1. In the **SSL** tab, set the **SSL mode** field to **Require**. + +1. Select **Save**. pgAdmin attempts to connect to the BigAnimal cluster. + ## Connect to your cluster using `psql` 1. Sign in to the [BigAnimal](https://portal.biganimal.com) portal. From 8106328bb4f2325ed9460bfa2d6902dac431b118 Mon Sep 17 00:00:00 2001 From: Chris Estes <106166814+ccestes@users.noreply.github.com> Date: Mon, 25 Jul 2022 13:06:12 -0400 Subject: [PATCH 07/30] removed link to pgAdmin topic --- .../release/using_cluster/02_connecting_your_cluster/index.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx index 2902f3e7814..5481912f377 100644 --- a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx +++ b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx @@ -129,5 +129,4 @@ The Private Networking option offers a higher level of isolation and security by For examples to guide you through the different methods of connecting to your cluster, see - [Connecting from Azure](01_connecting_from_azure) - - [Connecting from AWS](02_connecting_from_aws) - - [Connecting from pgAdmin](03_connecting_from_pgadmin) \ No newline at end of file + - [Connecting from AWS](02_connecting_from_aws) \ No newline at end of file From 5fb8800a2146157f887faeb995d1f5c507314211 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Tue, 26 Jul 2022 06:11:53 -0400 Subject: [PATCH 08/30] moved things around --- .../02_connecting_your_cluster/index.mdx | 130 +++++++++--------- 1 file changed, 67 insertions(+), 63 deletions(-) diff --git a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx index 5481912f377..1a47d60fa7a 100644 --- a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx +++ b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx @@ -7,115 +7,119 @@ redirects: - connecting_your_cluster --- -You can connect to your cluster using [`psql`](http://postgresguide.com/utilities/psql.html), the terminal-based client for Postgres, or another client. For additional security measures see: +You can connect to your cluster using the client of your choice including: +- [`psql`](http://postgresguide.com/utilities/psql.html) — terminal-based client for Postgres +- pgAdmin — desktop or web UI client to inspect, monitor, manage, and query your cluster's databases +- other common database drivers + +For additional security measures see: - [Recommendations for settings for SSL mode](#recommended-settings-for-ssl-mode) - [Using a private network to connect to your cluster](#setting-up-cloud-infrastructure-to-connect-to-a-private-network-cluster) -## Connect to your cluster using pgAdmin +## Recommended settings for SSL mode -[pgAdmin](https://www.pgadmin.org/docs/) allows you to inspect, monitor, manage, and query your cluster's databases from a desktop or web UI. +Different clients can have different default TLS/SSL modes (sslmode). For example, `psql` defaults to `prefer`, which means the client will attempt to establish a TLS connection but fall back to non-TLS if the server does not support it. In the `psql` example provided by EDB in the **Quick Connect** field, `sslmode` is explicitly set to `require`, which means the client will attempt a TLS connection and fail if the connection to the server can't be encrypted. -To connect to your BigAnimal cluster from pgAdmin, you need to enter the values into pgAdmin. Keep BigAnimal and pgAdmin open to copy and paste the cluster values. +For public connections and in most environments, EDB recommends setting `sslmode` to `verify-full`. This setting ensures that you connect to the server you specified and that the connection is encrypted. - Navigate to the location of the values: +BigAnimal generates certificates with LetsEncrypt, a widely trusted certificate authority. Your client machine might already have a bundled CA certificate for LetsEncrypt, for example, at `/etc/ssl/certs/ca-certificates.crt` or `/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem`. If it doesn't, your client machine needs a [CA certificate for Let's Encrypt](https://letsencrypt.org/certificates/). Once the CA certificate is in place on your client machine, configure the `sslrootcert` parameter to its location and set the `sslmode` parameter to `verify-full` to verify the certificate to fully validate the connection. -1. Open BigAnimal. +To view the encryption protocol being used for communication, [connect to the cluster using `psql`](#connect-to-your-cluster-using-psql) and use the `conninfo` meta-command. In the case of BigAnimal, TLS (v1.2+) is supported: -1. Go to the [Clusters](https://portal.biganimal.com/clusters) page. +``` +edb_admin=> \conninfo +You are connected to database "edb_admin" as user "edb_admin" on host "xxxxxxxxx.xxxxx.biganimal.io" at port "5432". +SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off) +``` -1. Select the cluster you want to connect to. -1. Select the **Connect** tab. +## Connect to your cluster using `psql` -Enter the values in pgAdmin: +1. Sign in to the [BigAnimal](https://portal.biganimal.com) portal. -1. Open pgAdmin. +2. Go to the [Clusters](https://portal.biganimal.com/clusters) page. -1. In the **Quick Links** panel, select **Add New Server**. +3. Select the name of your cluster. -1. In the Create-Server dialog box, under the **General** tab, enter a server name in the **Name** field. +4. On the **Overview** tab, select the copy icon to the right of the **Quick Connect** field to copy the command for connecting to your cluster using `psql` to your clipboard. `psql` prompts for the edb_admin user password you selected when you created the cluster. -1. Select the **Connection** tab. +5. Paste the command in your terminal. -1. Copy the corresponding values from BigAnimal and paste them into pgAdmin. - | BigAnimal field | pgAdmin field | Example value | - |-----------------|-------------------|---------------| - | Host | Host name/address | p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io | - | Port | Port | 5432 | - | Dbname | Maintenance database | edb_admin | +## Connect to your cluster using common database drivers -1. In the **Username** and **Password** fields, enter the cluster's administrator credentials. These are the same credentials you set when configuring the cluster. +1. Sign in to the [BigAnimal](https://portal.biganimal.com) portal. -1. In the **SSL** tab, set the **SSL mode** field to **Require**. +2. Go to the [Clusters](https://portal.biganimal.com/clusters) page. -1. Select **Save**. pgAdmin attempts to connect to the BigAnimal cluster. +3. Select the name of your cluster. -## Connect to your cluster using `psql` +4. Select the **Connect** tab. You can review and copy all the relevant information you need from this screen except for the edb_admin user password. -1. Sign in to the [BigAnimal](https://portal.biganimal.com) portal. + Connection string examples for common database drivers using the recommended setting for SSL mode (consult the client driver documentation for more information): -2. Go to the [Clusters](https://portal.biganimal.com/clusters) page. + - libpq (psql) + + ``` + psql -W "postgres://edb_admin@xxxxxxxxx.xxxxx.biganimal.io:5432/edb_admin?sslmode=verify-full&sslrootcert=/usr/share/ca-certificates/ca-cert_name.pem" + ``` -3. Select the name of your cluster. + - JDBC for Java -4. On the **Overview** tab, select the copy icon to the right of the **Quick Connect** field to copy the command for connecting to your cluster using `psql` to your clipboard. `psql` prompts for the edb_admin user password you selected when you created the cluster. + ``` + jdbc:postgresql://xxxxxxxxx.xxxxx.biganimal.io:5432/edb_admin?&sslrootcert=/usr/share/ca-certificates/ca-cert_name.pem&sslmode=verify-full?user=edb_admin&password=$PWD + ``` -5. Paste the command in your terminal. + - Npgsql for DotNet Core + + ``` + Host=xxxxxxxxx.xxxxx.biganimal.io;Port=5432;Username=edb_admin;Password=$PWD;Database=edb_admin;SslRootCert=/usr/share/ca-certificates/ca-cert_name.pem;SslMode=verify-full + ``` -## Connect to your cluster using a client other than `psql` + - ODBC for Windows -1. Sign in to the [BigAnimal](https://portal.biganimal.com) portal. + ``` + Driver={PostgreSQL};Server=xxxxxxxxx.xxxxx.biganimal.io;Port=5432;Database=myDataBase;Uid=edb_admin;Pwd=$PWD;sslrootcert=C:\\ssl\\ca-certificate.pem;sslmode=verify-full; + ``` -2. Go to the [Clusters](https://portal.biganimal.com/clusters) page. +## Connect to your cluster using pgAdmin -3. Select the name of your cluster. +To connect to your BigAnimal cluster from [pgAdmin](https://www.pgadmin.org/docs/), you need to enter your cluster values into pgAdmin. Keep BigAnimal and pgAdmin open to copy and paste the values. -4. Select the **Connect** tab. You can review and copy all the relevant information you need from this screen except for the edb_admin user password. Consult the client driver documentation for the connection string format or see [Recommended settings for SSL mode](#recommended-settings-for-ssl-mode) for sample connection strings of common drivers. +Navigate to the location of the values: -## Recommended settings for SSL mode +1. Sign in to the [BigAnimal](https://portal.biganimal.com) portal. -Different clients can have different default TLS/SSL modes (sslmode). For example, `psql` defaults to `prefer`, which means the client will attempt to establish a TLS connection but fall back to non-TLS if the server does not support it. In the `psql` example provided by EDB in the **Quick Connect** field, `sslmode` is explicitly set to `require`, which means the client will attempt a TLS connection and fail if the connection to the server can't be encrypted. +1. Go to the [Clusters](https://portal.biganimal.com/clusters) page. -For public connections and in most environments, EDB recommends setting `sslmode` to `verify-full`. This setting ensures that you connect to the server you specified and that the connection is encrypted. +1. Select the cluster you want to connect to. -BigAnimal generates certificates with LetsEncrypt, a widely trusted certificate authority. Your client machine might already have a bundled CA certificate for LetsEncrypt, for example, at `/etc/ssl/certs/ca-certificates.crt` or `/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem`. If it doesn't, your client machine needs a [CA certificate for Let's Encrypt](https://letsencrypt.org/certificates/). Once the CA certificate is in place on your client machine, configure the `sslrootcert` parameter to its location and set the `sslmode` parameter to `verify-full` to verify the certificate to fully validate the connection. +1. Select the **Connect** tab. -Connection string examples for common database drivers: +Enter the values in pgAdmin: -- libpq (psql) - - ``` - psql -W "postgres://edb_admin@xxxxxxxxx.xxxxx.biganimal.io:5432/edb_admin?sslmode=verify-full&sslrootcert=/usr/share/ca-certificates/ca-cert_name.pem" - ``` +1. Open pgAdmin. -- JDBC for Java +1. In the **Quick Links** panel, select **Add New Server**. - ``` - jdbc:postgresql://xxxxxxxxx.xxxxx.biganimal.io:5432/edb_admin?&sslrootcert=/usr/share/ca-certificates/ca-cert_name.pem&sslmode=verify-full?user=edb_admin&password=$PWD - ``` +1. In the Create-Server dialog box, under the **General** tab, enter a server name in the **Name** field. -- Npgsql for DotNet Core - - ``` -Host=xxxxxxxxx.xxxxx.biganimal.io;Port=5432;Username=edb_admin;Password=$PWD;Database=edb_admin;SslRootCert=/usr/share/ca-certificates/ca-cert_name.pem;SslMode=verify-full - ``` +1. Select the **Connection** tab. -- ODBC for Windows +1. Copy the corresponding values from BigAnimal and paste them into pgAdmin. - ``` -Driver={PostgreSQL};Server=xxxxxxxxx.xxxxx.biganimal.io;Port=5432;Database=myDataBase;Uid=edb_admin;Pwd=$PWD;sslrootcert=C:\\ssl\\ca-certificate.pem;sslmode=verify-full; - ``` + | BigAnimal field | pgAdmin field | Example value | + |-----------------|-------------------|---------------| + | Host | Host name/address | p-n85scw2ies.fcrziuxgkqazmhkl.s.edbcloud.io | + | Port | Port | 5432 | + | Dbname | Maintenance database | edb_admin | +1. In the **Username** and **Password** fields, enter the cluster's administrator credentials. These are the same credentials you set when configuring the cluster. -Once connected to the cluster using `psql`, the `conninfo` meta-command shows the encryption protocol being used for communication. In the case of BigAnimal, TLS (v1.2+) is supported: +1. In the **SSL** tab, set the **SSL mode** field to **Require**. -``` -edb_admin=> \conninfo -You are connected to database "edb_admin" as user "edb_admin" on host "xxxxxxxxx.xxxxx.biganimal.io" at port "5432". -SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off) -``` +1. Select **Save**. pgAdmin attempts to connect to the BigAnimal cluster. From 9f84e80f361c1a6442b5d9a837c7e04bcd92675f Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Thu, 28 Jul 2022 17:30:36 +0530 Subject: [PATCH 09/30] Created a stub --- .../03_mp_schema_migration.mdx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx index c59eb4b0230..402445fcc5c 100644 --- a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx +++ b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx @@ -28,13 +28,20 @@ You can migrate schemas to an existing on-premises EDB Postgres Advanced Server 1. Select **Existing on-premises EDB Postgres Postgres Advanced Server**. -2. Select one or more schemas to migrate to EDB Postgres Advanced Server. +1. Select one or more schemas to migrate to EDB Postgres Advanced Server. You can also expand a schema and select a specific object types under each schema. !!! Note If your schemas aren't 100% compatible, a banner appears. Complete the Contact Us form as needed. -3. To download the assessed schemas, select **Download SQL file**. +1. To download the assessed schemas, select **Download SQL file**. + +1. Extract the downloaded zip file. Based on your selection of schemas and their objects, the downloaded zip file can consist of one or more of the following files (eg. AllTestMigration_220726124901.zip): + - ProjectName_ALL_OBJECTS.sql: A consolidated file with DDLs for all the selected objects of selected schemas. for eg. AllTestMigration_ALL_OBJECTS.sql (This file will contain all the objects of selected schemas) + + - SchemaName.sql: A single schema file contains all the selected objects of that particular schema. for eg. HR.sql (This file will contain all the selected objects of HR schema) + + - SchemaName_objecttype.sql This file contains objects of the selected schema of the selected object type only. for eg. HR_TABLE.sql (This file contains TABLE objects of HR schema) 4. Select **Windows**. From d75e8456e1bba6a5d7a22429771c4d8ef8339e87 Mon Sep 17 00:00:00 2001 From: Chris Estes <106166814+ccestes@users.noreply.github.com> Date: Tue, 2 Aug 2022 09:04:59 -0400 Subject: [PATCH 10/30] added default admin username information --- .../release/using_cluster/02_connecting_your_cluster/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx index 1a47d60fa7a..ce3ef42d84e 100644 --- a/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx +++ b/product_docs/docs/biganimal/release/using_cluster/02_connecting_your_cluster/index.mdx @@ -115,7 +115,7 @@ Enter the values in pgAdmin: | Port | Port | 5432 | | Dbname | Maintenance database | edb_admin | -1. In the **Username** and **Password** fields, enter the cluster's administrator credentials. These are the same credentials you set when configuring the cluster. +1. In the **Username** and **Password** fields, enter the cluster's administrator credentials. These are the same credentials you set when configuring the cluster. If you didn't set the username, then copy and paste the default administrator username from the **User** field in BigAnimal. 1. In the **SSL** tab, set the **SSL mode** field to **Require**. From f9dd595f000654d97aee997e126904337e09fe98 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 2 Aug 2022 11:49:37 -0400 Subject: [PATCH 11/30] Implements Red Hat family templates for PostGIS Also implements some copy edits for PEM that must have been added to the templates in develop --- install_template/config.yaml | 7 +- install_template/deploy.mjs | 8 ++ .../postgis/almalinux-8-or-rocky-linux-8.njk | 8 -- .../templates/products/postgis/base.njk | 18 ++- .../products/postgis/rhel-8_ppc64le.njk | 2 + .../pem_agent_sles12_ppcle.mdx | 4 +- .../pem_agent_sles15_ppcle.mdx | 4 +- .../x86_amd64/pem_agent_deb10_x86.mdx | 4 +- .../x86_amd64/pem_agent_sles12_x86.mdx | 4 +- .../x86_amd64/pem_agent_sles15_x86.mdx | 4 +- .../x86_amd64/pem_agent_ubuntu18_x86.mdx | 5 +- .../x86_amd64/pem_agent_ubuntu20_x86.mdx | 5 +- .../pem_server_sles12_ppcle.mdx | 4 +- .../pem_server_sles15_ppcle.mdx | 2 +- .../x86_amd64/pem_server_deb10_x86.mdx | 4 +- .../x86_amd64/pem_server_sles12_x86.mdx | 4 +- .../x86_amd64/pem_server_sles15_x86.mdx | 4 +- .../x86_amd64/pem_server_ubuntu18_x86.mdx | 4 +- .../x86_amd64/pem_server_ubuntu20_x86.mdx | 4 +- .../ibm_power_ppc64le/postgis_rhel8_ppcle.mdx | 82 +++++------- .../postgis_sles12_ppcle.mdx | 17 ++- .../postgis_sles15_ppcle.mdx | 17 ++- .../installing_on_linux/x86_amd64/index.mdx | 4 +- .../x86_amd64/postgis_deb10_x86.mdx | 17 ++- .../x86_amd64/postgis_other_linux8_x86.mdx | 126 +++++------------- .../x86_amd64/postgis_rhel7_x86.mdx | 112 +++++----------- .../x86_amd64/postgis_rhel8_x86.mdx | 111 --------------- .../x86_amd64/postgis_rhel_8_x86.mdx | 52 ++++++++ .../x86_amd64/postgis_sles12_x86.mdx | 17 ++- .../x86_amd64/postgis_sles15_x86.mdx | 17 ++- .../x86_amd64/postgis_ubuntu18_x86.mdx | 17 ++- .../x86_amd64/postgis_ubuntu20_x86.mdx | 17 ++- 32 files changed, 320 insertions(+), 385 deletions(-) create mode 100644 install_template/templates/products/postgis/rhel-8_ppc64le.njk delete mode 100644 product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel8_x86.mdx create mode 100644 product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx diff --git a/install_template/config.yaml b/install_template/config.yaml index 8be624b1213..0eecc966098 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -542,11 +542,14 @@ products: supported versions: [3.1] - name: RHEL 8 or OL 8 arch: x86_64 - supported versions: [11, 12, 13, 14] + supported versions: [3.1] + - name: RHEL 8 + arch: ppc64le + supported versions: [3.1] - name: Ubuntu 18.04 arch: x86_64 supported versions: [3.1] - - name: Ubuntu 18.04 + - name: Ubuntu 20.04 arch: x86_64 supported versions: [3.1] - name: Debian 10 diff --git a/install_template/deploy.mjs b/install_template/deploy.mjs index 7df16d5f103..87e6ef485af 100644 --- a/install_template/deploy.mjs +++ b/install_template/deploy.mjs @@ -302,6 +302,14 @@ const moveDoc = async (product, platform, version) => { (ctx) => `pem/8/installing_pem_agent/installing_on_linux/${fmtArchPath(ctx)}/pem_agent_ubuntu18_${fmtArchFilename(ctx)}.mdx`), when({product: {name: "Postgres Enterprise Manager agent", version: 8}, platform: {name: "Ubuntu 20.04"}}, (ctx) => `pem/8/installing_pem_agent/installing_on_linux/${fmtArchPath(ctx)}/pem_agent_ubuntu20_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "PostGIS", version: 3.1}, platform: {name: "AlmaLinux 8 or Rocky Linux 8"}}, + (ctx) => `postgis/3.1/01a_installing_postgis/installing_on_linux/${fmtArchPath(ctx)}/postgis_other_linux8_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "PostGIS", version: 3.1}, platform: {name: "RHEL 7 or OL 7"}}, + (ctx) => `postgis/3.1/01a_installing_postgis/installing_on_linux/${fmtArchPath(ctx)}/postgis_rhel7_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "PostGIS", version: 3.1}, platform: {name: "RHEL 8 or OL 8"}}, + (ctx) => `postgis/3.1/01a_installing_postgis/installing_on_linux/${fmtArchPath(ctx)}/postgis_rhel_8_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "PostGIS", version: 3.1}, platform: {name: "RHEL 8"}}, + (ctx) => `postgis/3.1/01a_installing_postgis/installing_on_linux/${fmtArchPath(ctx)}/postgis_rhel8_${fmtArchFilename(ctx)}.mdx`), when({product: {name: "PostGIS", version: 3.1}, platform: {name: "SLES 12"}}, (ctx) => `postgis/3.1/01a_installing_postgis/installing_on_linux/${fmtArchPath(ctx)}/postgis_sles12_${fmtArchFilename(ctx)}.mdx`), when({product: {name: "PostGIS", version: 3.1}, platform: {name: "SLES 15"}}, diff --git a/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk index 16aa508638d..abf7b6410aa 100644 --- a/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk @@ -1,10 +1,2 @@ {% extends "products/postgis/base.njk" %} {% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} -{% block prerequisites %} -{{ super() }} -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` -{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/base.njk b/install_template/templates/products/postgis/base.njk index e150494ce76..de00ec4536e 100644 --- a/install_template/templates/products/postgis/base.njk +++ b/install_template/templates/products/postgis/base.njk @@ -1,6 +1,20 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-as14-postgis3{% endset %} {% block installCommand %} -{{ super() }} -{% include "platformBase/_epasVersionInPackageName.njk" %} +```shell +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. +``` {% endblock installCommand %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/rhel-8_ppc64le.njk b/install_template/templates/products/postgis/rhel-8_ppc64le.njk new file mode 100644 index 00000000000..b68f0ec9fb1 --- /dev/null +++ b/install_template/templates/products/postgis/rhel-8_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/rhel-8-or-ol-8.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles12_ppcle.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles12_ppcle.mdx index f2f98cdd888..c8017ce2a8a 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles12_ppcle.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles12_ppcle.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -42,4 +42,4 @@ zypper refresh zypper -n install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles15_ppcle.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles15_ppcle.mdx index 0549f60838c..e37d33ea226 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles15_ppcle.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles15_ppcle.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -41,4 +41,4 @@ zypper refresh zypper -n install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_deb10_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_deb10_x86.mdx index 166941afed7..c5558adeba0 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_deb10_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_deb10_x86.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -39,4 +39,4 @@ apt-get update apt-get install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles12_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles12_x86.mdx index 0ea275bbb31..fc8de210fb2 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles12_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles12_x86.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -42,4 +42,4 @@ zypper refresh zypper -n install edb-pem-agent ``` -After installing PEM agent, register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles15_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles15_x86.mdx index a3a4278f11d..10c48d6ebd4 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles15_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles15_x86.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -41,4 +41,4 @@ zypper refresh zypper -n install edb-pem-agent ``` -After installing PEM agent, register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu18_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu18_x86.mdx index 2d88cbd84d9..f9c8c968c5a 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu18_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu18_x86.mdx @@ -6,12 +6,13 @@ title: Installing Postgres Enterprise Manager agent on Ubuntu 18.04 x86_64 Before you begin the installation process, log in as superuser. ```shell +# To log in as a superuser: sudo su - ``` ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -38,4 +39,4 @@ apt-get update apt-get install edb-pem-agent ``` -After installing PEM agent, register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu20_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu20_x86.mdx index 40423cdfbb6..24fb2df363b 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu20_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu20_x86.mdx @@ -6,12 +6,13 @@ title: Installing Postgres Enterprise Manager agent on Ubuntu 20.04 x86_64 Before you begin the installation process, log in as superuser. ```shell +# To log in as a superuser: sudo su - ``` ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -38,4 +39,4 @@ apt-get update apt-get install edb-pem-agent ``` -After installing PEM agent, register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles12_ppcle.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles12_ppcle.mdx index 3440705f5b0..963d89568eb 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles12_ppcle.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles12_ppcle.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -52,4 +52,4 @@ zypper -n install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles15_ppcle.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles15_ppcle.mdx index 60425aece72..73d9a285af4 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles15_ppcle.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles15_ppcle.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_deb10_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_deb10_x86.mdx index b3440a3568c..a428d267681 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_deb10_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_deb10_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -49,4 +49,4 @@ apt-get install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles12_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles12_x86.mdx index 47fc1213a20..0da2b94bcb5 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles12_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles12_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -52,4 +52,4 @@ zypper -n install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles15_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles15_x86.mdx index a8ba4a4ba92..74c2c90c851 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles15_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles15_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -51,4 +51,4 @@ zypper -n install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu18_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu18_x86.mdx index 71bf4ddc053..55c6f6e8be5 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu18_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu18_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -49,4 +49,4 @@ apt-get install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu20_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu20_x86.mdx index 04dde2f8877..d4d76362a11 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu20_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu20_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -49,4 +49,4 @@ apt-get install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx index 6eb410af2b5..ced3cdf568a 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx @@ -1,65 +1,55 @@ --- -title: "Installing PostGIS on RHEL 8 IBM Power (ppc64le)" -navTitle: "RHEL 8" +navTitle: RHEL 8 +title: Installing PostGIS on RHEL 8 ppc64le --- -There are two steps to completing an installation: - -- Setting up the repository -- Installing the package - -For each step, you must be logged in as superuser. - -To log in as a superuser: +Before you begin the installation process, log in as superuser. ```shell +# To log in as a superuser: sudo su - ``` -## Setting up the repository - -1. To register with EDB to receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). - -1. Set up the EDB repository: - - ```shell - dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` +## Set up the repository - This creates the /etc/yum.repos.d/edb.repo configuration file. +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). -1. Add your EDB credentials to the edb.repo file: - - ```shell - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` - - where `USERNAME:PASSWORD` is the username and password available from your - [EDB account](https://www.enterprisedb.com/user). +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm -1. Install the EPEL repository and refresh the cache: +# Replace '' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ```shell - dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm - dnf makecache - ``` +# Install the EPEL repository: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -1. Enable the codeready-builder-for-rhel-8-\*-rpms repository since EPEL packages may depend on packages from it: +# Refresh the cache: +dnf makecache - ```shell - ARCH=$( /bin/arch ) - subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - ``` +# Enable additional repositories to resolve dependencies: +ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" -1. Disable the built-in PostgreSQL module: - ```shell - dnf -qy module disable postgresql - ``` +# Disable the built-in PostgreSQL module: +dnf -qy module disable postgresql +``` -## Installing the package +## Install the package ```shell -dnf -y install edb-as-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - - diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx index b4deb88b94a..be8eab5bafb 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx @@ -39,7 +39,18 @@ zypper refresh ## Install the package ```shell -zypper -n install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx index 008e6f035f8..290a064071e 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx @@ -38,7 +38,18 @@ zypper refresh ## Install the package ```shell -zypper -n install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/index.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/index.mdx index ba7571e1e39..9a9428b7a29 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/index.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/index.mdx @@ -2,7 +2,7 @@ title: "Installing PostGIS on Linux x86 (amd64)" navTitle: "Intel x86 (amd64)" navigation: -- postgis_rhel8_x86 +- postgis_rhel_8_x86 - postgis_other_linux8_x86 - postgis_rhel7_x86 - postgis_sles15_x86 @@ -14,7 +14,7 @@ navigation: For operating system-specific install instructions, see: - - [RHEL 8/OL 8](postgis_rhel8_x86) + - [RHEL 8/OL 8](postgis_rhel_8_x86) - [Rocky Linux 8/AlmaLinux 8](postgis_other_linux8_x86) - [RHEL 7/OL 7](postgis_rhel7_x86) diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx index 0376f6c14a1..d96182edfdc 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx @@ -36,7 +36,18 @@ apt-get update ## Install the package ```shell -apt-get install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx index db8f115aac6..03aae31a9a6 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx @@ -1,104 +1,52 @@ --- -title: "Installing PostGIS on Rocky Linux 8/AlmaLinux 8 x86" -navTitle: "Rocky Linux 8/AlmaLinux 8" +navTitle: AlmaLinux 8 or Rocky Linux 8 +title: Installing PostGIS on AlmaLinux 8 or Rocky Linux 8 x86_64 --- -Before creating the repository configuration file, you must have credentials that allow access to the EnterpriseDB repository. For information about requesting credentials, visit the [EDB website](https://www.enterprisedb.com/user). +Before you begin the installation process, log in as superuser. -Perform the following steps: +```shell +# To log in as a superuser: +sudo su - +``` -1. To create the repository configuration file, assume superuser privileges, and invoke the platform-specific command: +## Set up the repository - On CentOS 7: +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). - ```text - yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - On Rocky Linux 8 or AlmaLinux 8: +# Replace '' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ```text - dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` +# Install the EPEL repository: +dnf -y install epel-release -2. Replace the `USERNAME:PASSWORD` variable in the following command with the username and password of a registered EnterpriseDB user: +# Enable additional repositories to resolve dependencies: +dnf config-manager --set-enabled PowerTools - ```text - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` +# Disable the built-in PostgreSQL module: +dnf -qy module disable postgresql +``` -3. Before installing PostGIS, you need to install the Extra Packages for Enterprise Linux (EPEL) release package: +## Install the package - On CentOS 7: +```shell +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. - ```text - yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm - ``` - - On Rocky Linux 8 or AlmaLinux 8: - - ```text - dnf -y install epel-release - ``` - -4. The following steps are applicable only for Rocky Linux 8 or AlmaLinux 8 platform: - - a. Enable the PowerTools repository to satisfy package dependencies: - - ```text - dnf config-manager --set-enabled PowerTools - ``` - - b. Disable the built-in PostgreSQL module: - - ```text - dnf -qy module disable postgresql - ``` - -5. Invoke the platform-specific command to install `PostGIS`: - - On CentOS 7, to install the latest version of PostGIS version for EDB Advanced Server version 13.0: - - ```text - yum -y install edb-as13-postgis3 - ``` - - On Rocky Linux 8 or AlmaLinux 8, to install the latest version of PostGIS version for EDB Advanced Server version 13.0: - - ```text - dnf -y install edb-as13-postgis3 - ``` - - On CentOS 7, to install the latest version of PostGIS for EDB Advanced Server versions older than 13.0: - - ```text - yum -y install edb-as-postgis - ``` - - where <xx> denotes the Advanced Server version older than 13.0. - - On CentOS 7, to install PostGIS older versions (for example PostGIS 3.0.2) for EDB Advanced Server version 13.0: - - ```text - yum -y install edb-as13-postgis3-3.0.2 - ``` - - On CentOS 7, to install older PostGIS versions for EDB Advanced Server versions older than 13.0: - - ```text - yum -y install edb-as-postgis- - ``` - - where <xx> is the Advanced Server version older than 13.0 and <y.y.y> is the older PostGIS version. - - For example, to install PostGIS 2.5.4 on Advanced Server 12: - - ```text - yum -y install edb-as12-postgis-2.5.4 - ``` - - When you install an RPM package signed by a source that is not recognized by your system, yum may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter `y` and press `Return` to continue. - - !!! Note - After installing PostGIS with a package manager, you must manually create a template database and the required PostGIS extension. +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. +``` diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx index cfa8b1d65a3..99c4a2c9054 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx @@ -1,91 +1,49 @@ --- -title: "Installing PostGIS on RHEL 7/OL 7 x86" -navTitle: "RHEL 7/OL 7" +navTitle: RHEL 7 or OL 7 +title: Installing PostGIS on RHEL 7 or OL 7 x86_64 --- -Before installing the repository configuration, you must have credentials that allow access to the EnterpriseDB repository. For information about requesting credentials, visit the [EDB website](https://www.enterprisedb.com/user). +Before you begin the installation process, log in as superuser. -Perform the following steps to install PostGIS on an RHEL 7 PPC64LE Host. +```shell +# To log in as a superuser: +sudo su - +``` -1. Create the Advance Toolchain repository configuration file: +## Set up the repository - ```text - rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). - cat > /etc/yum.repos.d/advance-toolchain.repo <' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo -2. To create the EnterpriseDB repository configuration file, assume superuser privileges and invoke the following command: +# Install the EPEL repository: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm - ```text - yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` +# Enable additional repositories to resolve dependencies: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" +``` -3. Replace the `USERNAME:PASSWORD` variable with the username and password of a registered EnterpriseDB user: +## Install the package - ```text - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` +```shell +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. -4. Before installing PostGIS, you need to install the Extra Packages for Enterprise Linux (EPEL) release package: +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 - ```text - yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm - ``` - -5. On RHEL 7, enable the `optional, extras`, and `HA` repositories to satisfy package dependencies: - - ```text - subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - ``` - -6. Invoke the following command to install PostGIS: - - To install the latest version of PostGIS version for EDB Advanced Server version 13.0: - - ```text - yum -y install edb-as13-postgis3 - ``` - - To install the latest version of PostGIS for EDB Advanced Server version older than 13.0: - - ```text - yum -y install edb-as-postgis - ``` - - where <xx> denotes the Advanced Server version older than 13.0. - - To install PostGIS older versions (for example PostGIS 3.0.2) for EDB Advanced Server version 13.0: - - ```text - yum -y install edb-as13-postgis3-3.0.2 - ``` - - To install older PostGIS versions for EDB Advanced Server versions older than 13.0: - - ```text - yum -y install edb-as-postgis- - ``` - - where <xx> is the Advanced Server version older than 13.0 and <y.y.y> is the older PostGIS version. - - For example, to install PostGIS 2.5.4 on EDB Advanced Server version 12: - - ```text - yum -y install edb-as12-postgis-2.5.4 - ``` - - When you install an RPM package signed by a source that is not recognized by your system, yum may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter `y` and press `Return` to continue. - - !!! Note - After installing PostGIS with a package manager, you must manually create a template database and the required PostGIS extension. +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. +``` diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel8_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel8_x86.mdx deleted file mode 100644 index 1348ab1f857..00000000000 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel8_x86.mdx +++ /dev/null @@ -1,111 +0,0 @@ ---- -title: "Installing PostGIS on RHEL 8/OL 8 x86" -navTitle: "RHEL 8/OL 8" ---- - -Before installing the repository configuration file, you must have credentials that allow access to the EnterpriseDB repository. For information about requesting credentials, visit the [EDB website](https://www.enterprisedb.com/user). - -Perform the following steps to install PostGIS on an RHEL Host: - -1. To create the repository configuration file, assume superuser privileges, and invoke the platform-specific command: - - On RHEL 7: - - ```text - yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` - - On RHEL 8: - - ```text - dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` - -2. Replace the `USERNAME:PASSWORD` variable with the username and password of a registered EnterpriseDB user: - - ```text - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` - -3. Before installing PostGIS, you need to install the Extra Packages for Enterprise Linux (EPEL) release package: - - On RHEL 7: - - ```text - yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm - ``` - - On RHEL 8: - - ```text - dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm - ``` - -4. Enable additional platform-specific repositories: - - On RHEL 7, enable the `optional, extras`, and `HA` repositories to satisfy package dependencies: - - ```text - subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - ``` - - On RHEL 8, enable the `codeready-builder-for-rhel-8-*-rpms` repository to satisfy EPEL packages dependency: - - ```text - ARCH=$( /bin/arch ) - - subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - ``` - -5. On RHEL 8 platform, disable the built-in PostgreSQL module: - - ```text - dnf -qy module disable postgresql - ``` - -6. Invoke the platform-specific command to install `PostGIS`: - - On RHEL 7, to install the latest version of PostGIS for EDB Advanced Server version 13.0: - - ```text - yum -y install edb-as13-postgis3 - ``` - - On RHEL 8, to install the latest version of PostGIS for EDB Advanced Server version 13.0: - - ```text - dnf -y install edb-as13-postgis3 - ``` - - On RHEL 7, to install the latest version of PostGIS for EDB Advanced Server version older than 13.0: - - ```text - yum -y install edb-as-postgis - ``` - - where <xx> denotes the Advanced Server version older than 13.0. - - On RHEL 7, to install PostGIS older versions (for example PostGIS 3.0.2) for EDB Advanced Server version 13.0: - - ```text - yum -y install edb-as13-postgis3-3.0.2 - ``` - - On RHEL 7, to install older PostGIS versions for EDB Advanced Server version older than 13.0: - - ```text - yum -y install edb-as-postgis- - ``` - - where <xx> is the Advanced Server version older than 13.0 and <y.y.y> is the older PostGIS version. - - For example, to install PostGIS 2.5.4 on EDB Advanced Server version 12: - - ```text - yum -y install edb-as12-postgis-2.5.4 - ``` - - When you install an RPM package signed by a source that is not recognized by your system, yum may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter `y` and press `Return` to continue. - - !!! Note - After installing PostGIS with a package manager, you must manually create a template database and the required PostGIS extension. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx new file mode 100644 index 00000000000..1d58fdde708 --- /dev/null +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx @@ -0,0 +1,52 @@ +--- +navTitle: RHEL 8 or OL 8 +title: Installing PostGIS on RHEL 8 or OL 8 x86_64 +--- + +Before you begin the installation process, log in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +## Set up the repository + +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# Replace '' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install the EPEL repository: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm + +# Enable additional repositories to resolve dependencies: +ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" + +# Disable the built-in PostgreSQL module: +dnf -qy module disable postgresql +``` + +## Install the package + +```shell +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. +``` diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx index bab5c7e688d..31a0e93b5c4 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx @@ -39,7 +39,18 @@ zypper refresh ## Install the package ```shell -zypper -n install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx index 8e05eaec509..c0c4007a16c 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx @@ -38,7 +38,18 @@ zypper refresh ## Install the package ```shell -zypper -n install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx index 3715da38e95..15e30a0d26b 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx @@ -36,7 +36,18 @@ apt-get update ## Install the package ```shell -apt-get install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx index 77af1eec265..b9f82827f18 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx @@ -36,7 +36,18 @@ apt-get update ## Install the package ```shell -apt-get install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. From 9d34632d81a9c2f99ad7c8b4f909cb660eb129d6 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Tue, 2 Aug 2022 22:09:32 +0530 Subject: [PATCH 12/30] Added info about SQL files in zip package --- .../03_mp_schema_migration.mdx | 13 ++++++++----- .../4.0/images/schema_object_selection.png | 3 +++ 2 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 product_docs/docs/migration_portal/4.0/images/schema_object_selection.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx index 402445fcc5c..705f5c05f7b 100644 --- a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx +++ b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx @@ -29,6 +29,8 @@ You can migrate schemas to an existing on-premises EDB Postgres Advanced Server 1. Select one or more schemas to migrate to EDB Postgres Advanced Server. You can also expand a schema and select a specific object types under each schema. + + ![Schema and objects are selected](../images/schema_object_selection.png) !!! Note If your schemas aren't 100% compatible, a banner appears. Complete the Contact Us form as needed. @@ -36,17 +38,16 @@ You can migrate schemas to an existing on-premises EDB Postgres Advanced Server 1. To download the assessed schemas, select **Download SQL file**. -1. Extract the downloaded zip file. Based on your selection of schemas and their objects, the downloaded zip file can consist of one or more of the following files (eg. AllTestMigration_220726124901.zip): - - ProjectName_ALL_OBJECTS.sql: A consolidated file with DDLs for all the selected objects of selected schemas. for eg. AllTestMigration_ALL_OBJECTS.sql (This file will contain all the objects of selected schemas) +1. Extract the downloaded zip file. The zip package consists of SQL files with DDLs for your selection of schemas and objects. The SQL files group DDLs by project, schema, and object, and use the following naming convention. - - SchemaName.sql: A single schema file contains all the selected objects of that particular schema. for eg. HR.sql (This file will contain all the selected objects of HR schema) + - **_ALL_OBJECTS.sql: A single consolidated file consisting of all DDLs for your selected schemas and objects. - - SchemaName_objecttype.sql This file contains objects of the selected schema of the selected object type only. for eg. HR_TABLE.sql (This file contains TABLE objects of HR schema) + - **.sql: One or more files, each consisting of DDLs for selected objects in a particular schema. For example, **HR.sql** will consist of DDLs for all the selected objects of the HR schema. + - **_/**.sql: One or more files, each consisting of DDLs for a single selected object. For example, **HR_TABLE.sql** will consist of DDLs only for TABLE objects of the HR schema. 4. Select **Windows**. - 5. To import the schemas, run: - On CLI: @@ -215,3 +216,5 @@ Migrate schemas on EDB Postgres Advanced Server to the cloud. The converted schemas migrate to the target server. + + diff --git a/product_docs/docs/migration_portal/4.0/images/schema_object_selection.png b/product_docs/docs/migration_portal/4.0/images/schema_object_selection.png new file mode 100644 index 00000000000..499d170dc3d --- /dev/null +++ b/product_docs/docs/migration_portal/4.0/images/schema_object_selection.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a6b262315a20b9d7f74de39e7458876748649ce2749497c42631e42884071ef +size 244942 From 5ca311c1fb339a431435b0d1850de727f652b0ba Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Wed, 3 Aug 2022 14:08:51 +0530 Subject: [PATCH 13/30] corrected the font treatment for enterprisedb user --- .../ibm_power_ppc64le/epas_rhel8_ppcle.mdx | 2 +- .../x86_amd64/epas_centos7_x86.mdx | 2 +- .../x86_amd64/epas_other_linux8_x86.mdx | 2 +- .../x86_amd64/epas_rhel7_x86.mdx | 2 +- .../x86_amd64/epas_rhel8_x86.mdx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_rhel8_ppcle.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_rhel8_ppcle.mdx index 5560b64cc0e..7c6c7e0e75c 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_rhel8_ppcle.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/ibm_power_ppc64le/epas_rhel8_ppcle.mdx @@ -51,7 +51,7 @@ dnf install Where `package_name` can be any of the available packages from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). -Installing the server package creates an operating system user named `enterprisedb`. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_centos7_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_centos7_x86.mdx index 8be3bd6aec5..ae4091867a4 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_centos7_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_centos7_x86.mdx @@ -42,7 +42,7 @@ yum install Where `package_name` can be any of the available packages from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). -Installing the server package creates an operating system user named `enterprisedb`. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_other_linux8_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_other_linux8_x86.mdx index d2d81d903c8..1d4df34119a 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_other_linux8_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_other_linux8_x86.mdx @@ -48,7 +48,7 @@ dnf install Where `package_name` can be any of the available packages from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). -Installing the server package creates an operating system user named `enterprisedb`. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel7_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel7_x86.mdx index a2ed0120cff..f3c3e52cdc4 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel7_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel7_x86.mdx @@ -45,7 +45,7 @@ yum install Where `package_name` can be any of the available packages from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). -Installing the server package creates an operating system user named `enterprisedb`. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration diff --git a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel8_x86.mdx b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel8_x86.mdx index 9e605dbe687..46aaa71d7a9 100644 --- a/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel8_x86.mdx +++ b/product_docs/docs/epas/14/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_rhel8_x86.mdx @@ -48,7 +48,7 @@ dnf install Where `package_name` can be any of the available packages from the [available package list](/epas/latest/epas_inst_linux/install_details/rpm_packages/). -Installing the server package creates an operating system user named `enterprisedb`. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration From c6918e77b020cccfc9913d33e6fbd71a38a67797 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Wed, 3 Aug 2022 14:52:01 +0530 Subject: [PATCH 14/30] Cleared formatting issues, improved content, added table, added screenshot --- .../03_mp_schema_migration.mdx | 105 ++++++++++-------- .../4.0/images/schema_object_selection.png | 4 +- 2 files changed, 61 insertions(+), 48 deletions(-) diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx index 705f5c05f7b..1551574df2f 100644 --- a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx +++ b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx @@ -27,28 +27,26 @@ You can migrate schemas to an existing on-premises EDB Postgres Advanced Server 1. Select **Existing on-premises EDB Postgres Postgres Advanced Server**. - -1. Select one or more schemas to migrate to EDB Postgres Advanced Server. You can also expand a schema and select a specific object types under each schema. +1. Select one or more schemas to migrate to EDB Postgres Advanced Server. You can also expand a schema and select specific object types under each schema. ![Schema and objects are selected](../images/schema_object_selection.png) - !!! Note - If your schemas aren't 100% compatible, a banner appears. Complete the Contact Us form as needed. - + !!!Note + If your schemas aren't 100% compatible, a banner appears. Complete the Contact Us form as needed. 1. To download the assessed schemas, select **Download SQL file**. -1. Extract the downloaded zip file. The zip package consists of SQL files with DDLs for your selection of schemas and objects. The SQL files group DDLs by project, schema, and object, and use the following naming convention. +1. Extract the downloaded zip file. The zip package consists of SQL files with DDLs for your selected schemas and objects. The DDLs are grouped in SQL files by project, schemas, or objects. - - **_ALL_OBJECTS.sql: A single consolidated file consisting of all DDLs for your selected schemas and objects. + | SQL file naming convention | Description | Example | + |------------------------------------------------|------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------| + | *<ProjectName>* _ALL_OBJECTS.sql | A single consolidated file consisting of DDLs for all your selected schemas and objects. | **AllTestMigration_ALL_OBJECTS.sql** will consist of DDLs for all objects of schemas OE, SH, IX, and PM, and only selected objects of schema HR. | + | *<SchemaName>* .sql | One or more files, each consisting of DDLs for selected objects in a particular schema. | **HR.sql** will consist of DDLs for all the selected objects of the HR schema. | + | *<SchemaName>* _ *<ObjectType>* .sql | One or more files, each consisting of DDLs for a single selected object. | **HR_TABLE.sql** will consist of DDLs only for TABLE object of the HR schema. | - - **.sql: One or more files, each consisting of DDLs for selected objects in a particular schema. For example, **HR.sql** will consist of DDLs for all the selected objects of the HR schema. +1. Select **Windows**. - - **_/**.sql: One or more files, each consisting of DDLs for a single selected object. For example, **HR_TABLE.sql** will consist of DDLs only for TABLE objects of the HR schema. - -4. Select **Windows**. - -5. To import the schemas, run: +1. To import the schemas, run: - On CLI: @@ -74,17 +72,23 @@ You can migrate schemas to an existing on-premises EDB Postgres Advanced Server 1. Select **Existing on-premises EDB Postgres Advanced Server**. +1. Select one or more schemas to migrate to EDB Postgres Advanced Server. You can also expand a schema and select specific object types under each schema. + + ![Schema and objects are selected](../images/schema_object_selection.png) -2. Select one or more schemas to migrate to EDB Postgres Advanced Server. - - -3. To download the assessed schemas, select **Download SQL file**. +1. To download the assessed schemas, select **Download SQL file**. +1. Extract the downloaded zip file. The zip package consists of SQL files with DDLs for your selected schemas and objects. The DDLs are grouped in SQL files by project, schemas, or objects. -4. Select **Linux**. + | SQL file naming convention | Description | Example | + |------------------------------------------------|------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------| + | *<ProjectName>* _ALL_OBJECTS.sql | A single consolidated file consisting of DDLs for all your selected schemas and objects. | **AllTestMigration_ALL_OBJECTS.sql** will consist of DDLs for all objects of schemas OE, SH, IX, and PM, and only selected objects of schema HR. | + | *<SchemaName>* .sql | One or more files, each consisting of DDLs for selected objects in a particular schema. | **HR.sql** will consist of DDLs for all the selected objects of the HR schema. | + | *<SchemaName>* _ *<ObjectType>* .sql | One or more files, each consisting of DDLs for a single selected object. | **HR_TABLE.sql** will consist of DDLs only for TABLE object of the HR schema. | +1. Select **Linux**. -5. To import the schemas, invoke the following `edb-psql` client commands: +1. To import the schemas, invoke the following `edb-psql` client commands: ```text sudo su - enterprisedb @@ -111,23 +115,27 @@ Migrate schemas to a new on-premises EDB Postgres Advanced Server on Windows. 1. Select **New on-premises EDB Postgres Postgres Advanced Server**. +1. Select one or more schemas to migrate to EDB Postgres Advanced Server. You can also expand a schema and select specific object types under each schema. + + ![Schema and objects are selected](../images/schema_object_selection.png) -2. Select one or more schemas to migrate on EDB Postgres Advanced Server. - - -3. For the operating system, select **Windows**. - - -4. Select **Download Windows installer**. +1. For the operating system, select **Windows**. +1. Select **Download Windows installer**. -5. For installation steps, select **EDB Postgres Advanced Server Installation Guide for Windows**. +1. For installation steps, select **EDB Postgres Advanced Server Installation Guide for Windows**. +1. To download the assessed schemas, select **Download SQL file**. -6. To download the assessed schemas, select **Download SQL file**. +1. Extract the downloaded zip file. The zip package consists of SQL files with DDLs for your selected schemas and objects. The DDLs are grouped in SQL files by project, schemas, or objects. + | SQL file naming convention | Description | Example | + |------------------------------------------------|------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------| + | *<ProjectName>* _ALL_OBJECTS.sql | A single consolidated file consisting of DDLs for all your selected schemas and objects. | **AllTestMigration_ALL_OBJECTS.sql** will consist of DDLs for all objects of schemas OE, SH, IX, and PM, and only selected objects of schema HR. | + | *<SchemaName>* .sql | One or more files, each consisting of DDLs for selected objects in a particular schema. | **HR.sql** will consist of DDLs for all the selected objects of the HR schema. | + | *<SchemaName>* _ *<ObjectType>* .sql | One or more files, each consisting of DDLs for a single selected object. | **HR_TABLE.sql** will consist of DDLs only for TABLE object of the HR schema. | -7. You can import schemas by running: +1. You can import schemas by running: - On CLI @@ -151,24 +159,30 @@ Migrate schemas to an on-premises EDB Postgres Advanced Server on Linux. 1. Select **New On-premises EDB Postgres Advanced Server**. +1. Select one or more schemas to migrate to EDB Postgres Advanced Server. You can also expand a schema and select specific object types under each schema. + + ![Schema and objects are selected](../images/schema_object_selection.png) -2. Select one or more schemas to migrate on EDB Postgres Advanced Server. - -3. For the operating system, select **Linux**. - +1. For the operating system, select **Linux**. -4. You can select one of the following options to install the EDB Postgres Advanced Server: +1. You can select one of the following options to install the EDB Postgres Advanced Server: - Repository - More options -5. For information on the installation procedure, select **EDB Postgres Advanced Server Installation Guide** for Linux. +1. For information on the installation procedure, select **EDB Postgres Advanced Server Installation Guide** for Linux. +1. To download the assessed schemas, select **Download SQL file**. -6. To download the assessed schemas, select **Download SQL file**. +1. Extract the downloaded zip file. The zip package consists of SQL files with DDLs for your selected schemas and objects. The DDLs are grouped in SQL files by project, schemas, or objects. + | SQL file naming convention | Description | Example | + |------------------------------------------------|------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------| + | *<ProjectName>* _ALL_OBJECTS.sql | A single consolidated file consisting of DDLs for all your selected schemas and objects. | **AllTestMigration_ALL_OBJECTS.sql** will consist of DDLs for all objects of schemas OE, SH, IX, and PM, and only selected objects of schema HR. | + | *<SchemaName>* .sql | One or more files, each consisting of DDLs for selected objects in a particular schema. | **HR.sql** will consist of DDLs for all the selected objects of the HR schema. | + | *<SchemaName>* _ *<ObjectType>* .sql | One or more files, each consisting of DDLs for a single selected object. | **HR_TABLE.sql** will consist of DDLs only for TABLE object of the HR schema. | -7. To import the schemas, run: +1. To import the schemas, run: ```text sudo su - enterprisedb @@ -183,36 +197,35 @@ Migrate schemas to an on-premises EDB Postgres Advanced Server on Linux. The converted schemas migrate to the target server. - ## Migrate to the cloud Migrate schemas on EDB Postgres Advanced Server to the cloud. 1. Select **EDB Postgres Advanced Server on Cloud**. +1. Select one or more schemas to migrate to EDB Postgres Advanced Server. You can also expand a schema and select specific object types under each schema. + + ![Schema and objects are selected](../images/schema_object_selection.png) -2. Select one or more schemas to migrate to EDB Postgres Advanced Server. - -3. Select the cloud platform, for example, **BigAnimal**. - +1. Select the cloud platform, for example, **BigAnimal**. -4. To launch a new cluster, select **Go to BigAnimal**. +1. To launch a new cluster, select **Go to BigAnimal**. Or, if you have an existing cluster running, select **Next**. !!! Note See the [Big Animal](https://www.enterprisedb.com/edb-cloud) page for more information. -5. Enter the required connection details on the `Connect` page. +1. Enter the required connection details on the `Connect` page. ![Connecting to the cloud cluster](../images/mp_migrate_cloud_connection_updated.png) -7. To verify the connection details, select **Test Connection**. +1. To verify the connection details, select **Test Connection**. !!! Note You can select **Edit Connection** to make changes to the connection details and retest the connection details. -8. Once the connection is successful, select **Next**. +1. Once the connection is successful, select **Next**. The converted schemas migrate to the target server. diff --git a/product_docs/docs/migration_portal/4.0/images/schema_object_selection.png b/product_docs/docs/migration_portal/4.0/images/schema_object_selection.png index 499d170dc3d..a988fc8641e 100644 --- a/product_docs/docs/migration_portal/4.0/images/schema_object_selection.png +++ b/product_docs/docs/migration_portal/4.0/images/schema_object_selection.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a6b262315a20b9d7f74de39e7458876748649ce2749497c42631e42884071ef -size 244942 +oid sha256:64f644eec1d10318d6ac46d46dfaf69c1eb17198d678b361f6caa2e481286c0b +size 342658 From 866b521dec26908f142995b50ed5a8e9a5ae1287 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 3 Aug 2022 10:09:05 -0400 Subject: [PATCH 15/30] Revert "Implements Red Hat family templates for PostGIS" This reverts commit f9dd595f000654d97aee997e126904337e09fe98. --- install_template/config.yaml | 7 +- .../postgis/almalinux-8-or-rocky-linux-8.njk | 8 ++ .../templates/products/postgis/base.njk | 18 +-- .../products/postgis/rhel-8_ppc64le.njk | 2 - .../pem_agent_sles12_ppcle.mdx | 4 +- .../pem_agent_sles15_ppcle.mdx | 4 +- .../x86_amd64/pem_agent_deb10_x86.mdx | 4 +- .../x86_amd64/pem_agent_sles12_x86.mdx | 4 +- .../x86_amd64/pem_agent_sles15_x86.mdx | 4 +- .../x86_amd64/pem_agent_ubuntu18_x86.mdx | 5 +- .../x86_amd64/pem_agent_ubuntu20_x86.mdx | 5 +- .../pem_server_sles12_ppcle.mdx | 4 +- .../pem_server_sles15_ppcle.mdx | 2 +- .../x86_amd64/pem_server_deb10_x86.mdx | 4 +- .../x86_amd64/pem_server_sles12_x86.mdx | 4 +- .../x86_amd64/pem_server_sles15_x86.mdx | 4 +- .../x86_amd64/pem_server_ubuntu18_x86.mdx | 4 +- .../x86_amd64/pem_server_ubuntu20_x86.mdx | 4 +- .../ibm_power_ppc64le/postgis_rhel8_ppcle.mdx | 82 +++++++----- .../postgis_sles12_ppcle.mdx | 17 +-- .../postgis_sles15_ppcle.mdx | 17 +-- .../installing_on_linux/x86_amd64/index.mdx | 4 +- .../x86_amd64/postgis_deb10_x86.mdx | 17 +-- .../x86_amd64/postgis_other_linux8_x86.mdx | 126 +++++++++++++----- .../x86_amd64/postgis_rhel7_x86.mdx | 112 +++++++++++----- .../x86_amd64/postgis_rhel8_x86.mdx | 111 +++++++++++++++ .../x86_amd64/postgis_rhel_8_x86.mdx | 52 -------- .../x86_amd64/postgis_sles12_x86.mdx | 17 +-- .../x86_amd64/postgis_sles15_x86.mdx | 17 +-- .../x86_amd64/postgis_ubuntu18_x86.mdx | 17 +-- .../x86_amd64/postgis_ubuntu20_x86.mdx | 17 +-- 31 files changed, 385 insertions(+), 312 deletions(-) delete mode 100644 install_template/templates/products/postgis/rhel-8_ppc64le.njk create mode 100644 product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel8_x86.mdx delete mode 100644 product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx diff --git a/install_template/config.yaml b/install_template/config.yaml index 0eecc966098..8be624b1213 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -542,14 +542,11 @@ products: supported versions: [3.1] - name: RHEL 8 or OL 8 arch: x86_64 - supported versions: [3.1] - - name: RHEL 8 - arch: ppc64le - supported versions: [3.1] + supported versions: [11, 12, 13, 14] - name: Ubuntu 18.04 arch: x86_64 supported versions: [3.1] - - name: Ubuntu 20.04 + - name: Ubuntu 18.04 arch: x86_64 supported versions: [3.1] - name: Debian 10 diff --git a/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk index abf7b6410aa..16aa508638d 100644 --- a/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk @@ -1,2 +1,10 @@ {% extends "products/postgis/base.njk" %} {% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} +{% block prerequisites %} +{{ super() }} +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/base.njk b/install_template/templates/products/postgis/base.njk index de00ec4536e..e150494ce76 100644 --- a/install_template/templates/products/postgis/base.njk +++ b/install_template/templates/products/postgis/base.njk @@ -1,20 +1,6 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-as14-postgis3{% endset %} {% block installCommand %} -```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. -``` +{{ super() }} +{% include "platformBase/_epasVersionInPackageName.njk" %} {% endblock installCommand %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/rhel-8_ppc64le.njk b/install_template/templates/products/postgis/rhel-8_ppc64le.njk deleted file mode 100644 index b68f0ec9fb1..00000000000 --- a/install_template/templates/products/postgis/rhel-8_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/postgis/rhel-8-or-ol-8.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles12_ppcle.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles12_ppcle.mdx index c8017ce2a8a..f2f98cdd888 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles12_ppcle.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles12_ppcle.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -42,4 +42,4 @@ zypper refresh zypper -n install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles15_ppcle.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles15_ppcle.mdx index e37d33ea226..0549f60838c 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles15_ppcle.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles15_ppcle.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -41,4 +41,4 @@ zypper refresh zypper -n install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_deb10_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_deb10_x86.mdx index c5558adeba0..166941afed7 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_deb10_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_deb10_x86.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -39,4 +39,4 @@ apt-get update apt-get install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles12_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles12_x86.mdx index fc8de210fb2..0ea275bbb31 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles12_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles12_x86.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -42,4 +42,4 @@ zypper refresh zypper -n install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles15_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles15_x86.mdx index 10c48d6ebd4..a3a4278f11d 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles15_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles15_x86.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -41,4 +41,4 @@ zypper refresh zypper -n install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu18_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu18_x86.mdx index f9c8c968c5a..2d88cbd84d9 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu18_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu18_x86.mdx @@ -6,13 +6,12 @@ title: Installing Postgres Enterprise Manager agent on Ubuntu 18.04 x86_64 Before you begin the installation process, log in as superuser. ```shell -# To log in as a superuser: sudo su - ``` ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -39,4 +38,4 @@ apt-get update apt-get install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu20_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu20_x86.mdx index 24fb2df363b..40423cdfbb6 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu20_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu20_x86.mdx @@ -6,13 +6,12 @@ title: Installing Postgres Enterprise Manager agent on Ubuntu 20.04 x86_64 Before you begin the installation process, log in as superuser. ```shell -# To log in as a superuser: sudo su - ``` ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -39,4 +38,4 @@ apt-get update apt-get install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles12_ppcle.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles12_ppcle.mdx index 963d89568eb..3440705f5b0 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles12_ppcle.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles12_ppcle.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -52,4 +52,4 @@ zypper -n install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles15_ppcle.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles15_ppcle.mdx index 73d9a285af4..60425aece72 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles15_ppcle.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles15_ppcle.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_deb10_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_deb10_x86.mdx index a428d267681..b3440a3568c 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_deb10_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_deb10_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -49,4 +49,4 @@ apt-get install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles12_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles12_x86.mdx index 0da2b94bcb5..47fc1213a20 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles12_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles12_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -52,4 +52,4 @@ zypper -n install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles15_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles15_x86.mdx index 74c2c90c851..a8ba4a4ba92 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles15_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles15_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -51,4 +51,4 @@ zypper -n install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu18_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu18_x86.mdx index 55c6f6e8be5..71bf4ddc053 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu18_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu18_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -49,4 +49,4 @@ apt-get install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu20_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu20_x86.mdx index d4d76362a11..04dde2f8877 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu20_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu20_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -49,4 +49,4 @@ apt-get install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx index ced3cdf568a..6eb410af2b5 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx @@ -1,55 +1,65 @@ --- -navTitle: RHEL 8 -title: Installing PostGIS on RHEL 8 ppc64le +title: "Installing PostGIS on RHEL 8 IBM Power (ppc64le)" +navTitle: "RHEL 8" --- -Before you begin the installation process, log in as superuser. +There are two steps to completing an installation: + +- Setting up the repository +- Installing the package + +For each step, you must be logged in as superuser. + +To log in as a superuser: ```shell -# To log in as a superuser: sudo su - ``` -## Set up the repository +## Setting up the repository -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +1. To register with EDB to receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm +1. Set up the EDB repository: -# Replace '' and '' below with -# your username and password for the EDB repository: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + ```shell + dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + ``` -# Install the EPEL repository: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm + This creates the /etc/yum.repos.d/edb.repo configuration file. -# Refresh the cache: -dnf makecache +1. Add your EDB credentials to the edb.repo file: -# Enable additional repositories to resolve dependencies: -ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" + ```shell + sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + ``` -# Disable the built-in PostgreSQL module: -dnf -qy module disable postgresql -``` + where `USERNAME:PASSWORD` is the username and password available from your + [EDB account](https://www.enterprisedb.com/user). + +1. Install the EPEL repository and refresh the cache: -## Install the package + ```shell + dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm + dnf makecache + ``` + +1. Enable the codeready-builder-for-rhel-8-\*-rpms repository since EPEL packages may depend on packages from it: + + ```shell + ARCH=$( /bin/arch ) + subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" + ``` + +1. Disable the built-in PostgreSQL module: + ```shell + dnf -qy module disable postgresql + ``` + +## Installing the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +dnf -y install edb-as-postgis3 ``` + + diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx index be8eab5bafb..b4deb88b94a 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx @@ -39,18 +39,7 @@ zypper refresh ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +zypper -n install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx index 290a064071e..008e6f035f8 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx @@ -38,18 +38,7 @@ zypper refresh ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +zypper -n install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/index.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/index.mdx index 9a9428b7a29..ba7571e1e39 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/index.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/index.mdx @@ -2,7 +2,7 @@ title: "Installing PostGIS on Linux x86 (amd64)" navTitle: "Intel x86 (amd64)" navigation: -- postgis_rhel_8_x86 +- postgis_rhel8_x86 - postgis_other_linux8_x86 - postgis_rhel7_x86 - postgis_sles15_x86 @@ -14,7 +14,7 @@ navigation: For operating system-specific install instructions, see: - - [RHEL 8/OL 8](postgis_rhel_8_x86) + - [RHEL 8/OL 8](postgis_rhel8_x86) - [Rocky Linux 8/AlmaLinux 8](postgis_other_linux8_x86) - [RHEL 7/OL 7](postgis_rhel7_x86) diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx index d96182edfdc..0376f6c14a1 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx @@ -36,18 +36,7 @@ apt-get update ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +apt-get install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx index 03aae31a9a6..db8f115aac6 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx @@ -1,52 +1,104 @@ --- -navTitle: AlmaLinux 8 or Rocky Linux 8 -title: Installing PostGIS on AlmaLinux 8 or Rocky Linux 8 x86_64 +title: "Installing PostGIS on Rocky Linux 8/AlmaLinux 8 x86" +navTitle: "Rocky Linux 8/AlmaLinux 8" --- -Before you begin the installation process, log in as superuser. +Before creating the repository configuration file, you must have credentials that allow access to the EnterpriseDB repository. For information about requesting credentials, visit the [EDB website](https://www.enterprisedb.com/user). -```shell -# To log in as a superuser: -sudo su - -``` +Perform the following steps: -## Set up the repository +1. To create the repository configuration file, assume superuser privileges, and invoke the platform-specific command: -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). + On CentOS 7: -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + ```text + yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + ``` -# Replace '' and '' below with -# your username and password for the EDB repository: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + On Rocky Linux 8 or AlmaLinux 8: -# Install the EPEL repository: -dnf -y install epel-release + ```text + dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + ``` -# Enable additional repositories to resolve dependencies: -dnf config-manager --set-enabled PowerTools +2. Replace the `USERNAME:PASSWORD` variable in the following command with the username and password of a registered EnterpriseDB user: -# Disable the built-in PostgreSQL module: -dnf -qy module disable postgresql -``` + ```text + sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + ``` -## Install the package +3. Before installing PostGIS, you need to install the Extra Packages for Enterprise Linux (EPEL) release package: -```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. + On CentOS 7: -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 + ```text + yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm + ``` + + On Rocky Linux 8 or AlmaLinux 8: + + ```text + dnf -y install epel-release + ``` + +4. The following steps are applicable only for Rocky Linux 8 or AlmaLinux 8 platform: + + a. Enable the PowerTools repository to satisfy package dependencies: + + ```text + dnf config-manager --set-enabled PowerTools + ``` + + b. Disable the built-in PostgreSQL module: + + ```text + dnf -qy module disable postgresql + ``` + +5. Invoke the platform-specific command to install `PostGIS`: + + On CentOS 7, to install the latest version of PostGIS version for EDB Advanced Server version 13.0: + + ```text + yum -y install edb-as13-postgis3 + ``` + + On Rocky Linux 8 or AlmaLinux 8, to install the latest version of PostGIS version for EDB Advanced Server version 13.0: + + ```text + dnf -y install edb-as13-postgis3 + ``` + + On CentOS 7, to install the latest version of PostGIS for EDB Advanced Server versions older than 13.0: + + ```text + yum -y install edb-as-postgis + ``` + + where <xx> denotes the Advanced Server version older than 13.0. + + On CentOS 7, to install PostGIS older versions (for example PostGIS 3.0.2) for EDB Advanced Server version 13.0: + + ```text + yum -y install edb-as13-postgis3-3.0.2 + ``` + + On CentOS 7, to install older PostGIS versions for EDB Advanced Server versions older than 13.0: + + ```text + yum -y install edb-as-postgis- + ``` + + where <xx> is the Advanced Server version older than 13.0 and <y.y.y> is the older PostGIS version. + + For example, to install PostGIS 2.5.4 on Advanced Server 12: + + ```text + yum -y install edb-as12-postgis-2.5.4 + ``` + + When you install an RPM package signed by a source that is not recognized by your system, yum may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter `y` and press `Return` to continue. + + !!! Note + After installing PostGIS with a package manager, you must manually create a template database and the required PostGIS extension. -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. -``` diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx index 99c4a2c9054..cfa8b1d65a3 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx @@ -1,49 +1,91 @@ --- -navTitle: RHEL 7 or OL 7 -title: Installing PostGIS on RHEL 7 or OL 7 x86_64 +title: "Installing PostGIS on RHEL 7/OL 7 x86" +navTitle: "RHEL 7/OL 7" --- -Before you begin the installation process, log in as superuser. +Before installing the repository configuration, you must have credentials that allow access to the EnterpriseDB repository. For information about requesting credentials, visit the [EDB website](https://www.enterprisedb.com/user). -```shell -# To log in as a superuser: -sudo su - -``` +Perform the following steps to install PostGIS on an RHEL 7 PPC64LE Host. -## Set up the repository +1. Create the Advance Toolchain repository configuration file: -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). + ```text + rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + cat > /etc/yum.repos.d/advance-toolchain.repo <' and '' below with -# your username and password for the EDB repository: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + # Beginning of the configuration file + [advance-toolchain] + name=Advance Toolchain IBM FTP + baseurl=https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7 + failovermethod=priority + enabled=1 + gpgcheck=1 + gpgkey=ftp://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHELX/gpg-pubkey-6976a827-5164221b + # End of the configuration file + ``` -# Install the EPEL repository: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +2. To create the EnterpriseDB repository configuration file, assume superuser privileges and invoke the following command: -# Enable additional repositories to resolve dependencies: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" -``` + ```text + yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + ``` -## Install the package +3. Replace the `USERNAME:PASSWORD` variable with the username and password of a registered EnterpriseDB user: -```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. + ```text + sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + ``` -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 +4. Before installing PostGIS, you need to install the Extra Packages for Enterprise Linux (EPEL) release package: -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. -``` + ```text + yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm + ``` + +5. On RHEL 7, enable the `optional, extras`, and `HA` repositories to satisfy package dependencies: + + ```text + subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + ``` + +6. Invoke the following command to install PostGIS: + + To install the latest version of PostGIS version for EDB Advanced Server version 13.0: + + ```text + yum -y install edb-as13-postgis3 + ``` + + To install the latest version of PostGIS for EDB Advanced Server version older than 13.0: + + ```text + yum -y install edb-as-postgis + ``` + + where <xx> denotes the Advanced Server version older than 13.0. + + To install PostGIS older versions (for example PostGIS 3.0.2) for EDB Advanced Server version 13.0: + + ```text + yum -y install edb-as13-postgis3-3.0.2 + ``` + + To install older PostGIS versions for EDB Advanced Server versions older than 13.0: + + ```text + yum -y install edb-as-postgis- + ``` + + where <xx> is the Advanced Server version older than 13.0 and <y.y.y> is the older PostGIS version. + + For example, to install PostGIS 2.5.4 on EDB Advanced Server version 12: + + ```text + yum -y install edb-as12-postgis-2.5.4 + ``` + + When you install an RPM package signed by a source that is not recognized by your system, yum may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter `y` and press `Return` to continue. + + !!! Note + After installing PostGIS with a package manager, you must manually create a template database and the required PostGIS extension. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel8_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel8_x86.mdx new file mode 100644 index 00000000000..1348ab1f857 --- /dev/null +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel8_x86.mdx @@ -0,0 +1,111 @@ +--- +title: "Installing PostGIS on RHEL 8/OL 8 x86" +navTitle: "RHEL 8/OL 8" +--- + +Before installing the repository configuration file, you must have credentials that allow access to the EnterpriseDB repository. For information about requesting credentials, visit the [EDB website](https://www.enterprisedb.com/user). + +Perform the following steps to install PostGIS on an RHEL Host: + +1. To create the repository configuration file, assume superuser privileges, and invoke the platform-specific command: + + On RHEL 7: + + ```text + yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + ``` + + On RHEL 8: + + ```text + dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + ``` + +2. Replace the `USERNAME:PASSWORD` variable with the username and password of a registered EnterpriseDB user: + + ```text + sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + ``` + +3. Before installing PostGIS, you need to install the Extra Packages for Enterprise Linux (EPEL) release package: + + On RHEL 7: + + ```text + yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm + ``` + + On RHEL 8: + + ```text + dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm + ``` + +4. Enable additional platform-specific repositories: + + On RHEL 7, enable the `optional, extras`, and `HA` repositories to satisfy package dependencies: + + ```text + subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + ``` + + On RHEL 8, enable the `codeready-builder-for-rhel-8-*-rpms` repository to satisfy EPEL packages dependency: + + ```text + ARCH=$( /bin/arch ) + + subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" + ``` + +5. On RHEL 8 platform, disable the built-in PostgreSQL module: + + ```text + dnf -qy module disable postgresql + ``` + +6. Invoke the platform-specific command to install `PostGIS`: + + On RHEL 7, to install the latest version of PostGIS for EDB Advanced Server version 13.0: + + ```text + yum -y install edb-as13-postgis3 + ``` + + On RHEL 8, to install the latest version of PostGIS for EDB Advanced Server version 13.0: + + ```text + dnf -y install edb-as13-postgis3 + ``` + + On RHEL 7, to install the latest version of PostGIS for EDB Advanced Server version older than 13.0: + + ```text + yum -y install edb-as-postgis + ``` + + where <xx> denotes the Advanced Server version older than 13.0. + + On RHEL 7, to install PostGIS older versions (for example PostGIS 3.0.2) for EDB Advanced Server version 13.0: + + ```text + yum -y install edb-as13-postgis3-3.0.2 + ``` + + On RHEL 7, to install older PostGIS versions for EDB Advanced Server version older than 13.0: + + ```text + yum -y install edb-as-postgis- + ``` + + where <xx> is the Advanced Server version older than 13.0 and <y.y.y> is the older PostGIS version. + + For example, to install PostGIS 2.5.4 on EDB Advanced Server version 12: + + ```text + yum -y install edb-as12-postgis-2.5.4 + ``` + + When you install an RPM package signed by a source that is not recognized by your system, yum may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter `y` and press `Return` to continue. + + !!! Note + After installing PostGIS with a package manager, you must manually create a template database and the required PostGIS extension. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx deleted file mode 100644 index 1d58fdde708..00000000000 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx +++ /dev/null @@ -1,52 +0,0 @@ ---- -navTitle: RHEL 8 or OL 8 -title: Installing PostGIS on RHEL 8 or OL 8 x86_64 ---- - -Before you begin the installation process, log in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -## Set up the repository - -Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# Replace '' and '' below with -# your username and password for the EDB repository: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install the EPEL repository: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm - -# Enable additional repositories to resolve dependencies: -ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - -# Disable the built-in PostgreSQL module: -dnf -qy module disable postgresql -``` - -## Install the package - -```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. -``` diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx index 31a0e93b5c4..bab5c7e688d 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx @@ -39,18 +39,7 @@ zypper refresh ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +zypper -n install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx index c0c4007a16c..8e05eaec509 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx @@ -38,18 +38,7 @@ zypper refresh ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +zypper -n install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx index 15e30a0d26b..3715da38e95 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx @@ -36,18 +36,7 @@ apt-get update ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +apt-get install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx index b9f82827f18..77af1eec265 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx @@ -36,18 +36,7 @@ apt-get update ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +apt-get install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. From 6af69ed3e11f40fdc5ac863ca712a0aece2e5ea0 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 3 Aug 2022 10:09:41 -0400 Subject: [PATCH 16/30] Revert "Revert "Implements Red Hat family templates for PostGIS"" This reverts commit 866b521dec26908f142995b50ed5a8e9a5ae1287. --- install_template/config.yaml | 7 +- .../postgis/almalinux-8-or-rocky-linux-8.njk | 8 -- .../templates/products/postgis/base.njk | 18 ++- .../products/postgis/rhel-8_ppc64le.njk | 2 + .../pem_agent_sles12_ppcle.mdx | 4 +- .../pem_agent_sles15_ppcle.mdx | 4 +- .../x86_amd64/pem_agent_deb10_x86.mdx | 4 +- .../x86_amd64/pem_agent_sles12_x86.mdx | 4 +- .../x86_amd64/pem_agent_sles15_x86.mdx | 4 +- .../x86_amd64/pem_agent_ubuntu18_x86.mdx | 5 +- .../x86_amd64/pem_agent_ubuntu20_x86.mdx | 5 +- .../pem_server_sles12_ppcle.mdx | 4 +- .../pem_server_sles15_ppcle.mdx | 2 +- .../x86_amd64/pem_server_deb10_x86.mdx | 4 +- .../x86_amd64/pem_server_sles12_x86.mdx | 4 +- .../x86_amd64/pem_server_sles15_x86.mdx | 4 +- .../x86_amd64/pem_server_ubuntu18_x86.mdx | 4 +- .../x86_amd64/pem_server_ubuntu20_x86.mdx | 4 +- .../ibm_power_ppc64le/postgis_rhel8_ppcle.mdx | 82 +++++------- .../postgis_sles12_ppcle.mdx | 17 ++- .../postgis_sles15_ppcle.mdx | 17 ++- .../installing_on_linux/x86_amd64/index.mdx | 4 +- .../x86_amd64/postgis_deb10_x86.mdx | 17 ++- .../x86_amd64/postgis_other_linux8_x86.mdx | 126 +++++------------- .../x86_amd64/postgis_rhel7_x86.mdx | 112 +++++----------- .../x86_amd64/postgis_rhel8_x86.mdx | 111 --------------- .../x86_amd64/postgis_rhel_8_x86.mdx | 52 ++++++++ .../x86_amd64/postgis_sles12_x86.mdx | 17 ++- .../x86_amd64/postgis_sles15_x86.mdx | 17 ++- .../x86_amd64/postgis_ubuntu18_x86.mdx | 17 ++- .../x86_amd64/postgis_ubuntu20_x86.mdx | 17 ++- 31 files changed, 312 insertions(+), 385 deletions(-) create mode 100644 install_template/templates/products/postgis/rhel-8_ppc64le.njk delete mode 100644 product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel8_x86.mdx create mode 100644 product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx diff --git a/install_template/config.yaml b/install_template/config.yaml index 8be624b1213..0eecc966098 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -542,11 +542,14 @@ products: supported versions: [3.1] - name: RHEL 8 or OL 8 arch: x86_64 - supported versions: [11, 12, 13, 14] + supported versions: [3.1] + - name: RHEL 8 + arch: ppc64le + supported versions: [3.1] - name: Ubuntu 18.04 arch: x86_64 supported versions: [3.1] - - name: Ubuntu 18.04 + - name: Ubuntu 20.04 arch: x86_64 supported versions: [3.1] - name: Debian 10 diff --git a/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk index 16aa508638d..abf7b6410aa 100644 --- a/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk @@ -1,10 +1,2 @@ {% extends "products/postgis/base.njk" %} {% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} -{% block prerequisites %} -{{ super() }} -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` -{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/base.njk b/install_template/templates/products/postgis/base.njk index e150494ce76..de00ec4536e 100644 --- a/install_template/templates/products/postgis/base.njk +++ b/install_template/templates/products/postgis/base.njk @@ -1,6 +1,20 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-as14-postgis3{% endset %} {% block installCommand %} -{{ super() }} -{% include "platformBase/_epasVersionInPackageName.njk" %} +```shell +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. +``` {% endblock installCommand %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/rhel-8_ppc64le.njk b/install_template/templates/products/postgis/rhel-8_ppc64le.njk new file mode 100644 index 00000000000..b68f0ec9fb1 --- /dev/null +++ b/install_template/templates/products/postgis/rhel-8_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/rhel-8-or-ol-8.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles12_ppcle.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles12_ppcle.mdx index f2f98cdd888..c8017ce2a8a 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles12_ppcle.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles12_ppcle.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -42,4 +42,4 @@ zypper refresh zypper -n install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles15_ppcle.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles15_ppcle.mdx index 0549f60838c..e37d33ea226 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles15_ppcle.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/ibm_power_ppc64le/pem_agent_sles15_ppcle.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -41,4 +41,4 @@ zypper refresh zypper -n install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_deb10_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_deb10_x86.mdx index 166941afed7..c5558adeba0 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_deb10_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_deb10_x86.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -39,4 +39,4 @@ apt-get update apt-get install edb-pem-agent ``` -After installing PEM agent, you need to register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles12_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles12_x86.mdx index 0ea275bbb31..fc8de210fb2 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles12_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles12_x86.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -42,4 +42,4 @@ zypper refresh zypper -n install edb-pem-agent ``` -After installing PEM agent, register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles15_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles15_x86.mdx index a3a4278f11d..10c48d6ebd4 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles15_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_sles15_x86.mdx @@ -12,7 +12,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -41,4 +41,4 @@ zypper refresh zypper -n install edb-pem-agent ``` -After installing PEM agent, register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu18_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu18_x86.mdx index 2d88cbd84d9..f9c8c968c5a 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu18_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu18_x86.mdx @@ -6,12 +6,13 @@ title: Installing Postgres Enterprise Manager agent on Ubuntu 18.04 x86_64 Before you begin the installation process, log in as superuser. ```shell +# To log in as a superuser: sudo su - ``` ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -38,4 +39,4 @@ apt-get update apt-get install edb-pem-agent ``` -After installing PEM agent, register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu20_x86.mdx b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu20_x86.mdx index 40423cdfbb6..24fb2df363b 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu20_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/installing_on_linux/x86_amd64/pem_agent_ubuntu20_x86.mdx @@ -6,12 +6,13 @@ title: Installing Postgres Enterprise Manager agent on Ubuntu 20.04 x86_64 Before you begin the installation process, log in as superuser. ```shell +# To log in as a superuser: sudo su - ``` ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -38,4 +39,4 @@ apt-get update apt-get install edb-pem-agent ``` -After installing PEM agent, register the PEM agent. For detailed information, see [Registering an agent](/pem/latest/registering_agent/). +After installing PEM agent, you need to register the PEM agent. For detailed information see [Registering an agent](/pem/latest/registering_agent/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles12_ppcle.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles12_ppcle.mdx index 3440705f5b0..963d89568eb 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles12_ppcle.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles12_ppcle.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -52,4 +52,4 @@ zypper -n install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles15_ppcle.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles15_ppcle.mdx index 60425aece72..73d9a285af4 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles15_ppcle.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/ibm_power_ppc64le/pem_server_sles15_ppcle.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_deb10_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_deb10_x86.mdx index b3440a3568c..a428d267681 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_deb10_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_deb10_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -49,4 +49,4 @@ apt-get install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles12_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles12_x86.mdx index 47fc1213a20..0da2b94bcb5 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles12_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles12_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -52,4 +52,4 @@ zypper -n install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles15_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles15_x86.mdx index a8ba4a4ba92..74c2c90c851 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles15_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_sles15_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Install the repository configuration and enter your EDB repository @@ -51,4 +51,4 @@ zypper -n install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu18_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu18_x86.mdx index 71bf4ddc053..55c6f6e8be5 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu18_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu18_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -49,4 +49,4 @@ apt-get install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu20_x86.mdx b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu20_x86.mdx index 04dde2f8877..d4d76362a11 100644 --- a/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu20_x86.mdx +++ b/product_docs/docs/pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/x86_amd64/pem_server_ubuntu20_x86.mdx @@ -15,7 +15,7 @@ sudo su - ## Set up the repository -Setting up the repository is a one-time task. If you already set up your repository, you don't need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). ```shell # Set up the EDB repository @@ -49,4 +49,4 @@ apt-get install edb-pem /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM Server on Linux](/pem/latest/installing_pem_server/installing_on_linux/configuring_the_pem_server_on_linux/). diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx index 6eb410af2b5..ced3cdf568a 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx @@ -1,65 +1,55 @@ --- -title: "Installing PostGIS on RHEL 8 IBM Power (ppc64le)" -navTitle: "RHEL 8" +navTitle: RHEL 8 +title: Installing PostGIS on RHEL 8 ppc64le --- -There are two steps to completing an installation: - -- Setting up the repository -- Installing the package - -For each step, you must be logged in as superuser. - -To log in as a superuser: +Before you begin the installation process, log in as superuser. ```shell +# To log in as a superuser: sudo su - ``` -## Setting up the repository - -1. To register with EDB to receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). - -1. Set up the EDB repository: - - ```shell - dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` +## Set up the repository - This creates the /etc/yum.repos.d/edb.repo configuration file. +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). -1. Add your EDB credentials to the edb.repo file: - - ```shell - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` - - where `USERNAME:PASSWORD` is the username and password available from your - [EDB account](https://www.enterprisedb.com/user). +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm -1. Install the EPEL repository and refresh the cache: +# Replace '' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ```shell - dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm - dnf makecache - ``` +# Install the EPEL repository: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -1. Enable the codeready-builder-for-rhel-8-\*-rpms repository since EPEL packages may depend on packages from it: +# Refresh the cache: +dnf makecache - ```shell - ARCH=$( /bin/arch ) - subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - ``` +# Enable additional repositories to resolve dependencies: +ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" -1. Disable the built-in PostgreSQL module: - ```shell - dnf -qy module disable postgresql - ``` +# Disable the built-in PostgreSQL module: +dnf -qy module disable postgresql +``` -## Installing the package +## Install the package ```shell -dnf -y install edb-as-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - - diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx index b4deb88b94a..be8eab5bafb 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx @@ -39,7 +39,18 @@ zypper refresh ## Install the package ```shell -zypper -n install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx index 008e6f035f8..290a064071e 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx @@ -38,7 +38,18 @@ zypper refresh ## Install the package ```shell -zypper -n install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/index.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/index.mdx index ba7571e1e39..9a9428b7a29 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/index.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/index.mdx @@ -2,7 +2,7 @@ title: "Installing PostGIS on Linux x86 (amd64)" navTitle: "Intel x86 (amd64)" navigation: -- postgis_rhel8_x86 +- postgis_rhel_8_x86 - postgis_other_linux8_x86 - postgis_rhel7_x86 - postgis_sles15_x86 @@ -14,7 +14,7 @@ navigation: For operating system-specific install instructions, see: - - [RHEL 8/OL 8](postgis_rhel8_x86) + - [RHEL 8/OL 8](postgis_rhel_8_x86) - [Rocky Linux 8/AlmaLinux 8](postgis_other_linux8_x86) - [RHEL 7/OL 7](postgis_rhel7_x86) diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx index 0376f6c14a1..d96182edfdc 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx @@ -36,7 +36,18 @@ apt-get update ## Install the package ```shell -apt-get install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx index db8f115aac6..03aae31a9a6 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx @@ -1,104 +1,52 @@ --- -title: "Installing PostGIS on Rocky Linux 8/AlmaLinux 8 x86" -navTitle: "Rocky Linux 8/AlmaLinux 8" +navTitle: AlmaLinux 8 or Rocky Linux 8 +title: Installing PostGIS on AlmaLinux 8 or Rocky Linux 8 x86_64 --- -Before creating the repository configuration file, you must have credentials that allow access to the EnterpriseDB repository. For information about requesting credentials, visit the [EDB website](https://www.enterprisedb.com/user). +Before you begin the installation process, log in as superuser. -Perform the following steps: +```shell +# To log in as a superuser: +sudo su - +``` -1. To create the repository configuration file, assume superuser privileges, and invoke the platform-specific command: +## Set up the repository - On CentOS 7: +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). - ```text - yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - On Rocky Linux 8 or AlmaLinux 8: +# Replace '' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ```text - dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` +# Install the EPEL repository: +dnf -y install epel-release -2. Replace the `USERNAME:PASSWORD` variable in the following command with the username and password of a registered EnterpriseDB user: +# Enable additional repositories to resolve dependencies: +dnf config-manager --set-enabled PowerTools - ```text - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` +# Disable the built-in PostgreSQL module: +dnf -qy module disable postgresql +``` -3. Before installing PostGIS, you need to install the Extra Packages for Enterprise Linux (EPEL) release package: +## Install the package - On CentOS 7: +```shell +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. - ```text - yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm - ``` - - On Rocky Linux 8 or AlmaLinux 8: - - ```text - dnf -y install epel-release - ``` - -4. The following steps are applicable only for Rocky Linux 8 or AlmaLinux 8 platform: - - a. Enable the PowerTools repository to satisfy package dependencies: - - ```text - dnf config-manager --set-enabled PowerTools - ``` - - b. Disable the built-in PostgreSQL module: - - ```text - dnf -qy module disable postgresql - ``` - -5. Invoke the platform-specific command to install `PostGIS`: - - On CentOS 7, to install the latest version of PostGIS version for EDB Advanced Server version 13.0: - - ```text - yum -y install edb-as13-postgis3 - ``` - - On Rocky Linux 8 or AlmaLinux 8, to install the latest version of PostGIS version for EDB Advanced Server version 13.0: - - ```text - dnf -y install edb-as13-postgis3 - ``` - - On CentOS 7, to install the latest version of PostGIS for EDB Advanced Server versions older than 13.0: - - ```text - yum -y install edb-as-postgis - ``` - - where <xx> denotes the Advanced Server version older than 13.0. - - On CentOS 7, to install PostGIS older versions (for example PostGIS 3.0.2) for EDB Advanced Server version 13.0: - - ```text - yum -y install edb-as13-postgis3-3.0.2 - ``` - - On CentOS 7, to install older PostGIS versions for EDB Advanced Server versions older than 13.0: - - ```text - yum -y install edb-as-postgis- - ``` - - where <xx> is the Advanced Server version older than 13.0 and <y.y.y> is the older PostGIS version. - - For example, to install PostGIS 2.5.4 on Advanced Server 12: - - ```text - yum -y install edb-as12-postgis-2.5.4 - ``` - - When you install an RPM package signed by a source that is not recognized by your system, yum may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter `y` and press `Return` to continue. - - !!! Note - After installing PostGIS with a package manager, you must manually create a template database and the required PostGIS extension. +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. +``` diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx index cfa8b1d65a3..99c4a2c9054 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx @@ -1,91 +1,49 @@ --- -title: "Installing PostGIS on RHEL 7/OL 7 x86" -navTitle: "RHEL 7/OL 7" +navTitle: RHEL 7 or OL 7 +title: Installing PostGIS on RHEL 7 or OL 7 x86_64 --- -Before installing the repository configuration, you must have credentials that allow access to the EnterpriseDB repository. For information about requesting credentials, visit the [EDB website](https://www.enterprisedb.com/user). +Before you begin the installation process, log in as superuser. -Perform the following steps to install PostGIS on an RHEL 7 PPC64LE Host. +```shell +# To log in as a superuser: +sudo su - +``` -1. Create the Advance Toolchain repository configuration file: +## Set up the repository - ```text - rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). - cat > /etc/yum.repos.d/advance-toolchain.repo <' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo -2. To create the EnterpriseDB repository configuration file, assume superuser privileges and invoke the following command: +# Install the EPEL repository: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm - ```text - yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` +# Enable additional repositories to resolve dependencies: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" +``` -3. Replace the `USERNAME:PASSWORD` variable with the username and password of a registered EnterpriseDB user: +## Install the package - ```text - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` +```shell +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. -4. Before installing PostGIS, you need to install the Extra Packages for Enterprise Linux (EPEL) release package: +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 - ```text - yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm - ``` - -5. On RHEL 7, enable the `optional, extras`, and `HA` repositories to satisfy package dependencies: - - ```text - subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - ``` - -6. Invoke the following command to install PostGIS: - - To install the latest version of PostGIS version for EDB Advanced Server version 13.0: - - ```text - yum -y install edb-as13-postgis3 - ``` - - To install the latest version of PostGIS for EDB Advanced Server version older than 13.0: - - ```text - yum -y install edb-as-postgis - ``` - - where <xx> denotes the Advanced Server version older than 13.0. - - To install PostGIS older versions (for example PostGIS 3.0.2) for EDB Advanced Server version 13.0: - - ```text - yum -y install edb-as13-postgis3-3.0.2 - ``` - - To install older PostGIS versions for EDB Advanced Server versions older than 13.0: - - ```text - yum -y install edb-as-postgis- - ``` - - where <xx> is the Advanced Server version older than 13.0 and <y.y.y> is the older PostGIS version. - - For example, to install PostGIS 2.5.4 on EDB Advanced Server version 12: - - ```text - yum -y install edb-as12-postgis-2.5.4 - ``` - - When you install an RPM package signed by a source that is not recognized by your system, yum may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter `y` and press `Return` to continue. - - !!! Note - After installing PostGIS with a package manager, you must manually create a template database and the required PostGIS extension. +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. +``` diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel8_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel8_x86.mdx deleted file mode 100644 index 1348ab1f857..00000000000 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel8_x86.mdx +++ /dev/null @@ -1,111 +0,0 @@ ---- -title: "Installing PostGIS on RHEL 8/OL 8 x86" -navTitle: "RHEL 8/OL 8" ---- - -Before installing the repository configuration file, you must have credentials that allow access to the EnterpriseDB repository. For information about requesting credentials, visit the [EDB website](https://www.enterprisedb.com/user). - -Perform the following steps to install PostGIS on an RHEL Host: - -1. To create the repository configuration file, assume superuser privileges, and invoke the platform-specific command: - - On RHEL 7: - - ```text - yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` - - On RHEL 8: - - ```text - dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` - -2. Replace the `USERNAME:PASSWORD` variable with the username and password of a registered EnterpriseDB user: - - ```text - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` - -3. Before installing PostGIS, you need to install the Extra Packages for Enterprise Linux (EPEL) release package: - - On RHEL 7: - - ```text - yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm - ``` - - On RHEL 8: - - ```text - dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm - ``` - -4. Enable additional platform-specific repositories: - - On RHEL 7, enable the `optional, extras`, and `HA` repositories to satisfy package dependencies: - - ```text - subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - ``` - - On RHEL 8, enable the `codeready-builder-for-rhel-8-*-rpms` repository to satisfy EPEL packages dependency: - - ```text - ARCH=$( /bin/arch ) - - subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - ``` - -5. On RHEL 8 platform, disable the built-in PostgreSQL module: - - ```text - dnf -qy module disable postgresql - ``` - -6. Invoke the platform-specific command to install `PostGIS`: - - On RHEL 7, to install the latest version of PostGIS for EDB Advanced Server version 13.0: - - ```text - yum -y install edb-as13-postgis3 - ``` - - On RHEL 8, to install the latest version of PostGIS for EDB Advanced Server version 13.0: - - ```text - dnf -y install edb-as13-postgis3 - ``` - - On RHEL 7, to install the latest version of PostGIS for EDB Advanced Server version older than 13.0: - - ```text - yum -y install edb-as-postgis - ``` - - where <xx> denotes the Advanced Server version older than 13.0. - - On RHEL 7, to install PostGIS older versions (for example PostGIS 3.0.2) for EDB Advanced Server version 13.0: - - ```text - yum -y install edb-as13-postgis3-3.0.2 - ``` - - On RHEL 7, to install older PostGIS versions for EDB Advanced Server version older than 13.0: - - ```text - yum -y install edb-as-postgis- - ``` - - where <xx> is the Advanced Server version older than 13.0 and <y.y.y> is the older PostGIS version. - - For example, to install PostGIS 2.5.4 on EDB Advanced Server version 12: - - ```text - yum -y install edb-as12-postgis-2.5.4 - ``` - - When you install an RPM package signed by a source that is not recognized by your system, yum may ask for your permission to import the key to your local server. If prompted, and you are satisfied that the packages come from a trustworthy source, enter `y` and press `Return` to continue. - - !!! Note - After installing PostGIS with a package manager, you must manually create a template database and the required PostGIS extension. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx new file mode 100644 index 00000000000..1d58fdde708 --- /dev/null +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx @@ -0,0 +1,52 @@ +--- +navTitle: RHEL 8 or OL 8 +title: Installing PostGIS on RHEL 8 or OL 8 x86_64 +--- + +Before you begin the installation process, log in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +## Set up the repository + +Setting up the repository is a one-time task. If you have already set up your repository, you do not need to perform this step. If you do need to set up the repository, you must register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# Replace '' and '' below with +# your username and password for the EDB repository: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install the EPEL repository: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm + +# Enable additional repositories to resolve dependencies: +ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" + +# Disable the built-in PostgreSQL module: +dnf -qy module disable postgresql +``` + +## Install the package + +```shell +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. +``` diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx index bab5c7e688d..31a0e93b5c4 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx @@ -39,7 +39,18 @@ zypper refresh ## Install the package ```shell -zypper -n install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx index 8e05eaec509..c0c4007a16c 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx @@ -38,7 +38,18 @@ zypper refresh ## Install the package ```shell -zypper -n install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx index 3715da38e95..15e30a0d26b 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx @@ -36,7 +36,18 @@ apt-get update ## Install the package ```shell -apt-get install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx index 77af1eec265..b9f82827f18 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx @@ -36,7 +36,18 @@ apt-get update ## Install the package ```shell -apt-get install edb-as14-postgis3 +# If you are using EDB Postgres Advanced Server 13 or 14, use this format +# of the command: +apt-get install edb-as14-postgis32 +# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` +# with `13` if that is the version of EDB Postgres Advanced Server you +# are using. + +# If you are using EDB Postgres Advanced Server 11 or 12, use this format +# of the command: +apt-get install edb-as12-postgis-3.2 + +# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` +# with `11` if that is the version of EDB Postgres Advanced Server you +# are using. ``` - -Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. From e9064e2f84d3435e89912bf77544752291df60c8 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 3 Aug 2022 11:05:52 -0400 Subject: [PATCH 17/30] Undo some select changes from previous commits, including changes to deploy file --- install_template/deploy.mjs | 8 -------- .../ibm_power_ppc64le/postgis_rhel8_ppcle.mdx | 17 +++-------------- .../ibm_power_ppc64le/postgis_sles12_ppcle.mdx | 18 ++++-------------- .../ibm_power_ppc64le/postgis_sles15_ppcle.mdx | 17 +++-------------- .../installing_on_linux/index.mdx | 2 +- .../x86_amd64/postgis_deb10_x86.mdx | 17 +++-------------- .../x86_amd64/postgis_other_linux8_x86.mdx | 17 +++-------------- .../x86_amd64/postgis_rhel7_x86.mdx | 17 +++-------------- .../x86_amd64/postgis_rhel_8_x86.mdx | 17 +++-------------- .../x86_amd64/postgis_sles12_x86.mdx | 17 +++-------------- .../x86_amd64/postgis_sles15_x86.mdx | 17 +++-------------- .../x86_amd64/postgis_ubuntu18_x86.mdx | 17 +++-------------- .../x86_amd64/postgis_ubuntu20_x86.mdx | 17 +++-------------- 13 files changed, 35 insertions(+), 163 deletions(-) diff --git a/install_template/deploy.mjs b/install_template/deploy.mjs index 87e6ef485af..7df16d5f103 100644 --- a/install_template/deploy.mjs +++ b/install_template/deploy.mjs @@ -302,14 +302,6 @@ const moveDoc = async (product, platform, version) => { (ctx) => `pem/8/installing_pem_agent/installing_on_linux/${fmtArchPath(ctx)}/pem_agent_ubuntu18_${fmtArchFilename(ctx)}.mdx`), when({product: {name: "Postgres Enterprise Manager agent", version: 8}, platform: {name: "Ubuntu 20.04"}}, (ctx) => `pem/8/installing_pem_agent/installing_on_linux/${fmtArchPath(ctx)}/pem_agent_ubuntu20_${fmtArchFilename(ctx)}.mdx`), - when({product: {name: "PostGIS", version: 3.1}, platform: {name: "AlmaLinux 8 or Rocky Linux 8"}}, - (ctx) => `postgis/3.1/01a_installing_postgis/installing_on_linux/${fmtArchPath(ctx)}/postgis_other_linux8_${fmtArchFilename(ctx)}.mdx`), - when({product: {name: "PostGIS", version: 3.1}, platform: {name: "RHEL 7 or OL 7"}}, - (ctx) => `postgis/3.1/01a_installing_postgis/installing_on_linux/${fmtArchPath(ctx)}/postgis_rhel7_${fmtArchFilename(ctx)}.mdx`), - when({product: {name: "PostGIS", version: 3.1}, platform: {name: "RHEL 8 or OL 8"}}, - (ctx) => `postgis/3.1/01a_installing_postgis/installing_on_linux/${fmtArchPath(ctx)}/postgis_rhel_8_${fmtArchFilename(ctx)}.mdx`), - when({product: {name: "PostGIS", version: 3.1}, platform: {name: "RHEL 8"}}, - (ctx) => `postgis/3.1/01a_installing_postgis/installing_on_linux/${fmtArchPath(ctx)}/postgis_rhel8_${fmtArchFilename(ctx)}.mdx`), when({product: {name: "PostGIS", version: 3.1}, platform: {name: "SLES 12"}}, (ctx) => `postgis/3.1/01a_installing_postgis/installing_on_linux/${fmtArchPath(ctx)}/postgis_sles12_${fmtArchFilename(ctx)}.mdx`), when({product: {name: "PostGIS", version: 3.1}, platform: {name: "SLES 15"}}, diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx index ced3cdf568a..d3cf524dffe 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_rhel8_ppcle.mdx @@ -38,18 +38,7 @@ dnf -qy module disable postgresql ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +dnf -y install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. \ No newline at end of file diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx index be8eab5bafb..72f5da401b5 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles12_ppcle.mdx @@ -39,18 +39,8 @@ zypper refresh ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +dnf -y install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. + diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx index 290a064071e..e71f397da10 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/ibm_power_ppc64le/postgis_sles15_ppcle.mdx @@ -38,18 +38,7 @@ zypper refresh ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +dnf -y install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. \ No newline at end of file diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/index.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/index.mdx index 14f8ae8f4e8..e9462da9117 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/index.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/index.mdx @@ -12,7 +12,7 @@ To install PostGIS, you must have credentials that allow access to the Enterpris For platform-specific install instructions, see: - Linux x86-64 (amd64): - - [RHEL 8/OL 8](x86_amd64/postgis_rhel8_x86) + - [RHEL 8/OL 8](x86_amd64/postgis_rhel_8_x86) - [Rocky Linux 8/AlmaLinux 8](x86_amd64/postgis_other_linux8_x86) - [RHEL 7/OL 7](x86_amd64/postgis_rhel7_x86) diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx index d96182edfdc..fca9f8d085f 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_deb10_x86.mdx @@ -36,18 +36,7 @@ apt-get update ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +dnf -y install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. \ No newline at end of file diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx index 03aae31a9a6..3aac664e045 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_other_linux8_x86.mdx @@ -35,18 +35,7 @@ dnf -qy module disable postgresql ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +dnf -y install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx index 99c4a2c9054..affe64d3a9f 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86.mdx @@ -32,18 +32,7 @@ subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extr ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +dnf -y install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. \ No newline at end of file diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx index 1d58fdde708..4dec2109cae 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel_8_x86.mdx @@ -35,18 +35,7 @@ dnf -qy module disable postgresql ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +dnf -y install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. \ No newline at end of file diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx index 31a0e93b5c4..c35970ebb5e 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles12_x86.mdx @@ -39,18 +39,7 @@ zypper refresh ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +dnf -y install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. \ No newline at end of file diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx index c0c4007a16c..23b0813f4a7 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_sles15_x86.mdx @@ -38,18 +38,7 @@ zypper refresh ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +dnf -y install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. \ No newline at end of file diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx index 15e30a0d26b..88d39ea49e1 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu18_x86.mdx @@ -36,18 +36,7 @@ apt-get update ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +dnf -y install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. \ No newline at end of file diff --git a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx index b9f82827f18..f89701c3f7d 100644 --- a/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx +++ b/product_docs/docs/postgis/3.1/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_ubuntu20_x86.mdx @@ -36,18 +36,7 @@ apt-get update ## Install the package ```shell -# If you are using EDB Postgres Advanced Server 13 or 14, use this format -# of the command: -apt-get install edb-as14-postgis32 -# Where `14` is the version of EDB Postgres Advanced Server. Replace `14` -# with `13` if that is the version of EDB Postgres Advanced Server you -# are using. - -# If you are using EDB Postgres Advanced Server 11 or 12, use this format -# of the command: -apt-get install edb-as12-postgis-3.2 - -# Where `12` is the version of EDB Postgres Advanced Server. Replace `12` -# with `11` if that is the version of EDB Postgres Advanced Server you -# are using. +dnf -y install edb-as14-postgis3 ``` + +Where `14` is the version of EDB Postgres Advanced Server. Replace `14` with the version of EDB Postgres Advanced Server you are using. \ No newline at end of file From 59d03909c63d7bf9edd68b09788f6fe4dd53553e Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Thu, 4 Aug 2022 06:17:05 -0400 Subject: [PATCH 18/30] EPRS: adding upgrade path info --- product_docs/docs/eprs/7/eprs_rel_notes/index.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/product_docs/docs/eprs/7/eprs_rel_notes/index.mdx b/product_docs/docs/eprs/7/eprs_rel_notes/index.mdx index 4db72dfdbec..2c926a04cdd 100644 --- a/product_docs/docs/eprs/7/eprs_rel_notes/index.mdx +++ b/product_docs/docs/eprs/7/eprs_rel_notes/index.mdx @@ -14,3 +14,11 @@ The Replication Server documentation describes the latest version including mino | [7.1.0](18_eprs_rel_notes_7.1.0) | 2022 Mar 21 | | [7.0.1](19_eprs_rel_notes_7.0.1) | 2022 Mar 03 | | [7.0.0](20_eprs_rel_notes_7.0.0) | 2021 Dec 01 | + +## Supported upgrade paths + +You can only upgrade to Replication Server 7.x from 6.2.15 or later 6.2.x point version. If you are running a version earlier than 6.2.15, you need to first upgrade to 6.2.15 or later 6.2.x point version before upgrading to 7.x. + +!!!note + Version 7.x provides a non-breaking upgrade path for existing 6.2.x based cluster deployments; however, we strongly recommended that you verify the upgrade in a staging or nonproduction environment before applying the upgrade in a production environment. + From 8b2d4abd5d32167f26a7e2008f2625583dbd6e43 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Thu, 4 Aug 2022 17:18:44 +0530 Subject: [PATCH 19/30] replaced project_name.sql with sql_file_name --- .../03_mp_schema_migration.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx index 1551574df2f..3164f16b214 100644 --- a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx +++ b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx @@ -51,13 +51,13 @@ You can migrate schemas to an existing on-premises EDB Postgres Advanced Server - On CLI: ```text - \i c:\users\...\.sql + \i c:\users\...\.sql ``` - On cmd/shell: ```text - edb-psql -f .sql + edb-psql -f .sql ``` !!! Note @@ -95,7 +95,7 @@ You can migrate schemas to an existing on-premises EDB Postgres Advanced Server edb-psql edb create database ; \connect - \i .sql + \i .sql ``` !!! Note @@ -140,13 +140,13 @@ Migrate schemas to a new on-premises EDB Postgres Advanced Server on Windows. - On CLI ```text - \i c:\users\...\.sql + \i c:\users\...\.sql ``` - On cmd/shell ```text - edb-psql -f .sql + edb-psql -f .sql ``` !!! Note @@ -189,7 +189,7 @@ Migrate schemas to an on-premises EDB Postgres Advanced Server on Linux. edb-psql edb create database ; \connect - \i .sql + \i .sql ``` !!! Note From 2ee97c67921ce3396a5386f8d2a229f385c06556 Mon Sep 17 00:00:00 2001 From: Moiz Nalwalla Date: Thu, 4 Aug 2022 17:55:58 +0530 Subject: [PATCH 20/30] Added a section for evaluating an assessment report --- .../02_mp_schema_assessment.mdx | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx index 0814ea77ac7..89396ca964f 100644 --- a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx +++ b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx @@ -85,3 +85,41 @@ You can optionally select **Generate PDF** to save the report in PDF format. You Migration Portal doesn't assess sensitive PL/SQL source code hidden in Oracle wrapped objects. These wrapped objects aren't included in the assessed objects count, and therefore the true value of compatibility percentage might be different from the value calculated in the assessment report. See the note in [Performing a schema extraction](01_mp_schema_extraction#wrapped-objects) for more information about wrapped objects. + +## Evaluate an assessment report + +The assessment report presents data and information about the compatibility of objects and features in your schemas and the overall project. + +- Object: A CREATE or ALTER TABLE statement that adds a constraint in the uploaded DDL. +- Feature: An Oracle clause or a construct that is used like an object. A feature can be used multiple times in one or more objects. + +### Object compatibility + +An object is compatible if it successfully executes on a target database. In the assessment report, you see a summary of feature occurrences based on the following levels of compatibility: + +| Object compatibility level | Description | +|----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| Passed | Can be executed on a target database without applying any repair handlers. | +| System repaired | Can be executed successfully on a target database after applying one or more repair handlers. Repair handlers use transformation logic to automatically make DDLs compatible with EDB Postgres Advanced Server. Ensure that you carefully review the descriptions in the **Repair Handler applied** section of the report in case of an unexpected impact on the behavior of the object. | +| User repaired | Can be reassessed and manually repaired by the user on the target database. | +| Failed objects | Can not be executed successfully on the target database. | + +!!! Note + The object analysis presented is based on the existing state of the objects in the target DDL, which might change if the objects are updated and reassessed. + +### Feature compatibility + +Some features might not be natively available in EDB Postgres Advanced Server. The report presents a summary of feature occurrences and compatibility levels. + +| Feature compatibility level | Workaround status | +|----------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------| +| Compatible features | - | +| Features with existing available workaround | Exists | +| Features with reasonable effort new workaround | Possible | +| Features with no workaround or requiring further investigation | None / NeedsInvestigation. For features with no workaround, it might be possible to address the feature incompatibility through application-level changes. | + +#### Limitations +- The complexity level and factors reported are based on the Oracle compatibility features available in EDB Postgres Advanced Server (EPAS) version 14. Suppose a previous version of EPAS is targeted for this migration project. In that case, the project may include features not implemented in the selected version, resulting in a different feature assessment. +For accurate assessments of schema migrations to EPAS version 13 or earlier, contact EDB to see how the EDB Professional Services team can help. +- Analysis for features is only generated and available for new projects created after the release of Migration Portal 4.1. +- Complexity assessment and feature analysis is currently only based on the uploaded source DDL and does not get updated after a user has made changes to their target DDL objects and performed a reassessment. (This feature is planned for a future release.) From c70e1cc6ef5d1fccddc1c99eac1190469c39260f Mon Sep 17 00:00:00 2001 From: mlewandowski-edb <63003848+mlewandowski-edb@users.noreply.github.com> Date: Thu, 4 Aug 2022 09:24:17 -0400 Subject: [PATCH 21/30] Updates to descriptions of object compatibility categories Update the descriptions in the table that lists and describes the categories of object compatibility. --- .../04_mp_migrating_database/02_mp_schema_assessment.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx index 89396ca964f..6db4a2282f7 100644 --- a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx +++ b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx @@ -99,10 +99,10 @@ An object is compatible if it successfully executes on a target database. In the | Object compatibility level | Description | |----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| Passed | Can be executed on a target database without applying any repair handlers. | -| System repaired | Can be executed successfully on a target database after applying one or more repair handlers. Repair handlers use transformation logic to automatically make DDLs compatible with EDB Postgres Advanced Server. Ensure that you carefully review the descriptions in the **Repair Handler applied** section of the report in case of an unexpected impact on the behavior of the object. | -| User repaired | Can be reassessed and manually repaired by the user on the target database. | -| Failed objects | Can not be executed successfully on the target database. | +| Passed | Executes on a target database without applying any repair handlers. | +| System repaired | Executes successfully on a target database after applying one or more repair handlers. Repair handlers use transformation logic to automatically make DDLs compatible with EDB Postgres Advanced Server. Ensure that you carefully review the descriptions in the **Repair Handler applied** section of the report in case of an unexpected impact on the behavior of the object. | +| User repaired | Executes successfully on a target database after being manually repaired and reassessed by the user. | +| Failed objects | Does not execute successfully on the target database. | !!! Note The object analysis presented is based on the existing state of the objects in the target DDL, which might change if the objects are updated and reassessed. From b9d764e7532cc4445a791f47c5b41fd732d4db55 Mon Sep 17 00:00:00 2001 From: mlewandowski-edb <63003848+mlewandowski-edb@users.noreply.github.com> Date: Thu, 4 Aug 2022 09:26:33 -0400 Subject: [PATCH 22/30] Changed wording of definition of a feature Updated the wording of the definition of what a feature is --- .../4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx index 6db4a2282f7..74a4fa95173 100644 --- a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx +++ b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx @@ -91,7 +91,7 @@ See the note in [Performing a schema extraction](01_mp_schema_extraction#wrapped The assessment report presents data and information about the compatibility of objects and features in your schemas and the overall project. - Object: A CREATE or ALTER TABLE statement that adds a constraint in the uploaded DDL. -- Feature: An Oracle clause or a construct that is used like an object. A feature can be used multiple times in one or more objects. +- Feature: An Oracle clause or a construct that is used in the creation of an object. A feature can be used multiple times in one or more objects. ### Object compatibility From 43b3fdb551fffc8fbf7b40138177c780d4407ed1 Mon Sep 17 00:00:00 2001 From: mlewandowski-edb <63003848+mlewandowski-edb@users.noreply.github.com> Date: Thu, 4 Aug 2022 09:33:32 -0400 Subject: [PATCH 23/30] Updated lead in text for object compatibility categories --- .../4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx index 74a4fa95173..03ec91c2da8 100644 --- a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx +++ b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx @@ -95,7 +95,7 @@ The assessment report presents data and information about the compatibility of o ### Object compatibility -An object is compatible if it successfully executes on a target database. In the assessment report, you see a summary of feature occurrences based on the following levels of compatibility: +An object is compatible if it successfully executes on a target database. In the assessment report, you see a summary of object compatibility based on the following categories: | Object compatibility level | Description | |----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| From ecb07511e718e15564814d58c0df2769f359eb24 Mon Sep 17 00:00:00 2001 From: Dee Dee Rothery <83650384+drothery-edb@users.noreply.github.com> Date: Thu, 4 Aug 2022 09:49:15 -0400 Subject: [PATCH 24/30] Update to object definition --- .../4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx index 03ec91c2da8..215461fe1f9 100644 --- a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx +++ b/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx @@ -90,7 +90,7 @@ See the note in [Performing a schema extraction](01_mp_schema_extraction#wrapped The assessment report presents data and information about the compatibility of objects and features in your schemas and the overall project. -- Object: A CREATE or ALTER TABLE statement that adds a constraint in the uploaded DDL. +- Object: Migration Portal generates an object for all CREATE statements it processes. In addition, it generates an object for each ALTER TABLE statement that adds a constraint in the uploaded DDL. - Feature: An Oracle clause or a construct that is used in the creation of an object. A feature can be used multiple times in one or more objects. ### Object compatibility From e8ecc9ad3cf3417587f4638d5a87b9fc01153a76 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Thu, 4 Aug 2022 11:46:34 -0400 Subject: [PATCH 25/30] changed version number to 4, added shell for rel notes, and redirect --- .../01_mp_release_notes/10_mp_4.0_rel_notes.mdx | 0 .../{4.0 => 4}/01_mp_release_notes/index.mdx | 1 + .../4/01_mp_release_notes/mp_4.1_rel_notes.mdx | 10 ++++++++++ .../{4.0 => 4}/02_supported_platforms.mdx | 0 .../03_mp_using_portal/01_mp_overview_home.mdx | 0 .../03_mp_using_portal/02_mp_overview_project.mdx | 0 .../03_mp_using_portal/03_mp_quick_start.mdx | 0 .../{4.0 => 4}/03_mp_using_portal/index.mdx | 0 .../01_data_pump_utility.mdx | 0 .../01_mp_schema_extraction/images/1.png | 0 .../images/162980660731198462.textClipping | Bin .../01_mp_schema_extraction/images/3.png | 0 .../01_mp_schema_extraction/images/EDB_logo.png | 0 .../images/Migrate_Cloud_Finish.png | 0 .../01_mp_schema_extraction/images/biganimal.png | 0 .../01_mp_schema_extraction/images/edb_logo.svg | 0 .../images/edb_logo_full_color.svg | 0 .../migrate_cloud_select_platform_updated.png | 0 .../images/mp_enterprisedb_website.png | 0 .../images/mp_migrate_cloud_connection.png | 0 .../images/mp_migrate_cloud_connection_complete.png | 0 ..._migrate_cloud_connection_complete_updatated.png | 0 .../images/mp_migrate_cloud_connection_updated.png | 0 .../images/mp_migrate_cloud_finish_1.png | 0 .../mp_migrate_cloud_launch_cluster_updated.png | 0 .../images/mp_migrate_cloud_select_platform.png | 0 .../images/mp_migrate_cloud_success_updated.png | 0 .../images/mp_new_filters.png | 0 .../images/mp_overview_home.png | 0 .../images/mp_overview_home_updated.png | 0 .../images/mp_overview_project_kb.png | 0 .../images/mp_overview_project_numbered.png | 0 .../images/mp_overview_wiki.png | 0 .../images/mp_overview_wiki_1.png | 0 .../images/mp_overview_wiki_2.png | 0 .../images/mp_overview_wiki_5.png | 0 .../images/mp_schema_assessment_analysis_result.png | 0 .../images/mp_schema_assessment_errors.png | 0 .../images/mp_schema_assessment_incompatible.png | 0 .../images/mp_schema_assessment_new_project.png | 0 .../images/mp_schema_assessment_new_project_1.png | 0 .../images/mp_schema_assessment_new_project_2.png | 0 .../images/mp_schema_assessment_new_project_4.png | 0 .../mp_schema_assessment_new_project_4_edited.png | 0 .../images/mp_schema_assessment_new_project_5.png | 0 .../mp_schema_assessment_new_project_edited.png | 0 .../images/mp_schema_assessment_schema_report.png | 0 .../mp_schema_assessment_schema_report_pdf.png | 0 .../images/mp_schema_assessment_select_schema.png | 0 .../images/mp_schema_assessment_verifying_ddl.png | 0 .../images/mp_schema_assessment_workaround.png | 0 .../images/mp_schema_dependent_objects.png | 0 .../images/mp_schema_extraction_list.png | 0 .../images/mp_schema_extraction_paths.png | 0 .../images/mp_schema_extraction_target.png | 0 .../images/mp_schema_mig_cloud_cluster.png | 0 .../mp_schema_mig_cloud_cluster_connection_page.png | 0 .../mp_schema_mig_cloud_cluster_connection_test.png | 0 .../images/mp_schema_mig_cloud_epas_mig_success.png | 0 .../mp_schema_mig_cloud_epas_schemas_selection.png | 0 .../images/mp_schema_mig_cloud_option.png | 0 .../images/mp_schema_mig_exist_epas_contact_us.png | 0 .../images/mp_schema_mig_exist_epas_download.png | 0 .../images/mp_schema_mig_exist_epas_mig_success.png | 0 .../mp_schema_mig_exist_epas_schemas_selection.png | 0 ...chema_mig_exist_epas_schemas_selection_linux.png | 0 .../images/mp_schema_mig_exist_epas_windows.png | 0 .../images/mp_schema_mig_exist_linux.png | 0 .../images/mp_schema_mig_new_epas_download.png | 0 .../images/mp_schema_mig_new_epas_import.png | 0 .../images/mp_schema_mig_new_epas_linux.png | 0 .../images/mp_schema_mig_new_epas_linux_guide.png | 0 .../images/mp_schema_mig_new_epas_linux_import.png | 0 .../images/mp_schema_mig_new_epas_linux_repo.png | 0 .../images/mp_schema_mig_new_epas_mig_success..png | 0 .../images/mp_schema_mig_new_epas_mig_success.png | 0 ...p_schema_mig_new_epas_schemas_selection copy.png | 0 .../mp_schema_mig_new_epas_schemas_selection.png | 0 .../images/mp_schema_mig_new_epas_windows.png | 0 .../images/mp_schema_mig_new_epas_windows_guide.png | 0 .../mp_schema_mig_new_epas_windows_import.png | 0 .../mp_schema_mig_new_epas_windows_installer.png | 0 .../images/mp_schema_migration_cds.png | 0 .../mp_schema_migration_connection_details.png | 0 .../mp_schema_migration_connection_successful.png | 0 .../images/mp_schema_migration_deployed.png | 0 .../mp_schema_migration_download_file_button.png | 0 .../mp_schema_migration_download_file_option.png | 0 .../images/mp_schema_migration_existing_epas.png | 0 .../images/mp_schema_migration_home.png | 0 .../images/mp_schema_migration_home_cloud.png | 0 .../images/mp_schema_migration_home_new.png | 0 .../mp_schema_migration_select_schemas (copy).png | 0 .../images/mp_schema_migration_select_schemas.png | 0 .../images/mp_using_portal.png | 0 .../images/mp_using_portal_accessing.png | 0 .../mp_whats_new_assessment_report_rh_counts.png | 0 .../images/mp_whats_new_branding_updates.png | 0 .../images/mp_whats_new_common_failures.png | 0 .../mp_whats_new_compatibility_guage_color.png | 0 .../images/mp_whats_new_csv.png | 0 .../images/mp_whats_new_objects_repaired_by_me.png | 0 .../images/mp_whats_new_prepopulated_email.png | 0 .../images/mp_whats_new_warning_sign.png | 0 .../images/project page overview.png | 0 .../images/schema_object_selection.png | 0 .../images/select-operating-system-linux.png | 0 .../01_mp_schema_extraction/images/test.png | 0 .../images/whats_new_new_look.png | 0 .../01_mp_schema_extraction/index.mdx | 0 .../02_mp_schema_assessment.mdx | 0 .../03_mp_schema_migration.mdx | 0 .../04_mp_data_migration.mdx | 0 .../{4.0 => 4}/04_mp_migrating_database/index.mdx | 0 .../{4.0 => 4}/05_mp_advanced_data_migration.mdx | 0 .../docs/migration_portal/{4.0 => 4}/images/1.png | 0 .../images/162980660731198462.textClipping | Bin .../docs/migration_portal/{4.0 => 4}/images/3.png | 0 .../migration_portal/{4.0 => 4}/images/EDB_logo.png | 0 .../{4.0 => 4}/images/Migrate_Cloud_Finish.png | 0 .../{4.0 => 4}/images/biganimal.png | 0 .../migration_portal/{4.0 => 4}/images/edb_logo.svg | 0 .../{4.0 => 4}/images/edb_logo_full_color.svg | 0 .../migrate_cloud_select_platform_updated.png | 0 .../{4.0 => 4}/images/mp_enterprisedb_website.png | 0 .../images/mp_migrate_cloud_connection.png | 0 .../images/mp_migrate_cloud_connection_complete.png | 0 ..._migrate_cloud_connection_complete_updatated.png | 0 .../images/mp_migrate_cloud_connection_updated.png | 0 .../{4.0 => 4}/images/mp_migrate_cloud_finish_1.png | 0 .../mp_migrate_cloud_launch_cluster_updated.png | 0 .../images/mp_migrate_cloud_select_platform.png | 0 .../images/mp_migrate_cloud_success_updated.png | 0 .../{4.0 => 4}/images/mp_new_filters.png | 0 .../{4.0 => 4}/images/mp_overview_home.png | 0 .../{4.0 => 4}/images/mp_overview_home_updated.png | 0 .../{4.0 => 4}/images/mp_overview_project_kb.png | 0 .../images/mp_overview_project_numbered.png | 0 .../{4.0 => 4}/images/mp_overview_wiki.png | 0 .../{4.0 => 4}/images/mp_overview_wiki_1.png | 0 .../{4.0 => 4}/images/mp_overview_wiki_2.png | 0 .../{4.0 => 4}/images/mp_overview_wiki_5.png | 0 .../images/mp_schema_assessment_analysis_result.png | 0 .../images/mp_schema_assessment_errors.png | 0 .../images/mp_schema_assessment_incompatible.png | 0 .../images/mp_schema_assessment_new_project.png | 0 .../images/mp_schema_assessment_new_project_1.png | 0 .../images/mp_schema_assessment_new_project_2.png | 0 .../images/mp_schema_assessment_new_project_4.png | 0 .../mp_schema_assessment_new_project_4_edited.png | 0 .../images/mp_schema_assessment_new_project_5.png | 0 .../mp_schema_assessment_new_project_edited.png | 0 .../images/mp_schema_assessment_schema_report.png | 0 .../mp_schema_assessment_schema_report_pdf.png | 0 .../images/mp_schema_assessment_select_schema.png | 0 .../images/mp_schema_assessment_verifying_ddl.png | 0 .../images/mp_schema_assessment_workaround.png | 0 .../images/mp_schema_dependent_objects.png | 0 .../{4.0 => 4}/images/mp_schema_extraction_list.png | 0 .../images/mp_schema_extraction_paths.png | 0 .../images/mp_schema_extraction_target.png | 0 .../images/mp_schema_mig_cloud_cluster.png | 0 .../mp_schema_mig_cloud_cluster_connection_page.png | 0 .../mp_schema_mig_cloud_cluster_connection_test.png | 0 .../images/mp_schema_mig_cloud_epas_mig_success.png | 0 .../mp_schema_mig_cloud_epas_schemas_selection.png | 0 .../images/mp_schema_mig_cloud_option.png | 0 .../images/mp_schema_mig_exist_epas_contact_us.png | 0 .../images/mp_schema_mig_exist_epas_download.png | 0 .../images/mp_schema_mig_exist_epas_mig_success.png | 0 .../mp_schema_mig_exist_epas_schemas_selection.png | 0 ...chema_mig_exist_epas_schemas_selection_linux.png | 0 .../images/mp_schema_mig_exist_epas_windows.png | 0 .../{4.0 => 4}/images/mp_schema_mig_exist_linux.png | 0 .../images/mp_schema_mig_new_epas_download.png | 0 .../images/mp_schema_mig_new_epas_import.png | 0 .../images/mp_schema_mig_new_epas_linux.png | 0 .../images/mp_schema_mig_new_epas_linux_guide.png | 0 .../images/mp_schema_mig_new_epas_linux_import.png | 0 .../images/mp_schema_mig_new_epas_linux_repo.png | 0 .../images/mp_schema_mig_new_epas_mig_success..png | 0 .../images/mp_schema_mig_new_epas_mig_success.png | 0 ...p_schema_mig_new_epas_schemas_selection copy.png | 0 .../mp_schema_mig_new_epas_schemas_selection.png | 0 .../images/mp_schema_mig_new_epas_windows.png | 0 .../images/mp_schema_mig_new_epas_windows_guide.png | 0 .../mp_schema_mig_new_epas_windows_import.png | 0 .../mp_schema_mig_new_epas_windows_installer.png | 0 .../{4.0 => 4}/images/mp_schema_migration_cds.png | 0 .../mp_schema_migration_connection_details.png | 0 .../mp_schema_migration_connection_successful.png | 0 .../images/mp_schema_migration_deployed.png | 0 .../mp_schema_migration_download_file_button.png | 0 .../mp_schema_migration_download_file_option.png | 0 .../images/mp_schema_migration_existing_epas.png | 0 .../{4.0 => 4}/images/mp_schema_migration_home.png | 0 .../images/mp_schema_migration_home_cloud.png | 0 .../images/mp_schema_migration_home_new.png | 0 .../mp_schema_migration_select_schemas (copy).png | 0 .../images/mp_schema_migration_select_schemas.png | 0 .../{4.0 => 4}/images/mp_using_portal.png | 0 .../{4.0 => 4}/images/mp_using_portal_accessing.png | 0 .../mp_whats_new_assessment_report_rh_counts.png | 0 .../images/mp_whats_new_branding_updates.png | 0 .../images/mp_whats_new_common_failures.png | 0 .../mp_whats_new_compatibility_guage_color.png | 0 .../{4.0 => 4}/images/mp_whats_new_csv.png | 0 .../images/mp_whats_new_objects_repaired_by_me.png | 0 .../images/mp_whats_new_prepopulated_email.png | 0 .../{4.0 => 4}/images/mp_whats_new_warning_sign.png | 0 .../{4.0 => 4}/images/project page overview.png | 0 .../images/select-operating-system-linux.png | 0 .../migration_portal/{4.0 => 4}/images/test.png | 0 .../{4.0 => 4}/images/whats_new_new_look.png | 0 .../docs/migration_portal/{4.0 => 4}/index.mdx | 0 static/_redirects | 1 + 216 files changed, 12 insertions(+) rename product_docs/docs/migration_portal/{4.0 => 4}/01_mp_release_notes/10_mp_4.0_rel_notes.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/01_mp_release_notes/index.mdx (85%) create mode 100644 product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx rename product_docs/docs/migration_portal/{4.0 => 4}/02_supported_platforms.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/03_mp_using_portal/01_mp_overview_home.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/03_mp_using_portal/02_mp_overview_project.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/03_mp_using_portal/03_mp_quick_start.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/03_mp_using_portal/index.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/01_data_pump_utility.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/1.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/162980660731198462.textClipping (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/3.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/EDB_logo.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/Migrate_Cloud_Finish.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/biganimal.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo.svg (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo_full_color.svg (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/migrate_cloud_select_platform_updated.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_enterprisedb_website.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete_updatated.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_updated.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_finish_1.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_launch_cluster_updated.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_select_platform.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_success_updated.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_new_filters.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home_updated.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_kb.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_numbered.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_1.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_2.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_5.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_analysis_result.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_errors.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_incompatible.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_1.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_2.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4_edited.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_5.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_edited.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report_pdf.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_select_schema.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_verifying_ddl.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_workaround.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_dependent_objects.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_list.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_paths.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_target.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_page.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_test.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_mig_success.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_schemas_selection.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_option.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_contact_us.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_download.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_mig_success.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection_linux.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_windows.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_linux.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_download.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_import.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_guide.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_import.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_repo.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success..png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection copy.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_guide.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_import.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_installer.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_cds.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_details.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_successful.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_deployed.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_button.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_option.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_existing_epas.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_cloud.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_new.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas (copy).png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal_accessing.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_assessment_report_rh_counts.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_branding_updates.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_common_failures.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_compatibility_guage_color.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_csv.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_objects_repaired_by_me.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_prepopulated_email.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_warning_sign.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/project page overview.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4/04_mp_migrating_database/01_mp_schema_extraction}/images/schema_object_selection.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/select-operating-system-linux.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/test.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/images/whats_new_new_look.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/01_mp_schema_extraction/index.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/02_mp_schema_assessment.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/03_mp_schema_migration.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/04_mp_data_migration.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/04_mp_migrating_database/index.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/05_mp_advanced_data_migration.mdx (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/1.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/162980660731198462.textClipping (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/3.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/EDB_logo.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/Migrate_Cloud_Finish.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/biganimal.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/edb_logo.svg (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/edb_logo_full_color.svg (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/migrate_cloud_select_platform_updated.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_enterprisedb_website.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_migrate_cloud_connection.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_migrate_cloud_connection_complete.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_migrate_cloud_connection_complete_updatated.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_migrate_cloud_connection_updated.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_migrate_cloud_finish_1.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_migrate_cloud_launch_cluster_updated.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_migrate_cloud_select_platform.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_migrate_cloud_success_updated.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_new_filters.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_overview_home.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_overview_home_updated.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_overview_project_kb.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_overview_project_numbered.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_overview_wiki.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_overview_wiki_1.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_overview_wiki_2.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_overview_wiki_5.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_analysis_result.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_errors.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_incompatible.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_new_project.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_new_project_1.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_new_project_2.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_new_project_4.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_new_project_4_edited.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_new_project_5.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_new_project_edited.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_schema_report.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_schema_report_pdf.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_select_schema.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_verifying_ddl.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_assessment_workaround.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_dependent_objects.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_extraction_list.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_extraction_paths.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_extraction_target.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_cloud_cluster.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_cloud_cluster_connection_page.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_cloud_cluster_connection_test.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_cloud_epas_mig_success.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_cloud_epas_schemas_selection.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_cloud_option.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_exist_epas_contact_us.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_exist_epas_download.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_exist_epas_mig_success.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_exist_epas_schemas_selection.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_exist_epas_schemas_selection_linux.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_exist_epas_windows.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_exist_linux.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_download.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_import.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_linux.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_linux_guide.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_linux_import.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_linux_repo.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_mig_success..png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_mig_success.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_schemas_selection copy.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_schemas_selection.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_windows.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_windows_guide.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_windows_import.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_mig_new_epas_windows_installer.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_migration_cds.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_migration_connection_details.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_migration_connection_successful.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_migration_deployed.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_migration_download_file_button.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_migration_download_file_option.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_migration_existing_epas.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_migration_home.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_migration_home_cloud.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_migration_home_new.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_migration_select_schemas (copy).png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_schema_migration_select_schemas.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_using_portal.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_using_portal_accessing.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_whats_new_assessment_report_rh_counts.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_whats_new_branding_updates.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_whats_new_common_failures.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_whats_new_compatibility_guage_color.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_whats_new_csv.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_whats_new_objects_repaired_by_me.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_whats_new_prepopulated_email.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/mp_whats_new_warning_sign.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/project page overview.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/select-operating-system-linux.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/test.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/images/whats_new_new_look.png (100%) rename product_docs/docs/migration_portal/{4.0 => 4}/index.mdx (100%) diff --git a/product_docs/docs/migration_portal/4.0/01_mp_release_notes/10_mp_4.0_rel_notes.mdx b/product_docs/docs/migration_portal/4/01_mp_release_notes/10_mp_4.0_rel_notes.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/01_mp_release_notes/10_mp_4.0_rel_notes.mdx rename to product_docs/docs/migration_portal/4/01_mp_release_notes/10_mp_4.0_rel_notes.mdx diff --git a/product_docs/docs/migration_portal/4.0/01_mp_release_notes/index.mdx b/product_docs/docs/migration_portal/4/01_mp_release_notes/index.mdx similarity index 85% rename from product_docs/docs/migration_portal/4.0/01_mp_release_notes/index.mdx rename to product_docs/docs/migration_portal/4/01_mp_release_notes/index.mdx index 5ec9a9c3efe..5d0e9f3276e 100644 --- a/product_docs/docs/migration_portal/4.0/01_mp_release_notes/index.mdx +++ b/product_docs/docs/migration_portal/4/01_mp_release_notes/index.mdx @@ -8,4 +8,5 @@ The Migration Portal documentation describes the latest version of Migration Por | Version | Release date | | ------- | ------------ | +| [4.1] (mp_4.1_rel_notes) | 04 Aug 2022 | | [4.0](10_mp_4.0_rel_notes) | 22 Apr 2022 | \ No newline at end of file diff --git a/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx b/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx new file mode 100644 index 00000000000..8c79de0f5d8 --- /dev/null +++ b/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx @@ -0,0 +1,10 @@ +--- +title: "Version 4.1" +--- + + +New features, enhancements, bug fixes, and other changes in Migration Portal 4.0 include the following: + +| Type | Description | +| ---- |------------ | +| diff --git a/product_docs/docs/migration_portal/4.0/02_supported_platforms.mdx b/product_docs/docs/migration_portal/4/02_supported_platforms.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/02_supported_platforms.mdx rename to product_docs/docs/migration_portal/4/02_supported_platforms.mdx diff --git a/product_docs/docs/migration_portal/4.0/03_mp_using_portal/01_mp_overview_home.mdx b/product_docs/docs/migration_portal/4/03_mp_using_portal/01_mp_overview_home.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/03_mp_using_portal/01_mp_overview_home.mdx rename to product_docs/docs/migration_portal/4/03_mp_using_portal/01_mp_overview_home.mdx diff --git a/product_docs/docs/migration_portal/4.0/03_mp_using_portal/02_mp_overview_project.mdx b/product_docs/docs/migration_portal/4/03_mp_using_portal/02_mp_overview_project.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/03_mp_using_portal/02_mp_overview_project.mdx rename to product_docs/docs/migration_portal/4/03_mp_using_portal/02_mp_overview_project.mdx diff --git a/product_docs/docs/migration_portal/4.0/03_mp_using_portal/03_mp_quick_start.mdx b/product_docs/docs/migration_portal/4/03_mp_using_portal/03_mp_quick_start.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/03_mp_using_portal/03_mp_quick_start.mdx rename to product_docs/docs/migration_portal/4/03_mp_using_portal/03_mp_quick_start.mdx diff --git a/product_docs/docs/migration_portal/4.0/03_mp_using_portal/index.mdx b/product_docs/docs/migration_portal/4/03_mp_using_portal/index.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/03_mp_using_portal/index.mdx rename to product_docs/docs/migration_portal/4/03_mp_using_portal/index.mdx diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/01_data_pump_utility.mdx b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/01_data_pump_utility.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/01_data_pump_utility.mdx rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/01_data_pump_utility.mdx diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/1.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/1.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/1.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/1.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/162980660731198462.textClipping b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/162980660731198462.textClipping similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/162980660731198462.textClipping rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/162980660731198462.textClipping diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/3.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/3.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/3.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/3.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/EDB_logo.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/EDB_logo.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/EDB_logo.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/EDB_logo.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/Migrate_Cloud_Finish.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/Migrate_Cloud_Finish.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/Migrate_Cloud_Finish.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/Migrate_Cloud_Finish.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/biganimal.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/biganimal.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/biganimal.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/biganimal.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo.svg b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo.svg similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo.svg rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo.svg diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo_full_color.svg b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo_full_color.svg similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo_full_color.svg rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo_full_color.svg diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/migrate_cloud_select_platform_updated.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/migrate_cloud_select_platform_updated.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/migrate_cloud_select_platform_updated.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/migrate_cloud_select_platform_updated.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_enterprisedb_website.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_enterprisedb_website.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_enterprisedb_website.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_enterprisedb_website.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete_updatated.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete_updatated.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete_updatated.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete_updatated.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_updated.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_updated.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_updated.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_updated.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_finish_1.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_finish_1.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_finish_1.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_finish_1.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_launch_cluster_updated.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_launch_cluster_updated.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_launch_cluster_updated.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_launch_cluster_updated.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_select_platform.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_select_platform.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_select_platform.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_select_platform.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_success_updated.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_success_updated.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_success_updated.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_success_updated.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_new_filters.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_new_filters.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_new_filters.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_new_filters.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home_updated.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home_updated.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home_updated.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home_updated.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_kb.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_kb.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_kb.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_kb.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_numbered.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_numbered.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_numbered.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_numbered.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_1.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_1.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_1.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_1.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_2.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_2.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_2.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_2.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_5.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_5.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_5.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_5.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_analysis_result.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_analysis_result.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_analysis_result.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_analysis_result.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_errors.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_errors.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_errors.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_errors.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_incompatible.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_incompatible.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_incompatible.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_incompatible.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_1.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_1.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_1.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_1.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_2.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_2.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_2.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_2.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4_edited.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4_edited.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4_edited.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4_edited.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_5.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_5.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_5.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_5.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_edited.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_edited.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_edited.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_edited.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report_pdf.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report_pdf.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report_pdf.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report_pdf.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_select_schema.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_select_schema.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_select_schema.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_select_schema.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_verifying_ddl.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_verifying_ddl.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_verifying_ddl.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_verifying_ddl.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_workaround.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_workaround.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_workaround.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_workaround.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_dependent_objects.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_dependent_objects.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_dependent_objects.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_dependent_objects.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_list.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_list.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_list.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_list.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_paths.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_paths.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_paths.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_paths.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_target.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_target.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_target.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_target.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_page.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_page.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_page.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_page.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_test.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_test.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_test.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_test.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_mig_success.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_mig_success.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_schemas_selection.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_schemas_selection.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_option.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_option.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_option.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_option.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_contact_us.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_contact_us.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_contact_us.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_contact_us.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_download.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_download.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_download.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_download.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_mig_success.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_mig_success.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection_linux.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection_linux.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection_linux.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection_linux.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_windows.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_windows.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_windows.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_windows.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_linux.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_linux.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_linux.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_linux.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_download.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_download.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_download.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_download.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_import.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_import.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_import.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_import.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_guide.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_guide.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_guide.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_guide.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_import.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_import.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_import.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_import.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_repo.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_repo.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_repo.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_repo.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success..png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success..png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success..png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success..png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection copy.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection copy.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection copy.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection copy.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_guide.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_guide.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_guide.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_guide.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_import.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_import.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_import.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_import.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_installer.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_installer.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_installer.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_installer.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_cds.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_cds.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_cds.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_cds.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_details.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_details.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_details.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_details.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_successful.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_successful.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_successful.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_successful.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_deployed.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_deployed.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_deployed.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_deployed.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_button.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_button.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_button.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_button.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_option.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_option.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_option.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_option.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_existing_epas.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_existing_epas.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_existing_epas.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_existing_epas.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_cloud.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_cloud.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_cloud.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_cloud.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_new.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_new.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_new.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_new.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas (copy).png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas (copy).png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas (copy).png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas (copy).png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal_accessing.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal_accessing.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal_accessing.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal_accessing.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_assessment_report_rh_counts.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_assessment_report_rh_counts.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_assessment_report_rh_counts.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_assessment_report_rh_counts.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_branding_updates.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_branding_updates.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_branding_updates.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_branding_updates.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_common_failures.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_common_failures.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_common_failures.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_common_failures.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_compatibility_guage_color.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_compatibility_guage_color.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_compatibility_guage_color.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_compatibility_guage_color.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_csv.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_csv.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_csv.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_csv.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_objects_repaired_by_me.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_objects_repaired_by_me.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_objects_repaired_by_me.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_objects_repaired_by_me.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_prepopulated_email.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_prepopulated_email.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_prepopulated_email.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_prepopulated_email.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_warning_sign.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_warning_sign.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_warning_sign.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_warning_sign.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/project page overview.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/project page overview.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/project page overview.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/project page overview.png diff --git a/product_docs/docs/migration_portal/4.0/images/schema_object_selection.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/schema_object_selection.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/schema_object_selection.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/schema_object_selection.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/select-operating-system-linux.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/select-operating-system-linux.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/select-operating-system-linux.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/select-operating-system-linux.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/test.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/test.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/test.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/test.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/whats_new_new_look.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/whats_new_new_look.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/images/whats_new_new_look.png rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/whats_new_new_look.png diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/index.mdx b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/index.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/01_mp_schema_extraction/index.mdx rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/index.mdx diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx b/product_docs/docs/migration_portal/4/04_mp_migrating_database/02_mp_schema_assessment.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/02_mp_schema_assessment.mdx rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/02_mp_schema_assessment.mdx diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx b/product_docs/docs/migration_portal/4/04_mp_migrating_database/03_mp_schema_migration.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/03_mp_schema_migration.mdx rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/03_mp_schema_migration.mdx diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/04_mp_data_migration.mdx b/product_docs/docs/migration_portal/4/04_mp_migrating_database/04_mp_data_migration.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/04_mp_data_migration.mdx rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/04_mp_data_migration.mdx diff --git a/product_docs/docs/migration_portal/4.0/04_mp_migrating_database/index.mdx b/product_docs/docs/migration_portal/4/04_mp_migrating_database/index.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/04_mp_migrating_database/index.mdx rename to product_docs/docs/migration_portal/4/04_mp_migrating_database/index.mdx diff --git a/product_docs/docs/migration_portal/4.0/05_mp_advanced_data_migration.mdx b/product_docs/docs/migration_portal/4/05_mp_advanced_data_migration.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/05_mp_advanced_data_migration.mdx rename to product_docs/docs/migration_portal/4/05_mp_advanced_data_migration.mdx diff --git a/product_docs/docs/migration_portal/4.0/images/1.png b/product_docs/docs/migration_portal/4/images/1.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/1.png rename to product_docs/docs/migration_portal/4/images/1.png diff --git a/product_docs/docs/migration_portal/4.0/images/162980660731198462.textClipping b/product_docs/docs/migration_portal/4/images/162980660731198462.textClipping similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/162980660731198462.textClipping rename to product_docs/docs/migration_portal/4/images/162980660731198462.textClipping diff --git a/product_docs/docs/migration_portal/4.0/images/3.png b/product_docs/docs/migration_portal/4/images/3.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/3.png rename to product_docs/docs/migration_portal/4/images/3.png diff --git a/product_docs/docs/migration_portal/4.0/images/EDB_logo.png b/product_docs/docs/migration_portal/4/images/EDB_logo.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/EDB_logo.png rename to product_docs/docs/migration_portal/4/images/EDB_logo.png diff --git a/product_docs/docs/migration_portal/4.0/images/Migrate_Cloud_Finish.png b/product_docs/docs/migration_portal/4/images/Migrate_Cloud_Finish.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/Migrate_Cloud_Finish.png rename to product_docs/docs/migration_portal/4/images/Migrate_Cloud_Finish.png diff --git a/product_docs/docs/migration_portal/4.0/images/biganimal.png b/product_docs/docs/migration_portal/4/images/biganimal.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/biganimal.png rename to product_docs/docs/migration_portal/4/images/biganimal.png diff --git a/product_docs/docs/migration_portal/4.0/images/edb_logo.svg b/product_docs/docs/migration_portal/4/images/edb_logo.svg similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/edb_logo.svg rename to product_docs/docs/migration_portal/4/images/edb_logo.svg diff --git a/product_docs/docs/migration_portal/4.0/images/edb_logo_full_color.svg b/product_docs/docs/migration_portal/4/images/edb_logo_full_color.svg similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/edb_logo_full_color.svg rename to product_docs/docs/migration_portal/4/images/edb_logo_full_color.svg diff --git a/product_docs/docs/migration_portal/4.0/images/migrate_cloud_select_platform_updated.png b/product_docs/docs/migration_portal/4/images/migrate_cloud_select_platform_updated.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/migrate_cloud_select_platform_updated.png rename to product_docs/docs/migration_portal/4/images/migrate_cloud_select_platform_updated.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_enterprisedb_website.png b/product_docs/docs/migration_portal/4/images/mp_enterprisedb_website.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_enterprisedb_website.png rename to product_docs/docs/migration_portal/4/images/mp_enterprisedb_website.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_connection.png b/product_docs/docs/migration_portal/4/images/mp_migrate_cloud_connection.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_connection.png rename to product_docs/docs/migration_portal/4/images/mp_migrate_cloud_connection.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_connection_complete.png b/product_docs/docs/migration_portal/4/images/mp_migrate_cloud_connection_complete.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_connection_complete.png rename to product_docs/docs/migration_portal/4/images/mp_migrate_cloud_connection_complete.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_connection_complete_updatated.png b/product_docs/docs/migration_portal/4/images/mp_migrate_cloud_connection_complete_updatated.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_connection_complete_updatated.png rename to product_docs/docs/migration_portal/4/images/mp_migrate_cloud_connection_complete_updatated.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_connection_updated.png b/product_docs/docs/migration_portal/4/images/mp_migrate_cloud_connection_updated.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_connection_updated.png rename to product_docs/docs/migration_portal/4/images/mp_migrate_cloud_connection_updated.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_finish_1.png b/product_docs/docs/migration_portal/4/images/mp_migrate_cloud_finish_1.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_finish_1.png rename to product_docs/docs/migration_portal/4/images/mp_migrate_cloud_finish_1.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_launch_cluster_updated.png b/product_docs/docs/migration_portal/4/images/mp_migrate_cloud_launch_cluster_updated.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_launch_cluster_updated.png rename to product_docs/docs/migration_portal/4/images/mp_migrate_cloud_launch_cluster_updated.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_select_platform.png b/product_docs/docs/migration_portal/4/images/mp_migrate_cloud_select_platform.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_select_platform.png rename to product_docs/docs/migration_portal/4/images/mp_migrate_cloud_select_platform.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_success_updated.png b/product_docs/docs/migration_portal/4/images/mp_migrate_cloud_success_updated.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_migrate_cloud_success_updated.png rename to product_docs/docs/migration_portal/4/images/mp_migrate_cloud_success_updated.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_new_filters.png b/product_docs/docs/migration_portal/4/images/mp_new_filters.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_new_filters.png rename to product_docs/docs/migration_portal/4/images/mp_new_filters.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_overview_home.png b/product_docs/docs/migration_portal/4/images/mp_overview_home.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_overview_home.png rename to product_docs/docs/migration_portal/4/images/mp_overview_home.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_overview_home_updated.png b/product_docs/docs/migration_portal/4/images/mp_overview_home_updated.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_overview_home_updated.png rename to product_docs/docs/migration_portal/4/images/mp_overview_home_updated.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_overview_project_kb.png b/product_docs/docs/migration_portal/4/images/mp_overview_project_kb.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_overview_project_kb.png rename to product_docs/docs/migration_portal/4/images/mp_overview_project_kb.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_overview_project_numbered.png b/product_docs/docs/migration_portal/4/images/mp_overview_project_numbered.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_overview_project_numbered.png rename to product_docs/docs/migration_portal/4/images/mp_overview_project_numbered.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_overview_wiki.png b/product_docs/docs/migration_portal/4/images/mp_overview_wiki.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_overview_wiki.png rename to product_docs/docs/migration_portal/4/images/mp_overview_wiki.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_overview_wiki_1.png b/product_docs/docs/migration_portal/4/images/mp_overview_wiki_1.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_overview_wiki_1.png rename to product_docs/docs/migration_portal/4/images/mp_overview_wiki_1.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_overview_wiki_2.png b/product_docs/docs/migration_portal/4/images/mp_overview_wiki_2.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_overview_wiki_2.png rename to product_docs/docs/migration_portal/4/images/mp_overview_wiki_2.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_overview_wiki_5.png b/product_docs/docs/migration_portal/4/images/mp_overview_wiki_5.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_overview_wiki_5.png rename to product_docs/docs/migration_portal/4/images/mp_overview_wiki_5.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_analysis_result.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_analysis_result.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_analysis_result.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_analysis_result.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_errors.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_errors.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_errors.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_errors.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_incompatible.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_incompatible.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_incompatible.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_incompatible.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project_1.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project_1.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project_1.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project_1.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project_2.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project_2.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project_2.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project_2.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project_4.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project_4.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project_4.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project_4.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project_4_edited.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project_4_edited.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project_4_edited.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project_4_edited.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project_5.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project_5.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project_5.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project_5.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project_edited.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project_edited.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_new_project_edited.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_new_project_edited.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_schema_report.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_schema_report.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_schema_report.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_schema_report.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_schema_report_pdf.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_schema_report_pdf.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_schema_report_pdf.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_schema_report_pdf.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_select_schema.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_select_schema.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_select_schema.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_select_schema.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_verifying_ddl.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_verifying_ddl.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_verifying_ddl.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_verifying_ddl.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_workaround.png b/product_docs/docs/migration_portal/4/images/mp_schema_assessment_workaround.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_assessment_workaround.png rename to product_docs/docs/migration_portal/4/images/mp_schema_assessment_workaround.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_dependent_objects.png b/product_docs/docs/migration_portal/4/images/mp_schema_dependent_objects.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_dependent_objects.png rename to product_docs/docs/migration_portal/4/images/mp_schema_dependent_objects.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_extraction_list.png b/product_docs/docs/migration_portal/4/images/mp_schema_extraction_list.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_extraction_list.png rename to product_docs/docs/migration_portal/4/images/mp_schema_extraction_list.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_extraction_paths.png b/product_docs/docs/migration_portal/4/images/mp_schema_extraction_paths.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_extraction_paths.png rename to product_docs/docs/migration_portal/4/images/mp_schema_extraction_paths.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_extraction_target.png b/product_docs/docs/migration_portal/4/images/mp_schema_extraction_target.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_extraction_target.png rename to product_docs/docs/migration_portal/4/images/mp_schema_extraction_target.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_cloud_cluster.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_cloud_cluster.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_cloud_cluster.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_cloud_cluster.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_cloud_cluster_connection_page.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_cloud_cluster_connection_page.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_cloud_cluster_connection_page.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_cloud_cluster_connection_page.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_cloud_cluster_connection_test.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_cloud_cluster_connection_test.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_cloud_cluster_connection_test.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_cloud_cluster_connection_test.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_cloud_epas_mig_success.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_cloud_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_cloud_epas_mig_success.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_cloud_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_cloud_epas_schemas_selection.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_cloud_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_cloud_epas_schemas_selection.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_cloud_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_cloud_option.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_cloud_option.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_cloud_option.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_cloud_option.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_epas_contact_us.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_epas_contact_us.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_epas_contact_us.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_epas_contact_us.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_epas_download.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_epas_download.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_epas_download.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_epas_download.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_epas_mig_success.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_epas_mig_success.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_epas_schemas_selection.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_epas_schemas_selection.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_epas_schemas_selection_linux.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_epas_schemas_selection_linux.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_epas_schemas_selection_linux.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_epas_schemas_selection_linux.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_epas_windows.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_epas_windows.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_epas_windows.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_epas_windows.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_linux.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_linux.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_exist_linux.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_exist_linux.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_download.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_download.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_download.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_download.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_import.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_import.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_import.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_import.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_linux.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_linux.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_linux.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_linux.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_linux_guide.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_linux_guide.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_linux_guide.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_linux_guide.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_linux_import.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_linux_import.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_linux_import.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_linux_import.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_linux_repo.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_linux_repo.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_linux_repo.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_linux_repo.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_mig_success..png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_mig_success..png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_mig_success..png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_mig_success..png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_mig_success.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_mig_success.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_mig_success.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_mig_success.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_schemas_selection copy.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_schemas_selection copy.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_schemas_selection copy.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_schemas_selection copy.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_schemas_selection.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_schemas_selection.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_schemas_selection.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_schemas_selection.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_windows.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_windows.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_windows.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_windows.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_windows_guide.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_windows_guide.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_windows_guide.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_windows_guide.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_windows_import.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_windows_import.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_windows_import.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_windows_import.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_windows_installer.png b/product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_windows_installer.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_mig_new_epas_windows_installer.png rename to product_docs/docs/migration_portal/4/images/mp_schema_mig_new_epas_windows_installer.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_migration_cds.png b/product_docs/docs/migration_portal/4/images/mp_schema_migration_cds.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_migration_cds.png rename to product_docs/docs/migration_portal/4/images/mp_schema_migration_cds.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_migration_connection_details.png b/product_docs/docs/migration_portal/4/images/mp_schema_migration_connection_details.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_migration_connection_details.png rename to product_docs/docs/migration_portal/4/images/mp_schema_migration_connection_details.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_migration_connection_successful.png b/product_docs/docs/migration_portal/4/images/mp_schema_migration_connection_successful.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_migration_connection_successful.png rename to product_docs/docs/migration_portal/4/images/mp_schema_migration_connection_successful.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_migration_deployed.png b/product_docs/docs/migration_portal/4/images/mp_schema_migration_deployed.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_migration_deployed.png rename to product_docs/docs/migration_portal/4/images/mp_schema_migration_deployed.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_migration_download_file_button.png b/product_docs/docs/migration_portal/4/images/mp_schema_migration_download_file_button.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_migration_download_file_button.png rename to product_docs/docs/migration_portal/4/images/mp_schema_migration_download_file_button.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_migration_download_file_option.png b/product_docs/docs/migration_portal/4/images/mp_schema_migration_download_file_option.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_migration_download_file_option.png rename to product_docs/docs/migration_portal/4/images/mp_schema_migration_download_file_option.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_migration_existing_epas.png b/product_docs/docs/migration_portal/4/images/mp_schema_migration_existing_epas.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_migration_existing_epas.png rename to product_docs/docs/migration_portal/4/images/mp_schema_migration_existing_epas.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_migration_home.png b/product_docs/docs/migration_portal/4/images/mp_schema_migration_home.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_migration_home.png rename to product_docs/docs/migration_portal/4/images/mp_schema_migration_home.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_migration_home_cloud.png b/product_docs/docs/migration_portal/4/images/mp_schema_migration_home_cloud.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_migration_home_cloud.png rename to product_docs/docs/migration_portal/4/images/mp_schema_migration_home_cloud.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_migration_home_new.png b/product_docs/docs/migration_portal/4/images/mp_schema_migration_home_new.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_migration_home_new.png rename to product_docs/docs/migration_portal/4/images/mp_schema_migration_home_new.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_migration_select_schemas (copy).png b/product_docs/docs/migration_portal/4/images/mp_schema_migration_select_schemas (copy).png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_migration_select_schemas (copy).png rename to product_docs/docs/migration_portal/4/images/mp_schema_migration_select_schemas (copy).png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_schema_migration_select_schemas.png b/product_docs/docs/migration_portal/4/images/mp_schema_migration_select_schemas.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_schema_migration_select_schemas.png rename to product_docs/docs/migration_portal/4/images/mp_schema_migration_select_schemas.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_using_portal.png b/product_docs/docs/migration_portal/4/images/mp_using_portal.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_using_portal.png rename to product_docs/docs/migration_portal/4/images/mp_using_portal.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_using_portal_accessing.png b/product_docs/docs/migration_portal/4/images/mp_using_portal_accessing.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_using_portal_accessing.png rename to product_docs/docs/migration_portal/4/images/mp_using_portal_accessing.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_whats_new_assessment_report_rh_counts.png b/product_docs/docs/migration_portal/4/images/mp_whats_new_assessment_report_rh_counts.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_whats_new_assessment_report_rh_counts.png rename to product_docs/docs/migration_portal/4/images/mp_whats_new_assessment_report_rh_counts.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_whats_new_branding_updates.png b/product_docs/docs/migration_portal/4/images/mp_whats_new_branding_updates.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_whats_new_branding_updates.png rename to product_docs/docs/migration_portal/4/images/mp_whats_new_branding_updates.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_whats_new_common_failures.png b/product_docs/docs/migration_portal/4/images/mp_whats_new_common_failures.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_whats_new_common_failures.png rename to product_docs/docs/migration_portal/4/images/mp_whats_new_common_failures.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_whats_new_compatibility_guage_color.png b/product_docs/docs/migration_portal/4/images/mp_whats_new_compatibility_guage_color.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_whats_new_compatibility_guage_color.png rename to product_docs/docs/migration_portal/4/images/mp_whats_new_compatibility_guage_color.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_whats_new_csv.png b/product_docs/docs/migration_portal/4/images/mp_whats_new_csv.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_whats_new_csv.png rename to product_docs/docs/migration_portal/4/images/mp_whats_new_csv.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_whats_new_objects_repaired_by_me.png b/product_docs/docs/migration_portal/4/images/mp_whats_new_objects_repaired_by_me.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_whats_new_objects_repaired_by_me.png rename to product_docs/docs/migration_portal/4/images/mp_whats_new_objects_repaired_by_me.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_whats_new_prepopulated_email.png b/product_docs/docs/migration_portal/4/images/mp_whats_new_prepopulated_email.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_whats_new_prepopulated_email.png rename to product_docs/docs/migration_portal/4/images/mp_whats_new_prepopulated_email.png diff --git a/product_docs/docs/migration_portal/4.0/images/mp_whats_new_warning_sign.png b/product_docs/docs/migration_portal/4/images/mp_whats_new_warning_sign.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/mp_whats_new_warning_sign.png rename to product_docs/docs/migration_portal/4/images/mp_whats_new_warning_sign.png diff --git a/product_docs/docs/migration_portal/4.0/images/project page overview.png b/product_docs/docs/migration_portal/4/images/project page overview.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/project page overview.png rename to product_docs/docs/migration_portal/4/images/project page overview.png diff --git a/product_docs/docs/migration_portal/4.0/images/select-operating-system-linux.png b/product_docs/docs/migration_portal/4/images/select-operating-system-linux.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/select-operating-system-linux.png rename to product_docs/docs/migration_portal/4/images/select-operating-system-linux.png diff --git a/product_docs/docs/migration_portal/4.0/images/test.png b/product_docs/docs/migration_portal/4/images/test.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/test.png rename to product_docs/docs/migration_portal/4/images/test.png diff --git a/product_docs/docs/migration_portal/4.0/images/whats_new_new_look.png b/product_docs/docs/migration_portal/4/images/whats_new_new_look.png similarity index 100% rename from product_docs/docs/migration_portal/4.0/images/whats_new_new_look.png rename to product_docs/docs/migration_portal/4/images/whats_new_new_look.png diff --git a/product_docs/docs/migration_portal/4.0/index.mdx b/product_docs/docs/migration_portal/4/index.mdx similarity index 100% rename from product_docs/docs/migration_portal/4.0/index.mdx rename to product_docs/docs/migration_portal/4/index.mdx diff --git a/static/_redirects b/static/_redirects index b7dda171cb8..1cad62ba7d3 100644 --- a/static/_redirects +++ b/static/_redirects @@ -129,6 +129,7 @@ /docs/migration_portal/3.5.0/* /docs/migration_portal/latest/:splat 301 /docs/migration_portal/3.5.1/* /docs/migration_portal/latest/:splat 301 /docs/migration_portal/3.5.2/* /docs/migration_portal/latest/:splat 301 +/docs/migration_portal/4.0/* /docs/migration_portal/4/:splat 301 # FDWs and Connectors /docs/hadoop_data_adapter/2.0/* /docs/hadoop_data_adapter/latest/ 301 From 03b7ca587d6858f722a390bb28745073f2415f17 Mon Sep 17 00:00:00 2001 From: Chris Estes <106166814+ccestes@users.noreply.github.com> Date: Thu, 4 Aug 2022 12:27:03 -0400 Subject: [PATCH 26/30] 4.1 release notes content --- .../4/01_mp_release_notes/index.mdx | 2 +- .../4/01_mp_release_notes/mp_4.1_rel_notes.mdx | 13 +++++++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/product_docs/docs/migration_portal/4/01_mp_release_notes/index.mdx b/product_docs/docs/migration_portal/4/01_mp_release_notes/index.mdx index 5d0e9f3276e..b37b8fca12f 100644 --- a/product_docs/docs/migration_portal/4/01_mp_release_notes/index.mdx +++ b/product_docs/docs/migration_portal/4/01_mp_release_notes/index.mdx @@ -8,5 +8,5 @@ The Migration Portal documentation describes the latest version of Migration Por | Version | Release date | | ------- | ------------ | -| [4.1] (mp_4.1_rel_notes) | 04 Aug 2022 | +| [4.1](mp_4.1_rel_notes) | 04 Aug 2022 | | [4.0](10_mp_4.0_rel_notes) | 22 Apr 2022 | \ No newline at end of file diff --git a/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx b/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx index 8c79de0f5d8..e045ee843e7 100644 --- a/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx +++ b/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx @@ -3,8 +3,17 @@ title: "Version 4.1" --- -New features, enhancements, bug fixes, and other changes in Migration Portal 4.0 include the following: +New features, enhancements, bug fixes, and other changes in Migration Portal 4.1 include the following: | Type | Description | | ---- |------------ | -| +| Enhancement | The Migration Portal now provides the capability to calculate a migration complexity score based on the effort type and complexity level relevant to Oracle constructs (for example, features) found in the uploaded DDL. | +| Enhancement | The user can now apply filtering to the available schemas and underlying objects in a project to generate target database DDL for a subset of selected object types. Additionally, instead of a single DDL SQL file being created for download, a zip archive is created, which contains separate files for each selected object type, as well as consolidated scripts for the project and the selected schemas. | +| Enhancement | Added a new repair handler ERH-3005 to transform Q quoted strings to either dollar quoted or E quoted strings. | +| Enhancement | Enhanced the ERH-2078 repair handler to apply pipelined specific transformations at the package header level. | +| Enhancement | Updated the ERH-2034 repair handler so that it removes NULL from the TYPE definition provided inside a PACKAGE. | +| Security fix | Upgraded the async, eventsource, h2, jsdom, and moment libraries to the latest versions to address security issues ([CVE-2021-43138](https://nvd.nist.gov/vuln/detail/CVE-2021-43138), [CVE-2022-1650](https://nvd.nist.gov/vuln/detail/CVE-2022-1650), [CVE-2022-23221](https://nvd.nist.gov/vuln/detail/CVE-2022-23221), [CVE-2021-42392](https://nvd.nist.gov/vuln/detail/CVE-2021-42392), [CVE-2021-20066](https://nvd.nist.gov/vuln/detail/CVE-2021-20066), and [CVE-2022-31129](https://nvd.nist.gov/vuln/detail/CVE-2022-31129)). | +| Bug fix | Fixed a corner case that resulted in the skipping of some indexes when processing source Oracle DDL files generated using the Oracle Data Pump utilities. | +| Bug fix | Fixed the behavior where only the ENABLE keyword was being removed from the ENABLE NOVALIDATE clause in ALTER TABLE statements so that the complete clause is now removed. Also, updated the relevant repair handlers ERH-2003 and ERH-2005. | +| Bug fix | Fixed a synchronization thread issue that was impacting the performance of other assessments running in parallel with a long-running schema assessment. | +| Bug fix | Fixed an issue where the DEDUPLICATE LOB clause in CREATE TABLE statements that are generated by the Oracle Data Pump utilities resulted in DDL parsing related errors. | \ No newline at end of file From 6e0285178bcfcaee7570725e75bdb6d7325b4e36 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Thu, 4 Aug 2022 11:46:34 -0400 Subject: [PATCH 27/30] changed version number to 4, added shell for rel notes, and redirect --- .../migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx b/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx index e045ee843e7..962cd223009 100644 --- a/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx +++ b/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx @@ -16,4 +16,4 @@ New features, enhancements, bug fixes, and other changes in Migration Portal 4.1 | Bug fix | Fixed a corner case that resulted in the skipping of some indexes when processing source Oracle DDL files generated using the Oracle Data Pump utilities. | | Bug fix | Fixed the behavior where only the ENABLE keyword was being removed from the ENABLE NOVALIDATE clause in ALTER TABLE statements so that the complete clause is now removed. Also, updated the relevant repair handlers ERH-2003 and ERH-2005. | | Bug fix | Fixed a synchronization thread issue that was impacting the performance of other assessments running in parallel with a long-running schema assessment. | -| Bug fix | Fixed an issue where the DEDUPLICATE LOB clause in CREATE TABLE statements that are generated by the Oracle Data Pump utilities resulted in DDL parsing related errors. | \ No newline at end of file +| Bug fix | Fixed an issue where the DEDUPLICATE LOB clause in CREATE TABLE statements that are generated by the Oracle Data Pump utilities resulted in DDL parsing related errors. | From f10e967aa9f4360e2a818de2e2dcfcbbf79929fd Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Thu, 4 Aug 2022 13:57:33 -0400 Subject: [PATCH 28/30] fixed nav order --- .../docs/migration_portal/4/01_mp_release_notes/index.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/product_docs/docs/migration_portal/4/01_mp_release_notes/index.mdx b/product_docs/docs/migration_portal/4/01_mp_release_notes/index.mdx index b37b8fca12f..5d53dc113c9 100644 --- a/product_docs/docs/migration_portal/4/01_mp_release_notes/index.mdx +++ b/product_docs/docs/migration_portal/4/01_mp_release_notes/index.mdx @@ -2,6 +2,9 @@ title: "Release notes" redirects: - ../01_whats_new/ +navigation: +- mp_4.1_rel_notes +- 10_mp_4.0_rel_notes --- The Migration Portal documentation describes the latest version of Migration Portal 4.0. From 1ebeb24809fe3fd776ccf45af773d153966b4f30 Mon Sep 17 00:00:00 2001 From: mlewandowski-edb <63003848+mlewandowski-edb@users.noreply.github.com> Date: Thu, 4 Aug 2022 14:52:03 -0400 Subject: [PATCH 29/30] Updated description of new schema assessment report enhancements Updated the description of the first enhancement listed in the table to be more explicit about the new capability being provided in the schema assessment reports. Also, made a minor grammatical change, to one of the repair handler related descriptions. --- .../4/01_mp_release_notes/mp_4.1_rel_notes.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx b/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx index 962cd223009..9e610bd5bda 100644 --- a/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx +++ b/product_docs/docs/migration_portal/4/01_mp_release_notes/mp_4.1_rel_notes.mdx @@ -7,9 +7,9 @@ New features, enhancements, bug fixes, and other changes in Migration Portal 4.1 | Type | Description | | ---- |------------ | -| Enhancement | The Migration Portal now provides the capability to calculate a migration complexity score based on the effort type and complexity level relevant to Oracle constructs (for example, features) found in the uploaded DDL. | +| Enhancement | Migration Portal Schema Assessment Reports now include a new Feature Analysis section that provides a migration complexity score based on the effort type and complexity level relevant to the Oracle constructs (in other words, features) found in the uploaded DDL. This new section also provides a summary of the incompatible features found in the DDL. Note that the Feature Analysis section is currently only generated for new migration projects and not for existing projects that had been created prior to this release. | | Enhancement | The user can now apply filtering to the available schemas and underlying objects in a project to generate target database DDL for a subset of selected object types. Additionally, instead of a single DDL SQL file being created for download, a zip archive is created, which contains separate files for each selected object type, as well as consolidated scripts for the project and the selected schemas. | -| Enhancement | Added a new repair handler ERH-3005 to transform Q quoted strings to either dollar quoted or E quoted strings. | +| Enhancement | Added a new repair handler, ERH-3005, to transform Q quoted strings to either dollar quoted or E quoted strings. | | Enhancement | Enhanced the ERH-2078 repair handler to apply pipelined specific transformations at the package header level. | | Enhancement | Updated the ERH-2034 repair handler so that it removes NULL from the TYPE definition provided inside a PACKAGE. | | Security fix | Upgraded the async, eventsource, h2, jsdom, and moment libraries to the latest versions to address security issues ([CVE-2021-43138](https://nvd.nist.gov/vuln/detail/CVE-2021-43138), [CVE-2022-1650](https://nvd.nist.gov/vuln/detail/CVE-2022-1650), [CVE-2022-23221](https://nvd.nist.gov/vuln/detail/CVE-2022-23221), [CVE-2021-42392](https://nvd.nist.gov/vuln/detail/CVE-2021-42392), [CVE-2021-20066](https://nvd.nist.gov/vuln/detail/CVE-2021-20066), and [CVE-2022-31129](https://nvd.nist.gov/vuln/detail/CVE-2022-31129)). | From 34284a3e5c586fde53df9a9cb2d236e2abbfc3d9 Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Thu, 4 Aug 2022 19:26:35 +0000 Subject: [PATCH 30/30] put new image in correct location, remove dups --- .../01_mp_schema_extraction/images/1.png | 3 --- .../images/162980660731198462.textClipping | Bin 239 -> 0 bytes .../01_mp_schema_extraction/images/3.png | 3 --- .../images/EDB_logo.png | 3 --- .../images/Migrate_Cloud_Finish.png | 3 --- .../images/biganimal.png | 3 --- .../images/edb_logo.svg | 19 ------------------ .../images/edb_logo_full_color.svg | 3 --- .../migrate_cloud_select_platform_updated.png | 3 --- .../images/mp_enterprisedb_website.png | 3 --- .../images/mp_migrate_cloud_connection.png | 3 --- .../mp_migrate_cloud_connection_complete.png | 3 --- ...te_cloud_connection_complete_updatated.png | 3 --- .../mp_migrate_cloud_connection_updated.png | 3 --- .../images/mp_migrate_cloud_finish_1.png | 3 --- ...p_migrate_cloud_launch_cluster_updated.png | 3 --- .../mp_migrate_cloud_select_platform.png | 3 --- .../mp_migrate_cloud_success_updated.png | 3 --- .../images/mp_new_filters.png | 3 --- .../images/mp_overview_home.png | 3 --- .../images/mp_overview_home_updated.png | 3 --- .../images/mp_overview_project_kb.png | 3 --- .../images/mp_overview_project_numbered.png | 3 --- .../images/mp_overview_wiki.png | 3 --- .../images/mp_overview_wiki_1.png | 3 --- .../images/mp_overview_wiki_2.png | 3 --- .../images/mp_overview_wiki_5.png | 3 --- .../mp_schema_assessment_analysis_result.png | 3 --- .../images/mp_schema_assessment_errors.png | 3 --- .../mp_schema_assessment_incompatible.png | 3 --- .../mp_schema_assessment_new_project.png | 3 --- .../mp_schema_assessment_new_project_1.png | 3 --- .../mp_schema_assessment_new_project_2.png | 3 --- .../mp_schema_assessment_new_project_4.png | 3 --- ...schema_assessment_new_project_4_edited.png | 3 --- .../mp_schema_assessment_new_project_5.png | 3 --- ...p_schema_assessment_new_project_edited.png | 3 --- .../mp_schema_assessment_schema_report.png | 3 --- ...mp_schema_assessment_schema_report_pdf.png | 3 --- .../mp_schema_assessment_select_schema.png | 3 --- .../mp_schema_assessment_verifying_ddl.png | 3 --- .../mp_schema_assessment_workaround.png | 3 --- .../images/mp_schema_dependent_objects.png | 3 --- .../images/mp_schema_extraction_list.png | 3 --- .../images/mp_schema_extraction_paths.png | 3 --- .../images/mp_schema_extraction_target.png | 3 --- .../images/mp_schema_mig_cloud_cluster.png | 3 --- ...hema_mig_cloud_cluster_connection_page.png | 3 --- ...hema_mig_cloud_cluster_connection_test.png | 3 --- .../mp_schema_mig_cloud_epas_mig_success.png | 3 --- ...chema_mig_cloud_epas_schemas_selection.png | 3 --- .../images/mp_schema_mig_cloud_option.png | 3 --- .../mp_schema_mig_exist_epas_contact_us.png | 3 --- .../mp_schema_mig_exist_epas_download.png | 3 --- .../mp_schema_mig_exist_epas_mig_success.png | 3 --- ...chema_mig_exist_epas_schemas_selection.png | 3 --- ...mig_exist_epas_schemas_selection_linux.png | 3 --- .../mp_schema_mig_exist_epas_windows.png | 3 --- .../images/mp_schema_mig_exist_linux.png | 3 --- .../mp_schema_mig_new_epas_download.png | 3 --- .../images/mp_schema_mig_new_epas_import.png | 3 --- .../images/mp_schema_mig_new_epas_linux.png | 3 --- .../mp_schema_mig_new_epas_linux_guide.png | 3 --- .../mp_schema_mig_new_epas_linux_import.png | 3 --- .../mp_schema_mig_new_epas_linux_repo.png | 3 --- .../mp_schema_mig_new_epas_mig_success..png | 3 --- .../mp_schema_mig_new_epas_mig_success.png | 3 --- ...ma_mig_new_epas_schemas_selection copy.png | 3 --- ..._schema_mig_new_epas_schemas_selection.png | 3 --- .../images/mp_schema_mig_new_epas_windows.png | 3 --- .../mp_schema_mig_new_epas_windows_guide.png | 3 --- .../mp_schema_mig_new_epas_windows_import.png | 3 --- ..._schema_mig_new_epas_windows_installer.png | 3 --- .../images/mp_schema_migration_cds.png | 3 --- ...mp_schema_migration_connection_details.png | 3 --- ...schema_migration_connection_successful.png | 3 --- .../images/mp_schema_migration_deployed.png | 3 --- ..._schema_migration_download_file_button.png | 3 --- ..._schema_migration_download_file_option.png | 3 --- .../mp_schema_migration_existing_epas.png | 3 --- .../images/mp_schema_migration_home.png | 3 --- .../images/mp_schema_migration_home_cloud.png | 3 --- .../images/mp_schema_migration_home_new.png | 3 --- ...schema_migration_select_schemas (copy).png | 3 --- .../mp_schema_migration_select_schemas.png | 3 --- .../images/mp_using_portal.png | 3 --- .../images/mp_using_portal_accessing.png | 3 --- ..._whats_new_assessment_report_rh_counts.png | 3 --- .../images/mp_whats_new_branding_updates.png | 3 --- .../images/mp_whats_new_common_failures.png | 3 --- ...mp_whats_new_compatibility_guage_color.png | 3 --- .../images/mp_whats_new_csv.png | 3 --- .../mp_whats_new_objects_repaired_by_me.png | 3 --- .../mp_whats_new_prepopulated_email.png | 3 --- .../images/mp_whats_new_warning_sign.png | 3 --- .../images/project page overview.png | 3 --- .../images/select-operating-system-linux.png | 3 --- .../01_mp_schema_extraction/images/test.png | 3 --- .../images/whats_new_new_look.png | 3 --- .../images/schema_object_selection.png | 0 100 files changed, 310 deletions(-) delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/1.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/162980660731198462.textClipping delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/3.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/EDB_logo.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/Migrate_Cloud_Finish.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/biganimal.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo.svg delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo_full_color.svg delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/migrate_cloud_select_platform_updated.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_enterprisedb_website.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete_updatated.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_updated.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_finish_1.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_launch_cluster_updated.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_select_platform.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_success_updated.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_new_filters.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home_updated.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_kb.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_numbered.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_1.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_2.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_5.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_analysis_result.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_errors.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_incompatible.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_1.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_2.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4_edited.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_5.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_edited.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report_pdf.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_select_schema.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_verifying_ddl.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_workaround.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_dependent_objects.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_list.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_paths.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_target.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_page.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_test.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_mig_success.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_schemas_selection.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_option.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_contact_us.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_download.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_mig_success.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection_linux.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_windows.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_linux.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_download.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_import.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_guide.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_import.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_repo.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success..png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection copy.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_guide.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_import.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_installer.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_cds.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_details.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_successful.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_deployed.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_button.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_option.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_existing_epas.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_cloud.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_new.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas (copy).png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal_accessing.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_assessment_report_rh_counts.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_branding_updates.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_common_failures.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_compatibility_guage_color.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_csv.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_objects_repaired_by_me.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_prepopulated_email.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_warning_sign.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/project page overview.png delete mode 100644 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/select-operating-system-linux.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/test.png delete mode 100755 product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/whats_new_new_look.png rename product_docs/docs/migration_portal/4/{04_mp_migrating_database/01_mp_schema_extraction => }/images/schema_object_selection.png (100%) diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/1.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/1.png deleted file mode 100755 index dc744b99685..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1c0a22c1fbd9a0546e7b816e8d8822ecc08c634b5fd007e54c2d6ac48460db36 -size 333248 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/162980660731198462.textClipping b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/162980660731198462.textClipping deleted file mode 100644 index e5696b4a65253000762f2b57307383186c728bc0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmYc)$jK}&F)+Bu$P^J8;;HMBSdw^|nT3^&og-dAB{@G=FR`E?CsnVcC^03oBr`uR zF-JEyF!HmI(!IHs(!2rlI1Cr(p#teo)2of^^%W`mwNIONBcFku1 P14c#&&A - - edb-logo-disc-dark - - - - \ No newline at end of file diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo_full_color.svg b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo_full_color.svg deleted file mode 100644 index f4b3ee2ce3d..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/edb_logo_full_color.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/migrate_cloud_select_platform_updated.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/migrate_cloud_select_platform_updated.png deleted file mode 100644 index 3e0c90891a8..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/migrate_cloud_select_platform_updated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a66ef8f504be2db05e43bc998509d83466f55838620938c62de3063bc1c308e6 -size 161563 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_enterprisedb_website.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_enterprisedb_website.png deleted file mode 100644 index 0210ec21b61..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_enterprisedb_website.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:07c40007b2fd732a626193a92c30cb2db555c1c4fbaca4978e0735d0f2c77a17 -size 63459 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection.png deleted file mode 100644 index 91ca085f7a1..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:13350ed0cad267118b0355037d7aa46151095ed9ad606f669a0307647ac5abb3 -size 189033 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete.png deleted file mode 100644 index 2b3f9526edc..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9c9dd7eb6da7b7b4d1cb4e7a63f40c744cd21c54cb67fe25040fdb61b1c74609 -size 200841 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete_updatated.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete_updatated.png deleted file mode 100644 index c8fe9fa7490..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_complete_updatated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0c79286cb31f9ae028f1a2f65b0f3db4b44f7cddb36e4cea8780a3487d1a44ad -size 217626 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_updated.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_updated.png deleted file mode 100644 index 34f31846ea1..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_connection_updated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b7708627913511b926351e4ca43f28479683612adf74d1a88604bfaaa6eaa14d -size 206102 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_finish_1.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_finish_1.png deleted file mode 100644 index 25aa6e6ec47..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_finish_1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:38f6e03d8e4d2e488daa377a6a1471a2a2d3d7f3092df26f7a7a94776d51a81d -size 154658 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_launch_cluster_updated.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_launch_cluster_updated.png deleted file mode 100644 index ae92977c866..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_launch_cluster_updated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:54f5b91e9f59f457cf233753b562fdf1fab3d46c54761dde5141fd66e0644262 -size 174698 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_select_platform.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_select_platform.png deleted file mode 100644 index 1f2c206c054..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_select_platform.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6310d249dfbade3da3916fcf4355eb8aa2960f524f109ad6004beacc6b1e7b2e -size 149571 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_success_updated.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_success_updated.png deleted file mode 100644 index 2a8e47cd248..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_migrate_cloud_success_updated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6b9422f06148e30afe3399693b65e475517eb38b078381a189a24fd5efa9d756 -size 166348 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_new_filters.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_new_filters.png deleted file mode 100755 index 62e773b403b..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_new_filters.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9b13662702786b513822ca25bf9e1c11e9acc9bd97facb318a898cdb7c95b2b6 -size 50952 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home.png deleted file mode 100644 index 3df8ad8d060..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a23b5996ef048edfa93e010e581e532a7791d09f657d483b241b1f673a4f6c4 -size 430916 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home_updated.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home_updated.png deleted file mode 100644 index 2a447a99bdd..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_home_updated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8df96e0861372500a0dd8aecdf7e6e6584bda83c1445f5218a620f31e716ae0c -size 214008 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_kb.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_kb.png deleted file mode 100644 index d514f9e982e..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_kb.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:636d24d815bc0efd9acbdfbb6313f526953bb1a584e807513835599f24dca73a -size 113691 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_numbered.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_numbered.png deleted file mode 100644 index 8592991244b..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_project_numbered.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:417dc73b0d05bfabec519e7521a3d73cce9fb50ceb49f0dd66e75ee67bec2b47 -size 127852 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki.png deleted file mode 100644 index 3822a668540..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9d85f19c698beba6323dfa6feddde7df74ad9e4194cf2ad2bab42b45fdbd2c61 -size 111456 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_1.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_1.png deleted file mode 100755 index fb753f9bbb2..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4c6d069b990e5c5e68d91ae7aa439482e7e55eb13386e63adf89c880b47237cf -size 490500 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_2.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_2.png deleted file mode 100644 index f1fdf6da59b..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25a0ab4fdde71016125e5950db30feecdecd43d1aab3634133b289fe33f1505a -size 136789 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_5.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_5.png deleted file mode 100644 index 2c75ab1ab61..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_overview_wiki_5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5f69f2566cb41b173ba99cad2dc269b3ada12b8ebeb968c1dcb96933d0865af3 -size 155570 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_analysis_result.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_analysis_result.png deleted file mode 100644 index 56fc92f82c5..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_analysis_result.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:09100c79e00a01d035b85104360ea0301f22b9bbb1585bce00d8d9a0887f6c41 -size 128442 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_errors.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_errors.png deleted file mode 100644 index 1a9d4c4230c..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_errors.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c4e5f33a6656db25d02665f61b75648e294d1db49683f7487248bc443f9e2a6 -size 216545 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_incompatible.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_incompatible.png deleted file mode 100644 index 09c5fe38db1..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_incompatible.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:90fb5884bb6d71da06cebccdff830b3ffbe4318d20837fbd50132eb19b3d0599 -size 215692 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project.png deleted file mode 100755 index 5599ff51022..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:46870f478e817454a0d62bc34275b305d1c29e3820c2c97c3c985ef86b79ea6d -size 112914 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_1.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_1.png deleted file mode 100644 index 8b63221c1b9..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:19f4a585398dca19195efcbab59cf8692d165c8993556ebed439cab3ef4f6bf6 -size 168617 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_2.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_2.png deleted file mode 100644 index b70d7a07a3c..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d735b553177713e5ffdde09948bf6f1c5f21cf39a4f29f20d5967b33670e05c9 -size 97363 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4.png deleted file mode 100644 index c7bac7ff5e5..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:16e35703047c5de00d3917a26fd6eed5f645937989ab60b67bd6284b3e7739c9 -size 94096 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4_edited.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4_edited.png deleted file mode 100644 index f931aa9304b..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_4_edited.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c2da4a44a051a84f55c5f0fe9b3a0bccf2056cb54dac9b38151204ab59409aa4 -size 119439 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_5.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_5.png deleted file mode 100755 index c7bac7ff5e5..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:16e35703047c5de00d3917a26fd6eed5f645937989ab60b67bd6284b3e7739c9 -size 94096 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_edited.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_edited.png deleted file mode 100644 index 38acc52b023..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_new_project_edited.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1defa7a67b78a43aa2f4b5b47b62e21aa0ecb1e87355133b4346e0c4027cfd0f -size 87860 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report.png deleted file mode 100644 index c2126eb012f..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d50a6fc8b02d56ae836594e9061d7038084751fc2c0bfe82200dc96ba215c1e4 -size 94859 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report_pdf.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report_pdf.png deleted file mode 100644 index da52ca1f1eb..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_schema_report_pdf.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7bf00bd54e1572a76c32b7f575fd6dce87a5414f06ba184ec685b2ab2695fb55 -size 155224 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_select_schema.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_select_schema.png deleted file mode 100644 index 887a8f4563b..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_select_schema.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:aa3757474aab02c7e1df27e95cd32bcab4182cf1250ec98937e6ee03ca1dc8ac -size 42250 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_verifying_ddl.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_verifying_ddl.png deleted file mode 100644 index 04285c2943a..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_verifying_ddl.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:45dd9336edd642be23387005fe7a218d06fdc01da6000df3aee689e135c02309 -size 217587 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_workaround.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_workaround.png deleted file mode 100644 index c5d186146cb..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_assessment_workaround.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:26cddaba757a3267c6cea02eaa8a54bb62a2da657e2ad2cdcc9897119c320f0a -size 202585 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_dependent_objects.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_dependent_objects.png deleted file mode 100755 index c5dec37a8b1..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_dependent_objects.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8c56932629d9bb6e048cb79f43f967769869361ee927d63fa47a4f3b5c5d5de6 -size 24500 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_list.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_list.png deleted file mode 100755 index ab0623f9162..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_list.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c56d5244d188809f68da267ea8627da0205a8bef67e5f8a967efa78c31714158 -size 24444 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_paths.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_paths.png deleted file mode 100755 index bf244835bff..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_paths.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1e619fb8c11287a160bb8470e122f01bdd80d22aed7a7cab162485310000f958 -size 24866 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_target.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_target.png deleted file mode 100755 index 717a904e658..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_extraction_target.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:acf3d8ff33c458941e20acfbff66491ca5b63ed225978af7639535e4c434894e -size 29360 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster.png deleted file mode 100755 index 0e966348fb9..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cd2df1d3978c10b62f18749732934d2c6c3d04d694e272aef28564541896b533 -size 130231 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_page.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_page.png deleted file mode 100755 index fe4494ffa01..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_page.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c9e8481c87e055b99ddabd50ac9a887bd9c1f0bd8c06d8c23d65f22b06b9a8ab -size 159522 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_test.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_test.png deleted file mode 100755 index 7594ba653b8..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_cluster_connection_test.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b9115f6f4b2bdca854feaf42ab5dc3169d47b22a759e6a28a6f06a19e062dbab -size 176689 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_mig_success.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_mig_success.png deleted file mode 100755 index cee55ac7438..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_mig_success.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:265f609bd27a36ee980ad46602a8db012d265e5835784cf91a308f7fcd2c9dfb -size 149182 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_schemas_selection.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_schemas_selection.png deleted file mode 100755 index d17e7a9b1b7..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_epas_schemas_selection.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:66c444ed83d7931a02a0c5fdb502c8638b2d78cc775e828fb111bbfd544c5050 -size 140677 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_option.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_option.png deleted file mode 100755 index 7b81eedc871..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_cloud_option.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ac0c368b2ee346f4fdc97934fdccbe11e1ac7b8cc5c39157720218559bbd37e -size 137500 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_contact_us.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_contact_us.png deleted file mode 100755 index 8c0754cf39c..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_contact_us.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d84e4c6a82326e175a4fda3ca23f54892223b3c5eee21b680bc850816b41cf8f -size 52042 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_download.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_download.png deleted file mode 100644 index 33fb51413ea..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_download.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b83106533e71fbfa53b7598fcc5094e0258d1e67a40d313b693a8ea90791e8f1 -size 192379 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_mig_success.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_mig_success.png deleted file mode 100644 index 338f9a4515c..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_mig_success.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3b003be09df765b60b2f962cbb094baaa0f8cde3a53591a56ca71e973c445d91 -size 169852 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection.png deleted file mode 100644 index 8f8f3f6c2b0..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:40a9b17fef8d0ea136925e97edf99ed9f90fde504afde418c4ab847350639c3c -size 186000 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection_linux.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection_linux.png deleted file mode 100644 index 8f8f3f6c2b0..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_schemas_selection_linux.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:40a9b17fef8d0ea136925e97edf99ed9f90fde504afde418c4ab847350639c3c -size 186000 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_windows.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_windows.png deleted file mode 100644 index 0aa977644fa..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_epas_windows.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:421037aaf7c6acc1fd6998768dac54b920ad1ea43fd1664dc65707648d56a8ff -size 178956 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_linux.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_linux.png deleted file mode 100644 index 5adca876fb6..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_exist_linux.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a6d0c70a7ed53ff1b3eddfd68ec483e41c3c8b5e15ea12177b72737a5826ecff -size 210686 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_download.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_download.png deleted file mode 100644 index 06614fca8fb..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_download.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e3c1119a13d9567584ef76b8884141a02770566d0ffc4cbba01b81d52f3b13a7 -size 205676 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_import.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_import.png deleted file mode 100644 index 16a3c800cdd..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_import.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:37aea458cc6652e2a23041cafa47a64302ff1de0caac293c5015274782de36cc -size 205158 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux.png deleted file mode 100644 index f7e06ab6900..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a9cce6e61080592e2834c004f6029e91997282e2b7d3d8670b8f96fa7426b98e -size 185125 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_guide.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_guide.png deleted file mode 100644 index 7bc3476c94e..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_guide.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dc76b9683b65a2cd70919a436ffc5ee2849587670e3c622315280af52e9ae6d9 -size 186196 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_import.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_import.png deleted file mode 100644 index 6a8a9f2f94d..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_import.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a62f9f25a93d935d9d81fa4c5316d25dc4bbd56263a4946c87d9dbf115a94d3b -size 234193 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_repo.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_repo.png deleted file mode 100644 index 23f06f2e6a8..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_linux_repo.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ea5d5c70c5b6e04897bfab6ff4891778020f2ca065d1dd7b022f75ae3a936340 -size 181803 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success..png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success..png deleted file mode 100644 index b1af4131261..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success..png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:aa6be17bb95cc51d751d95a56de59805e780d6ec4e4705b015657e715c82e699 -size 182075 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success.png deleted file mode 100644 index b1af4131261..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_mig_success.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:aa6be17bb95cc51d751d95a56de59805e780d6ec4e4705b015657e715c82e699 -size 182075 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection copy.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection copy.png deleted file mode 100755 index 1231ed9fd9a..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection copy.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a2486bde83942467f6f99a5d36d2e0c300c6d1aa4f32c4a07a320670f092a678 -size 127554 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection.png deleted file mode 100644 index 85774982250..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_schemas_selection.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8de749ce4553c6c56a48716dbd4b60cc6d13b7e133a28276b16b44de155194e4 -size 175424 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows.png deleted file mode 100644 index de4c8418b31..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1dab6f9fbc7fd4cae466a8b4327ed594f5046aedb1d4bdff664809c02055d2f5 -size 184267 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_guide.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_guide.png deleted file mode 100644 index 20d246f64af..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_guide.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:591554c1572fbafb55b7c6a59b03268aa2abb5bb49f1f854041804f6fc242904 -size 190554 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_import.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_import.png deleted file mode 100755 index afcee8c6e8f..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_import.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f0b1c0b191617744735f45d7158adb3dcc40ef69d2e0709db12e7252cde6f63e -size 201437 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_installer.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_installer.png deleted file mode 100644 index 5a89105cd45..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_mig_new_epas_windows_installer.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:219ac2e679493b727c56aea2266ccfde3fd7d097ed49297659180bd23ff48f9c -size 182548 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_cds.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_cds.png deleted file mode 100755 index 8449131fd2e..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_cds.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b5989e44a876c96cabbd330aa151e3a1d129567d20cd06079306f7a76ca620b9 -size 72596 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_details.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_details.png deleted file mode 100755 index 098f9ac5022..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_details.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:44343b4cac8734d13ebb8df805ebe2be8c18bbcf7f9fb142bc04b183568df1ae -size 61238 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_successful.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_successful.png deleted file mode 100755 index 39ef725874a..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_connection_successful.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1fdf8c72195f5aa86e478df468904f4828e96453f1852d57df52a9e97cd080b2 -size 112507 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_deployed.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_deployed.png deleted file mode 100755 index 5a7d70bb5da..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_deployed.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:76dcb59d583f2923da4a04ec1eb203652608ac489747e1622a45d4cce1d73204 -size 19788 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_button.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_button.png deleted file mode 100755 index 10fe8cc4f74..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_button.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:537d36adbc115fe1f807f3167b37fdeb07ff6b1437029557b4a5b3693a0ffc3e -size 18816 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_option.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_option.png deleted file mode 100755 index 3f9f03e8829..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_download_file_option.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d5b98174a1d80953cdca6a3cb93e48694f54062450b5657c0643300b9c038e38 -size 73606 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_existing_epas.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_existing_epas.png deleted file mode 100755 index 7a928e18c19..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_existing_epas.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5755bcee19305d3f08a806be23e47abca871ef3a79e311cfff565817d6861570 -size 229651 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home.png deleted file mode 100755 index 22fe5b1c37c..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e322d2c67e5e78f511ae226b0c9d99323cbb35ed91204027b853ea83da37c2b0 -size 230803 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_cloud.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_cloud.png deleted file mode 100755 index f91b6ab2c61..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_cloud.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ef156130d5a720bea9071ddeb4dc63c9754902b680b1437c588c5cacc07ad105 -size 222379 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_new.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_new.png deleted file mode 100755 index 22fe5b1c37c..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_home_new.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e322d2c67e5e78f511ae226b0c9d99323cbb35ed91204027b853ea83da37c2b0 -size 230803 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas (copy).png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas (copy).png deleted file mode 100755 index 3389d885782..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas (copy).png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b75281f9e776877c05b61883225d93380b00257559791dc36e7deba983eb1c29 -size 30237 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas.png deleted file mode 100755 index 3389d885782..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_schema_migration_select_schemas.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b75281f9e776877c05b61883225d93380b00257559791dc36e7deba983eb1c29 -size 30237 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal.png deleted file mode 100644 index b3cab175dea..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2e37dd564743f32ca8c997bd0d6df633f7de681f46f31ce042e1f624104eab6b -size 222608 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal_accessing.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal_accessing.png deleted file mode 100755 index 2b7b16420d5..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_using_portal_accessing.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d74e2a090887df3569f380836b401dfc5363d1a50ce75889071e191e477cbc78 -size 1544806 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_assessment_report_rh_counts.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_assessment_report_rh_counts.png deleted file mode 100755 index 0c7f2f1a6ee..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_assessment_report_rh_counts.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:17554f7befceab4da74871c87f0a62d5164004e5cb8678ba0d2b0be1a477dda8 -size 278021 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_branding_updates.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_branding_updates.png deleted file mode 100755 index f8210e618c1..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_branding_updates.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6718631ec3c941820fe0229c58593d7ff460f6157af9620e14a03b923b01948b -size 145024 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_common_failures.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_common_failures.png deleted file mode 100644 index 6a0fd0a0085..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_common_failures.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1cd1b57486f5b9885dbca970d95dc28480a61ee2789b2876ae3cbf405fbc579b -size 144245 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_compatibility_guage_color.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_compatibility_guage_color.png deleted file mode 100755 index 9a1104c1f14..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_compatibility_guage_color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:462d65fd28dc30a936819b2bf28fbef1d63b6c342436651a40cd19ba7543d579 -size 121274 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_csv.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_csv.png deleted file mode 100755 index 42d44ed986f..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_csv.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d90f083cedadf649439c5c323d6220541e035f79482467a21fa16da55fd6ec97 -size 159592 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_objects_repaired_by_me.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_objects_repaired_by_me.png deleted file mode 100755 index 89be2bd99bd..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_objects_repaired_by_me.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3240f22c6bf36138b43c618b6f39f720b8697544f9e44bee8b364e65c1642741 -size 70305 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_prepopulated_email.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_prepopulated_email.png deleted file mode 100755 index 27179ccc770..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_prepopulated_email.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:58580277697761c4bfaa135c8d4fb36ab0cd438de8653f0b3e3828464096aa33 -size 115228 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_warning_sign.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_warning_sign.png deleted file mode 100755 index 6b86bc86b3c..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/mp_whats_new_warning_sign.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dfaf2a6092aee677bfa4e46988664c5c38e3f67fabd147756a1e756e9a182c1a -size 369021 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/project page overview.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/project page overview.png deleted file mode 100755 index 360c867e842..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/project page overview.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:602f25fc09afa41ccad65655958d75b9bdb786cda64b4a9766053f1e0e37eab2 -size 151290 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/select-operating-system-linux.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/select-operating-system-linux.png deleted file mode 100644 index f7e06ab6900..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/select-operating-system-linux.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a9cce6e61080592e2834c004f6029e91997282e2b7d3d8670b8f96fa7426b98e -size 185125 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/test.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/test.png deleted file mode 100755 index 5d3a6590d2c..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/test.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b3759a2786c1db3308a8ea102e5301019ec5e0a97e9b7392388cf4a69c95d7c -size 43844 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/whats_new_new_look.png b/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/whats_new_new_look.png deleted file mode 100755 index 414997d77b2..00000000000 --- a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/whats_new_new_look.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9293bdc3b62a0925349cc704f92b2eec433abee3257f19bbf171c00afae7639e -size 171480 diff --git a/product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/schema_object_selection.png b/product_docs/docs/migration_portal/4/images/schema_object_selection.png similarity index 100% rename from product_docs/docs/migration_portal/4/04_mp_migrating_database/01_mp_schema_extraction/images/schema_object_selection.png rename to product_docs/docs/migration_portal/4/images/schema_object_selection.png