From e095d68ca687a4ebc48133bfa698f09fe7f1947b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 1 Feb 2023 12:03:57 -0500 Subject: [PATCH 1/9] Command line parameters --- .../installer/command_line_parameters.mdx | 148 ++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 advocacy_docs/supported-open-source/postgresql/installer/command_line_parameters.mdx diff --git a/advocacy_docs/supported-open-source/postgresql/installer/command_line_parameters.mdx b/advocacy_docs/supported-open-source/postgresql/installer/command_line_parameters.mdx new file mode 100644 index 00000000000..ebd5c0e9924 --- /dev/null +++ b/advocacy_docs/supported-open-source/postgresql/installer/command_line_parameters.mdx @@ -0,0 +1,148 @@ +--- +title: "PostgreSQL command line parameters" +navTitle: "Command line parameters" +--- + +You can optionally include parameters for a PostgreSQL installation on the command line when invoking the PostgreSQL installer on Windows or MacOS. + +## Windows parameters + +`--create_shortcuts ` + +Specifies whether menu shortcuts are created. +- Default: 1 (yes) + +`--datadir ` + +Specifies a location for the cluster's data directory +- Default: `C:\Program Files\PostgreSQL\15\data` + +`--debuglevel ` + +Sets the level of detail written to the debug file. Higher values generate more detailed information. +- Default: `2` +- Allowed: `0` `1` `2` `3` `4` + +`--debugtrace ` + +Specifies the filename containing installation details for troubleshooting purposes. + +`--disable-components ` + +Provides a comma-separated list of components that should not be installed +- Default: +- Allowed: `server` `pgAdmin` `stackbuilder` `commandlinetools` + +`--enable_acledit ` + +Checks and gives read permissions on the complete data directory path for the service account. +- Default: `0` (no) + +`--enable-components ` + +Provides a comma-separated list of components to be installed +- Default: `server`,`pgAdmin`,`stackbuilder`,`commandlinetools` +- Allowed: `server` `pgAdmin` `stackbuilder` `commandlinetools` + +`--extract-only ` + +Indicates that the installer should extract the PostgreSQL binaries without performing an installation +- Default: no + +`--help` + +Displays the list of valid options + +`--install_runtimes ` + +Specifies whether to install Microsoft Visual C++ runtime libraries before the installation proceeds. +- Default: `1` (yes) + +`--installer-language ` + +Specifies the installer language +- Default: `en` +- Allowed: `en` | `es` | `fr` + +`--locale ` +Specifies the locale for the PostgreSQL cluster +- Default: The locale detected by initdb + +`--mode ` + +Specifies the installation mode +- Default: `qt` (use the Qt graphical toolkit) +- Allowed: `qt` `win32` `unattended` + +`--optionfile ` + +Specifies the name and complete path to a file that contains installation configuration options. + +`--prefix ` + +Specifies an installation directory +- Default: `C:\Program Files\PostgreSQL\15` + +`--serverport ` + +Specifies a listener port number for PostgreSQL +- Default: 5432 + +`--serviceaccount ` + +Sets the operating system user account that owns the server process. +- Default: `postgres` + +`--servicename ` + +Sets the name of the database service. + +`--servicepassword ` + +Sets the password for the operating system user account that owns the server process. +- Default: The superuser password + +`--superaccount ` + +Sets the user name of the database superuser. +- Default: `postgres` + +`--superpassword ` + +Specifies the database superuser password + +`--unattendedmodeui ` + + +Specifies the installer behavior during an unattended installation +- Default: `minimal` +- Allowed: `none`| `minimal` | `minimalWithDialogs` + +`--version` + +Displays version information about the installer + + + + + + + + + + + + + + + + + + + + + + + + + From 14aef099ce0f877663447e75ba5fb3f58b0a9689 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 2 Feb 2023 10:45:03 -0500 Subject: [PATCH 2/9] Experimenting with tables --- .../installer/command_line_parameters.mdx | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/advocacy_docs/supported-open-source/postgresql/installer/command_line_parameters.mdx b/advocacy_docs/supported-open-source/postgresql/installer/command_line_parameters.mdx index ebd5c0e9924..df3f2a9d76c 100644 --- a/advocacy_docs/supported-open-source/postgresql/installer/command_line_parameters.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installer/command_line_parameters.mdx @@ -7,15 +7,10 @@ You can optionally include parameters for a PostgreSQL installation on the comma ## Windows parameters -`--create_shortcuts ` - -Specifies whether menu shortcuts are created. -- Default: 1 (yes) - -`--datadir ` - -Specifies a location for the cluster's data directory -- Default: `C:\Program Files\PostgreSQL\15\data` +| Parameter | Description | +| --------------------------------------- | ----------- | +| `--create_shortcuts ` | Specifies whether menu shortcuts are created
Default: `1` (yes) | +| `--datadir ` | Specifies a location for the cluster's data directory
Default: `C:\Program Files\PostgreSQL\15\data` | `--debuglevel ` From 089f7cc48764367deb7c8bb7bed8a3af42d4ede9 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 6 Feb 2023 10:53:30 -0500 Subject: [PATCH 3/9] Table version of Windows params, MacOS params, reorg position of file --- .../command_line_parameters.mdx | 83 ++++++++++ .../index.mdx | 3 + .../installer/command_line_parameters.mdx | 143 ------------------ 3 files changed, 86 insertions(+), 143 deletions(-) create mode 100644 advocacy_docs/supported-open-source/postgresql/installer/02_installing_postgresql_with_the_graphical_installation_wizard/command_line_parameters.mdx delete mode 100644 advocacy_docs/supported-open-source/postgresql/installer/command_line_parameters.mdx diff --git a/advocacy_docs/supported-open-source/postgresql/installer/02_installing_postgresql_with_the_graphical_installation_wizard/command_line_parameters.mdx b/advocacy_docs/supported-open-source/postgresql/installer/02_installing_postgresql_with_the_graphical_installation_wizard/command_line_parameters.mdx new file mode 100644 index 00000000000..0a24c105f3d --- /dev/null +++ b/advocacy_docs/supported-open-source/postgresql/installer/02_installing_postgresql_with_the_graphical_installation_wizard/command_line_parameters.mdx @@ -0,0 +1,83 @@ +--- +title: "PostgreSQL command line parameters" +navTitle: "Command line parameters" +--- + +You can optionally include parameters for a PostgreSQL installation on the command line when invoking the PostgreSQL installer on Windows or MacOS. + +## Windows parameters + +| Parameter | Description | +| ------------------------------------------- | ----------- | +| `--create_shortcuts ` | Specifies whether menu shortcuts are created
Default: `1` (yes) | +| `--datadir ` | Specifies a location for the cluster's data directory
Default: `C:\Program Files\PostgreSQL\15\data` | +| `--debuglevel ` | Sets the level of detail written to the debug file. Higher values generate more detailed information
Default: `2`
Allowed: `0` `1` `2` `3` `4` | +| `--debugtrace ` | Specifies the filename containing installation details used for troubleshooting purposes | +| `--disable-components ` | Provides a comma-separated list of components that should not be installed
Allowed: `server` `pgAdmin` `stackbuilder` `commandlinetools` | +| `--enable_acledit ` | Checks and gives read permissions on the complete data directory path for the service account
Default: `0` (no) | +| `--enable-components ` | Provides a comma-separated list of components to be installed
Default: `server` `pgAdmin` `stackbuilder` `commandlinetools`
Allowed: `server` `pgAdmin` `stackbuilder` `commandlinetools` | +| `--extract-only ` | Indicates that the installer should extract the PostgreSQL binaries without performing an installation
Default: `0` (no) | +| `--help` | Displays the list of valid options | +| `--install_runtimes ` | Specifies whether to install Microsoft Visual C++ runtime libraries before the installation proceeds
Default: `1` (yes) | +| `--installer-language ` | Specifies the installer language
Default: `en`
Allowed: `en` `es` `fr` | +| `--locale ` | Specifies the locale for the PostgreSQL cluster
Default: The locale detected by `initdb` | +| `--mode ` | Specifies the installation mode
Default: `qt` (use the Qt graphical toolkit)
Allowed: `qt` `win32` `unattended` | +| `--optionfile ` | Specifies the name and complete path to a file that contains installation configuration options | +| `--prefix ` | Specifies an installation directory
Default: `C:\Program Files\PostgreSQL\15` | +| `--serverport ` | Specifies a listener port number for PostgreSQL
Default: `5432` | +| `--serviceaccount ` | Sets the operating system user account that owns the server process
Default: `postgres` | +| `--servicename ` | Sets the name of the database service | +| `--servicepassword ` | Sets the password for the operating system user account that owns the server process
Default: The superuser password | +| `--superaccount ` | Sets the user name of the database superuser
Default: `postgres` | +| `--superpassword ` | Specifies the database superuser password | +| `--unattendedmodeui ` | Specifies the installer behavior during an unattended installation
Default: `minimal`
Allowed: `none` `minimal` `minimalWithDialogs` | +| `--version` | Displays version information about the installer | + +## MacOS parameters + +| Parameter | Description | +| ------------------------------------------- | ----------- | +| `--create_shortcuts ` | Specifies whether menu shortcuts are created
Default: `1` (yes) | +| `--datadir ` | Specifies a location for the cluster's data directory
Default: `/Library/PostgreSQL/15/data` | +| `--debuglevel ` | Sets the level of detail written to the debug file. Higher values generate more detailed information
Default: `2`
Allowed: `0` `1` `2` `3` `4` | +| `--debugtrace ` | Specifies the filename containing installation details used for troubleshooting purposes | +| `--disable-components ` | Provides a comma-separated list of components that should not be installed
Allowed: `server` `pgAdmin` `stackbuilder` `commandlinetools` | +| `--enable-components ` | Provides a comma-separated list of components to be installed
Default: `server` `pgAdmin` `stackbuilder` `commandlinetools`
Allowed: `server` `pgAdmin` `stackbuilder` `commandlinetools` | +| `--extract-only ` | Indicates that the installer should extract the PostgreSQL binaries without performing an installation
Default: `0` (no) | +| `--help` | Displays the list of valid options | +| `--installer-language ` | Specifies the installer language
Default: `en`
Allowed: `en` `es` `fr` | +| `--locale ` | Specifies the locale for the PostgreSQL cluster
Default: The locale detected by `initdb` | +| `--mode ` | Specifies the installation mode
Default: `qt` (use the Qt graphical toolkit)
Allowed: `qt` `osx` `text` `unattended` | +| `--optionfile ` | Specifies the name and complete path to a file that contains installation configuration options | +| `--prefix ` | Specifies an installation directory
Default: `/Library/PostgreSQL/15` | +| `--serverport ` | Specifies a listener port number for PostgreSQL
Default: `5432` | +| `--serviceaccount ` | Sets the operating system user account that owns the server process
Default: `postgres` | +| `--servicename ` | Sets the name of the database service | +| `--superaccount ` | Sets the user name of the database superuser
Default: `postgres` | +| `--superpassword ` | Specifies the database superuser password | +| `--unattendedmodeui ` | Specifies the installer behavior during an unattended installation
Default: `minimal`
Allowed: `none` `minimal` `minimalWithDialogs` | +| `--version` | Displays version information about the installer | + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/advocacy_docs/supported-open-source/postgresql/installer/02_installing_postgresql_with_the_graphical_installation_wizard/index.mdx b/advocacy_docs/supported-open-source/postgresql/installer/02_installing_postgresql_with_the_graphical_installation_wizard/index.mdx index 757b625d403..624b205854a 100644 --- a/advocacy_docs/supported-open-source/postgresql/installer/02_installing_postgresql_with_the_graphical_installation_wizard/index.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installer/02_installing_postgresql_with_the_graphical_installation_wizard/index.mdx @@ -10,6 +10,7 @@ legacyRedirects: navigation: - windows - macos + - command_line_parameters --- EDB installation wizards provide an easy way to install PostgreSQL on a Mac or Windows system. The wizard prompts you to specify information about your system. It then starts the installation based on your selections. @@ -22,3 +23,5 @@ When the PostgreSQL installation finishes, you can optionally invoke the Stack B To download the EDB graphical PostgreSQL installers for Windows and Mac, see the [EDB downloads page](https://www.enterprisedb.com/downloads/postgresql). EDB also makes PostgreSQL Early Experience distributions available. For details, see [PostgreSQL Early Experience](https://www.enterprisedb.com/postgresql-early-experience). + +If you are installing PostgreSQL from the command line, you may want to take advantage of [command line parameters](command_line_parameters). \ No newline at end of file diff --git a/advocacy_docs/supported-open-source/postgresql/installer/command_line_parameters.mdx b/advocacy_docs/supported-open-source/postgresql/installer/command_line_parameters.mdx deleted file mode 100644 index df3f2a9d76c..00000000000 --- a/advocacy_docs/supported-open-source/postgresql/installer/command_line_parameters.mdx +++ /dev/null @@ -1,143 +0,0 @@ ---- -title: "PostgreSQL command line parameters" -navTitle: "Command line parameters" ---- - -You can optionally include parameters for a PostgreSQL installation on the command line when invoking the PostgreSQL installer on Windows or MacOS. - -## Windows parameters - -| Parameter | Description | -| --------------------------------------- | ----------- | -| `--create_shortcuts ` | Specifies whether menu shortcuts are created
Default: `1` (yes) | -| `--datadir ` | Specifies a location for the cluster's data directory
Default: `C:\Program Files\PostgreSQL\15\data` | - -`--debuglevel ` - -Sets the level of detail written to the debug file. Higher values generate more detailed information. -- Default: `2` -- Allowed: `0` `1` `2` `3` `4` - -`--debugtrace ` - -Specifies the filename containing installation details for troubleshooting purposes. - -`--disable-components ` - -Provides a comma-separated list of components that should not be installed -- Default: -- Allowed: `server` `pgAdmin` `stackbuilder` `commandlinetools` - -`--enable_acledit ` - -Checks and gives read permissions on the complete data directory path for the service account. -- Default: `0` (no) - -`--enable-components ` - -Provides a comma-separated list of components to be installed -- Default: `server`,`pgAdmin`,`stackbuilder`,`commandlinetools` -- Allowed: `server` `pgAdmin` `stackbuilder` `commandlinetools` - -`--extract-only ` - -Indicates that the installer should extract the PostgreSQL binaries without performing an installation -- Default: no - -`--help` - -Displays the list of valid options - -`--install_runtimes ` - -Specifies whether to install Microsoft Visual C++ runtime libraries before the installation proceeds. -- Default: `1` (yes) - -`--installer-language ` - -Specifies the installer language -- Default: `en` -- Allowed: `en` | `es` | `fr` - -`--locale ` -Specifies the locale for the PostgreSQL cluster -- Default: The locale detected by initdb - -`--mode ` - -Specifies the installation mode -- Default: `qt` (use the Qt graphical toolkit) -- Allowed: `qt` `win32` `unattended` - -`--optionfile ` - -Specifies the name and complete path to a file that contains installation configuration options. - -`--prefix ` - -Specifies an installation directory -- Default: `C:\Program Files\PostgreSQL\15` - -`--serverport ` - -Specifies a listener port number for PostgreSQL -- Default: 5432 - -`--serviceaccount ` - -Sets the operating system user account that owns the server process. -- Default: `postgres` - -`--servicename ` - -Sets the name of the database service. - -`--servicepassword ` - -Sets the password for the operating system user account that owns the server process. -- Default: The superuser password - -`--superaccount ` - -Sets the user name of the database superuser. -- Default: `postgres` - -`--superpassword ` - -Specifies the database superuser password - -`--unattendedmodeui ` - - -Specifies the installer behavior during an unattended installation -- Default: `minimal` -- Allowed: `none`| `minimal` | `minimalWithDialogs` - -`--version` - -Displays version information about the installer - - - - - - - - - - - - - - - - - - - - - - - - - From 98c1623d69287016f0d21d7ebcb3f39a3bed1fc9 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 7 Feb 2023 09:11:18 -0500 Subject: [PATCH 4/9] Consolidated Windows and Mac descriptions --- .../command_line_parameters.mdx | 42 +++---------------- 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/advocacy_docs/supported-open-source/postgresql/installer/02_installing_postgresql_with_the_graphical_installation_wizard/command_line_parameters.mdx b/advocacy_docs/supported-open-source/postgresql/installer/02_installing_postgresql_with_the_graphical_installation_wizard/command_line_parameters.mdx index 0a24c105f3d..3f693ba7e74 100644 --- a/advocacy_docs/supported-open-source/postgresql/installer/02_installing_postgresql_with_the_graphical_installation_wizard/command_line_parameters.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installer/02_installing_postgresql_with_the_graphical_installation_wizard/command_line_parameters.mdx @@ -3,64 +3,34 @@ title: "PostgreSQL command line parameters" navTitle: "Command line parameters" --- -You can optionally include parameters for a PostgreSQL installation on the command line when invoking the PostgreSQL installer on Windows or MacOS. - -## Windows parameters +On Windows and MacOS you can optionally include parameters for a PostgreSQL installation on the command line when invoking the PostgreSQL installer. | Parameter | Description | | ------------------------------------------- | ----------- | | `--create_shortcuts ` | Specifies whether menu shortcuts are created
Default: `1` (yes) | -| `--datadir ` | Specifies a location for the cluster's data directory
Default: `C:\Program Files\PostgreSQL\15\data` | +| `--datadir ` | Specifies a location for the cluster's data directory
Windows default: `C:\Program Files\PostgreSQL\15\data`
MacOS default: `/Library/PostgreSQL/15/data`| | `--debuglevel ` | Sets the level of detail written to the debug file. Higher values generate more detailed information
Default: `2`
Allowed: `0` `1` `2` `3` `4` | | `--debugtrace ` | Specifies the filename containing installation details used for troubleshooting purposes | | `--disable-components ` | Provides a comma-separated list of components that should not be installed
Allowed: `server` `pgAdmin` `stackbuilder` `commandlinetools` | -| `--enable_acledit ` | Checks and gives read permissions on the complete data directory path for the service account
Default: `0` (no) | +| `--enable_acledit ` | (Windows only) Checks and gives read permissions on the complete data directory path for the service account
Default: `0` (no) | | `--enable-components ` | Provides a comma-separated list of components to be installed
Default: `server` `pgAdmin` `stackbuilder` `commandlinetools`
Allowed: `server` `pgAdmin` `stackbuilder` `commandlinetools` | | `--extract-only ` | Indicates that the installer should extract the PostgreSQL binaries without performing an installation
Default: `0` (no) | | `--help` | Displays the list of valid options | | `--install_runtimes ` | Specifies whether to install Microsoft Visual C++ runtime libraries before the installation proceeds
Default: `1` (yes) | | `--installer-language ` | Specifies the installer language
Default: `en`
Allowed: `en` `es` `fr` | | `--locale ` | Specifies the locale for the PostgreSQL cluster
Default: The locale detected by `initdb` | -| `--mode ` | Specifies the installation mode
Default: `qt` (use the Qt graphical toolkit)
Allowed: `qt` `win32` `unattended` | +| `--mode ` | Specifies the installation mode
Default: `qt` (use the Qt graphical toolkit)
Allowed Windows values: `qt` `win32` `unattended`
Allowed MacOS values: `qt` `osx` `text` `unattended` | | `--optionfile ` | Specifies the name and complete path to a file that contains installation configuration options | -| `--prefix ` | Specifies an installation directory
Default: `C:\Program Files\PostgreSQL\15` | +| `--prefix ` | Specifies an installation directory
Windows default: `C:\Program Files\PostgreSQL\15`
MacOS default: `/Library/PostgreSQL/15` | | `--serverport ` | Specifies a listener port number for PostgreSQL
Default: `5432` | | `--serviceaccount ` | Sets the operating system user account that owns the server process
Default: `postgres` | | `--servicename ` | Sets the name of the database service | -| `--servicepassword ` | Sets the password for the operating system user account that owns the server process
Default: The superuser password | +| `--servicepassword ` | (Windows only) Sets the password for the operating system user account that owns the server process
Default: The superuser password | | `--superaccount ` | Sets the user name of the database superuser
Default: `postgres` | | `--superpassword ` | Specifies the database superuser password | | `--unattendedmodeui ` | Specifies the installer behavior during an unattended installation
Default: `minimal`
Allowed: `none` `minimal` `minimalWithDialogs` | | `--version` | Displays version information about the installer | -## MacOS parameters - -| Parameter | Description | -| ------------------------------------------- | ----------- | -| `--create_shortcuts ` | Specifies whether menu shortcuts are created
Default: `1` (yes) | -| `--datadir ` | Specifies a location for the cluster's data directory
Default: `/Library/PostgreSQL/15/data` | -| `--debuglevel ` | Sets the level of detail written to the debug file. Higher values generate more detailed information
Default: `2`
Allowed: `0` `1` `2` `3` `4` | -| `--debugtrace ` | Specifies the filename containing installation details used for troubleshooting purposes | -| `--disable-components ` | Provides a comma-separated list of components that should not be installed
Allowed: `server` `pgAdmin` `stackbuilder` `commandlinetools` | -| `--enable-components ` | Provides a comma-separated list of components to be installed
Default: `server` `pgAdmin` `stackbuilder` `commandlinetools`
Allowed: `server` `pgAdmin` `stackbuilder` `commandlinetools` | -| `--extract-only ` | Indicates that the installer should extract the PostgreSQL binaries without performing an installation
Default: `0` (no) | -| `--help` | Displays the list of valid options | -| `--installer-language ` | Specifies the installer language
Default: `en`
Allowed: `en` `es` `fr` | -| `--locale ` | Specifies the locale for the PostgreSQL cluster
Default: The locale detected by `initdb` | -| `--mode ` | Specifies the installation mode
Default: `qt` (use the Qt graphical toolkit)
Allowed: `qt` `osx` `text` `unattended` | -| `--optionfile ` | Specifies the name and complete path to a file that contains installation configuration options | -| `--prefix ` | Specifies an installation directory
Default: `/Library/PostgreSQL/15` | -| `--serverport ` | Specifies a listener port number for PostgreSQL
Default: `5432` | -| `--serviceaccount ` | Sets the operating system user account that owns the server process
Default: `postgres` | -| `--servicename ` | Sets the name of the database service | -| `--superaccount ` | Sets the user name of the database superuser
Default: `postgres` | -| `--superpassword ` | Specifies the database superuser password | -| `--unattendedmodeui ` | Specifies the installer behavior during an unattended installation
Default: `minimal`
Allowed: `none` `minimal` `minimalWithDialogs` | -| `--version` | Displays version information about the installer | - - - - From 4356618ffcab2fd6a1bd391675efcf42d82877db Mon Sep 17 00:00:00 2001 From: sethijs <85316200+sethijs@users.noreply.github.com> Date: Tue, 7 Feb 2023 09:36:12 -0500 Subject: [PATCH 5/9] Fix Chemaxon Guide Title --- .../partner_docs/ChemaxonJChemPostgreSQLCartridge/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/advocacy_docs/partner_docs/ChemaxonJChemPostgreSQLCartridge/index.mdx b/advocacy_docs/partner_docs/ChemaxonJChemPostgreSQLCartridge/index.mdx index ded6d184b37..01328017230 100644 --- a/advocacy_docs/partner_docs/ChemaxonJChemPostgreSQLCartridge/index.mdx +++ b/advocacy_docs/partner_docs/ChemaxonJChemPostgreSQLCartridge/index.mdx @@ -1,5 +1,5 @@ --- -title: 'Commvault Backup & Recovery Implementation Guide' +title: 'Chemaxon JChem PostgreSQL Cartridge Implementation Guide' indexCards: simple directoryDefaults: iconName: handshake @@ -11,4 +11,4 @@ directoryDefaults:

EDB GlobalConnect Technology Partner Implementation Guide

Chemaxon JChem PostgreSQL Cartridge

-

This document is intended to augment each vendor’s product documentation in order to guide the reader in getting the products working together. It is not intended to show the optimal configuration for the certified integration.

\ No newline at end of file +

This document is intended to augment each vendor’s product documentation in order to guide the reader in getting the products working together. It is not intended to show the optimal configuration for the certified integration.

From d06fc7e93369665619c2f082277a636403ca0403 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 7 Feb 2023 09:50:50 -0500 Subject: [PATCH 6/9] First set of fixed links --- .../products/postgres-enterprise-manager-server/base.njk | 2 +- ...guring_the_pem_server_to_use_kerberos_authentication.mdx | 2 +- product_docs/docs/pem/9/considerations/index.mdx | 2 +- ...talling_pem_server_and_apache_web_server_preferences.mdx | 6 +++--- .../pem_pgbouncer/configuring_the_pem_agent.mdx | 2 +- .../docs/pem/9/considerations/setup_ha_using_efm.mdx | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/install_template/templates/products/postgres-enterprise-manager-server/base.njk b/install_template/templates/products/postgres-enterprise-manager-server/base.njk index 2824d1ed4a0..969a89bc9da 100644 --- a/install_template/templates/products/postgres-enterprise-manager-server/base.njk +++ b/install_template/templates/products/postgres-enterprise-manager-server/base.njk @@ -24,7 +24,7 @@ redirects: sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/considerations/authentication_options/configuring_the_pem_server_to_use_kerberos_authentication.mdx b/product_docs/docs/pem/9/considerations/authentication_options/configuring_the_pem_server_to_use_kerberos_authentication.mdx index 8822a126165..84ab56fa65e 100644 --- a/product_docs/docs/pem/9/considerations/authentication_options/configuring_the_pem_server_to_use_kerberos_authentication.mdx +++ b/product_docs/docs/pem/9/considerations/authentication_options/configuring_the_pem_server_to_use_kerberos_authentication.mdx @@ -15,7 +15,7 @@ For example, if the realm on Kerberos server is `edbpem.org`, then you can set t ## 1. Install Kerberos, the PEM server, and the PEM backend database -Install Kerberos on the machine that functions as the authentication server. Install the PEM server on a separate machine. For more information, see [Installing the PEM Server](/pem/latest/installing_pem_server/pem_server_inst_linux/). +Install Kerberos on the machine that functions as the authentication server. Install the PEM server on a separate machine. For more information, see [Installing the PEM Server](/pem/latest/installing/). Install the PEM backend database (Postgres/EDB Postgres Advanced Server) on the same machine as the PEM server or on a different one. For more information, see the Installation steps on [EDB Docs website](https://www.enterprisedb.com/docs). diff --git a/product_docs/docs/pem/9/considerations/index.mdx b/product_docs/docs/pem/9/considerations/index.mdx index f4e8b813159..c9d3c870f64 100644 --- a/product_docs/docs/pem/9/considerations/index.mdx +++ b/product_docs/docs/pem/9/considerations/index.mdx @@ -13,7 +13,7 @@ There are a number of things to consider before deploying Postgres Enterprise Ma | Considerations | Implementation instructions | | ---------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -| Is a standalone server sufficient or do you need a high availability architecture? | [Installing the server](/pem/latest/installing_pem_server/) or [Deploying high availability](setup_ha_using_efm/) | +| Is a standalone server sufficient or do you need a high availability architecture? | [Installing the server](/pem/latest/installing/) or [Deploying high availability](setup_ha_using_efm/) | | Do you need to implement connection pooling? | [Deploying connection pooling](pem_pgbouncer/) | | What type of authentication to use? | [Authentication options](authentication_options/) | | What actions should you take to avoid security vulnerabilities? | [Securing your deployment](pem_security_best_practices/) | diff --git a/product_docs/docs/pem/9/considerations/installing_pem_server_and_apache_web_server_preferences.mdx b/product_docs/docs/pem/9/considerations/installing_pem_server_and_apache_web_server_preferences.mdx index f7b9bf29f4b..637c7e4d861 100644 --- a/product_docs/docs/pem/9/considerations/installing_pem_server_and_apache_web_server_preferences.mdx +++ b/product_docs/docs/pem/9/considerations/installing_pem_server_and_apache_web_server_preferences.mdx @@ -12,18 +12,18 @@ During the PEM server installation, you can specify your hosting preferences for ## PEM server and Apache web server on separate hosts -1. Install the PEM server on both the hosts. See [Installing the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/). +1. Install the PEM server on both the hosts. See [Installing the PEM server](/pem/latest/installing/). 2. Configure the PEM server host by selecting the **Database** option on the first host. 3. Configure an Apache web server by selecting the **Web Services** option on the second host. -For more information about configuring a PEM server, see [Configuring the PEM server on Linux platforms](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more information about configuring a PEM server, see [Configuring the PEM server on Linux platforms](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note For production environments, best practice is to have the PEM server and Apache web server on separate hosts. ## PEM server and Apache web server on the same host -1. Install the PEM server. See [Installing the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/). +1. Install the PEM server. See [Installing the PEM server](/pem/latest/installing/). 2. Run the configuration script. Select the **Web Services and Database** option to install the PEM server and Apache web server on the same host. See [Configuring the PEM server on Linux platforms](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/considerations/pem_pgbouncer/configuring_the_pem_agent.mdx b/product_docs/docs/pem/9/considerations/pem_pgbouncer/configuring_the_pem_agent.mdx index 601d25ef9e9..f87e6b34a13 100644 --- a/product_docs/docs/pem/9/considerations/pem_pgbouncer/configuring_the_pem_agent.mdx +++ b/product_docs/docs/pem/9/considerations/pem_pgbouncer/configuring_the_pem_agent.mdx @@ -7,7 +7,7 @@ redirects: - /pem/latest/pem_pgbouncer/04_configuring_the_pem_agent/ --- -You can use an RPM package to install a PEM agent. For detailed installation information, see [Installating agent on Linux](../../installing_pem_agent/installing_on_linux). +You can use an RPM package to install a PEM agent. For detailed installation information, see [Installating the PEM agent](../../installing_pem_agent/). Don't configure the PEM agent responsible for sending SNMP notifications with pgBouncer. For example, if the default PEM agent installed with PEM server is used for SNMP notifications, don't configure it with pgBouncer. diff --git a/product_docs/docs/pem/9/considerations/setup_ha_using_efm.mdx b/product_docs/docs/pem/9/considerations/setup_ha_using_efm.mdx index e11fd343846..4a39ea076a0 100644 --- a/product_docs/docs/pem/9/considerations/setup_ha_using_efm.mdx +++ b/product_docs/docs/pem/9/considerations/setup_ha_using_efm.mdx @@ -32,7 +32,7 @@ The following must use the VIP address: 1. Install the following on the primary and one or more standbys: - [EDB Postgres Advanced Server](/epas/latest/epas_inst_linux/) (backend database for PEM Server) - - [PEM server](/pem/latest/installing_pem_server/) + - [PEM server](/pem/latest/installing/) - [EDB Failover Manager 4.1](/efm/latest/efm_user/03_installing_efm/) Refer to the installation instructions in the product documentation using these links or see the instructions on the [EDB repos website](https://repos.enterprisedb.com). Replace `USERNAME:PASSWORD` with your username and password in the instructions to access the EDB repositories. @@ -46,7 +46,7 @@ The following must use the VIP address: ```shell /usr/edb/pem/bin/configure-pem-server.sh -t 1 ``` - For more detail on configuration types see, [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). + For more detail on configuration types see, [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). 3. Add the following ports in the firewall on the primary and all the standby servers to allow the access: From 989e372882c17b158adaf566b136a931c63acd08 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 7 Feb 2023 11:08:16 -0500 Subject: [PATCH 7/9] Many fixes for broken links; reinserted Prerequisites topic --- .../products/postgres-enterprise-manager-server/base.njk | 4 ++-- ...figuring_the_pem_server_to_use_kerberos_authentication.mdx | 3 ++- .../pem/9/considerations/authentication_options/index.mdx | 1 + product_docs/docs/pem/9/considerations/index.mdx | 1 + ...nstalling_pem_server_and_apache_web_server_preferences.mdx | 3 ++- .../docs/pem/9/{ => considerations}/prerequisites.mdx | 0 .../docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx | 4 ++-- .../docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx | 4 ++-- .../docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx | 4 ++-- .../docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx | 4 ++-- .../docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx | 4 ++-- .../docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx | 4 ++-- .../docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx | 4 ++-- .../docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx | 4 ++-- .../docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx | 4 ++-- .../docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx | 4 ++-- .../docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx | 4 ++-- .../docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx | 4 ++-- .../docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx | 4 ++-- product_docs/docs/pem/9/installing/windows/index.mdx | 2 +- .../pem_sqlprofiler/installing_the_sql_profiler_plugin.mdx | 4 ++-- .../upgrading_pem_installation_linux_rpm.mdx | 4 ++-- 22 files changed, 39 insertions(+), 35 deletions(-) rename product_docs/docs/pem/9/{ => considerations}/prerequisites.mdx (100%) diff --git a/install_template/templates/products/postgres-enterprise-manager-server/base.njk b/install_template/templates/products/postgres-enterprise-manager-server/base.njk index 969a89bc9da..0897a50bd7c 100644 --- a/install_template/templates/products/postgres-enterprise-manager-server/base.njk +++ b/install_template/templates/products/postgres-enterprise-manager-server/base.njk @@ -13,7 +13,7 @@ redirects: {% endblock frontmatter %} {% block prodprereq %} -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). {% endblock prodprereq %}{% block pemprereq %}{% endblock pemprereq %}{% block pemsetuprepo %}{% endblock pemsetuprepo %} {% block postinstall %} @@ -24,7 +24,7 @@ redirects: sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/considerations/authentication_options/configuring_the_pem_server_to_use_kerberos_authentication.mdx b/product_docs/docs/pem/9/considerations/authentication_options/configuring_the_pem_server_to_use_kerberos_authentication.mdx index 84ab56fa65e..f623ad463ce 100644 --- a/product_docs/docs/pem/9/considerations/authentication_options/configuring_the_pem_server_to_use_kerberos_authentication.mdx +++ b/product_docs/docs/pem/9/considerations/authentication_options/configuring_the_pem_server_to_use_kerberos_authentication.mdx @@ -3,6 +3,7 @@ title: "Configuring the PEM server to use Kerberos authentication" # This file is moved from pem_inst_guide_linux/04_installing_postgres_enterprise_manager redirects: - /pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/06_configuring_the_pem_server_to_use_kerberos_authentication/ + --- You can configure Kerberos authentication for the PEM server. The Kerberos server works with hostnames and not with IP addresses. To use single sign-on in PEM server using Kerberos authentication, configure the following machines with hostnames using the DNS (realm). @@ -15,7 +16,7 @@ For example, if the realm on Kerberos server is `edbpem.org`, then you can set t ## 1. Install Kerberos, the PEM server, and the PEM backend database -Install Kerberos on the machine that functions as the authentication server. Install the PEM server on a separate machine. For more information, see [Installing the PEM Server](/pem/latest/installing/). +Install Kerberos on the machine that functions as the authentication server. Install the PEM server on a separate machine. For more information, see [Installing the PEM Server](/pem/latest/installing/). Install the PEM backend database (Postgres/EDB Postgres Advanced Server) on the same machine as the PEM server or on a different one. For more information, see the Installation steps on [EDB Docs website](https://www.enterprisedb.com/docs). diff --git a/product_docs/docs/pem/9/considerations/authentication_options/index.mdx b/product_docs/docs/pem/9/considerations/authentication_options/index.mdx index 90cec54841e..f10d1793733 100644 --- a/product_docs/docs/pem/9/considerations/authentication_options/index.mdx +++ b/product_docs/docs/pem/9/considerations/authentication_options/index.mdx @@ -6,6 +6,7 @@ navigation: - configuring_the_pem_server_to_use_kerberos_authentication - configuring_the_pem_server_to_use_windows_kerberos_server - configuring_2fa_authentication + --- PEM also supports Kerberos and 2FA authentication. For implementation instructions, see: diff --git a/product_docs/docs/pem/9/considerations/index.mdx b/product_docs/docs/pem/9/considerations/index.mdx index c9d3c870f64..3ddb40b7335 100644 --- a/product_docs/docs/pem/9/considerations/index.mdx +++ b/product_docs/docs/pem/9/considerations/index.mdx @@ -2,6 +2,7 @@ title: "Deployment considerations" navigation: +- prerequisites - setup_ha_using_efm - pem_pgbouncer - authentication_options diff --git a/product_docs/docs/pem/9/considerations/installing_pem_server_and_apache_web_server_preferences.mdx b/product_docs/docs/pem/9/considerations/installing_pem_server_and_apache_web_server_preferences.mdx index 637c7e4d861..61e98ad83ec 100644 --- a/product_docs/docs/pem/9/considerations/installing_pem_server_and_apache_web_server_preferences.mdx +++ b/product_docs/docs/pem/9/considerations/installing_pem_server_and_apache_web_server_preferences.mdx @@ -6,6 +6,7 @@ legacyRedirectsGenerated: # This file is moved from pem_inst_guide_linux/04_installing_postgres_enterprise_manager redirects: - /pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/02_installing_pem_server_and_apache_web_server_preferences/ + --- During the PEM server installation, you can specify your hosting preferences for the Apache web server. @@ -24,7 +25,7 @@ For more information about configuring a PEM server, see [Configuring the PEM se ## PEM server and Apache web server on the same host 1. Install the PEM server. See [Installing the PEM server](/pem/latest/installing/). -2. Run the configuration script. Select the **Web Services and Database** option to install the PEM server and Apache web server on the same host. See [Configuring the PEM server on Linux platforms](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +2. Run the configuration script. Select the **Web Services and Database** option to install the PEM server and Apache web server on the same host. See [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note For nonproduction environments, best practice is to have the PEM server and Apache web server on same hosts. diff --git a/product_docs/docs/pem/9/prerequisites.mdx b/product_docs/docs/pem/9/considerations/prerequisites.mdx similarity index 100% rename from product_docs/docs/pem/9/prerequisites.mdx rename to product_docs/docs/pem/9/considerations/prerequisites.mdx diff --git a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx index fa444cb3ba7..4a4a78ea8b4 100644 --- a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx +++ b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). ## Install the package @@ -28,7 +28,7 @@ sudo dnf -y install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx index f903602db4a..ac86007053e 100644 --- a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx +++ b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). - Address other prerequisites @@ -43,7 +43,7 @@ sudo zypper -n install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx index 1d7f05e485a..8790a8b4be9 100644 --- a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx +++ b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). - Address other prerequisites @@ -46,7 +46,7 @@ sudo zypper -n install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx index 2e4422a2f4d..19b4e932052 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). ## Install the package @@ -28,7 +28,7 @@ sudo yum -y install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx index 68cf95f98e8..10d5acefba0 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). ## Install the package @@ -28,7 +28,7 @@ sudo apt-get -y install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx index c8e08833301..42713bc6430 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). ## Install the package @@ -28,7 +28,7 @@ sudo apt-get -y install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx index 783fa959062..5708d302b47 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). ## Install the package @@ -29,7 +29,7 @@ sudo dnf -y install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx index dba227c3ee6..051010d308a 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). ## Install the package @@ -28,7 +28,7 @@ sudo yum -y install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx index 9e4835f32f9..1f7e0da3895 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). ## Install the package @@ -28,7 +28,7 @@ sudo dnf -y install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx index d4142fc87d5..c3533e75065 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). - Address other prerequisites @@ -43,7 +43,7 @@ sudo zypper -n install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx index ca3197abe39..50b980dcc93 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). - Address other prerequisites @@ -46,7 +46,7 @@ sudo zypper -n install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx index af1316a3f38..93212d975ee 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). ## Install the package @@ -28,7 +28,7 @@ sudo apt-get -y install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx index 3c9601d4610..3bd4cf683f8 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/). +- Review the [prerequisites](/pem/latest/considerations/prerequisites/). ## Install the package @@ -28,7 +28,7 @@ sudo apt-get -y install edb-pem sudo /usr/edb/pem/bin/configure-pem-server.sh ``` -For more details, see [Configuring the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For more details, see [Configuring the PEM server on Linux](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note diff --git a/product_docs/docs/pem/9/installing/windows/index.mdx b/product_docs/docs/pem/9/installing/windows/index.mdx index 40b6e23042f..684c99f18b1 100644 --- a/product_docs/docs/pem/9/installing/windows/index.mdx +++ b/product_docs/docs/pem/9/installing/windows/index.mdx @@ -33,7 +33,7 @@ The PEM server backend database can be an EDB distribution of the PostgreSQL or - For detailed information about installing the PEM server and PEM-HTTPD on the same host, see [Installing the PEM server and PEM-HTTPD on the same host](pem_server_and_httpd_on_same_host/). -- For detailed information about installing and configuring a standalone PEM agent, see [Installing the PEM agent on Windows](../../installing_pem_agent/installing_pem_agent_on_windows). +- For detailed information about installing and configuring a standalone PEM agent, see [Installing the PEM agent on Windows](../../installing_pem_agent/windows_agent). - Language pack installers contain supported languages that you can use with EDB Postgres Advanced Server and EDB PostgreSQL database installers. The language pack installer allows you to install Perl, TCL/TK, and Python without installing supporting software from third-party vendors. For more information about installing and using the language pack, see [EDB Postgres language pack](/epas/latest/language_pack/). diff --git a/product_docs/docs/pem/9/profiling_workloads/pem_sqlprofiler/installing_the_sql_profiler_plugin.mdx b/product_docs/docs/pem/9/profiling_workloads/pem_sqlprofiler/installing_the_sql_profiler_plugin.mdx index 6f010fe9f38..09140b210eb 100644 --- a/product_docs/docs/pem/9/profiling_workloads/pem_sqlprofiler/installing_the_sql_profiler_plugin.mdx +++ b/product_docs/docs/pem/9/profiling_workloads/pem_sqlprofiler/installing_the_sql_profiler_plugin.mdx @@ -11,7 +11,7 @@ You must install the plugin on each server on which you want to use SQL Profiler Install the plugin for PostgreSQL before configuring it. If you're using EDB Postgres Advanced Server, you can skip installation and go to [Configuring SQL Profiler](#configuring-sql-profiler). -You can use the graphical installer to install any version of SQL Profiler on the Windows platform. On Linux, use an RPM package to install the SQL Profiler. For detailed information about configuring the EDB repository for your host platform, see the [Installing on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/) section. +You can use the graphical installer to install any version of SQL Profiler on the Windows platform. On Linux, use an RPM package to install the SQL Profiler. For detailed information about configuring the EDB repository for your host platform, see the [Installing](/pem/latest/installing/) section. ## Installing SQL Profiler on Windows @@ -58,7 +58,7 @@ dnf install edb-as-server-sqlprofiler Where `` is the version of your EDB Postgres Advanced Server installation. -For detailed information about configuring the EDB repository, see [Installing on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/). +For detailed information about configuring the EDB repository, see [Installing](/pem/latest/installing/). ## Installing SQL Profiler on Debian/Ubuntu diff --git a/product_docs/docs/pem/9/upgrading/upgrading_pem_installation/upgrading_pem_installation_linux_rpm.mdx b/product_docs/docs/pem/9/upgrading/upgrading_pem_installation/upgrading_pem_installation_linux_rpm.mdx index f7b43dc6192..3f1ce665a15 100644 --- a/product_docs/docs/pem/9/upgrading/upgrading_pem_installation/upgrading_pem_installation_linux_rpm.mdx +++ b/product_docs/docs/pem/9/upgrading/upgrading_pem_installation/upgrading_pem_installation_linux_rpm.mdx @@ -138,7 +138,7 @@ zypper update edb-pem-agent If you initially used native packages to install your PEM server, you can use native packages to upgrade your PEM server. The commands to upgrade are platform specific. -If you want to upgrade a PEM server that is installed on a machine in an isolated network, you need to create a PEM repository on that machine before you upgrade the PEM server. For more information about creating a PEM repository on an isolated network, see [Creating a PEM Repository on an Isolated Network](/pem/latest/installing_pem_server/pem_server_inst_linux/creating_pem_repository_in_isolated_network/). +If you want to upgrade a PEM server that is installed on a machine in an isolated network, you need to create a PEM repository on that machine before you upgrade the PEM server. For more information about creating a PEM repository on an isolated network, see [Creating a PEM Repository on an Isolated Network](/pem/latest/installing/creating_pem_repository_in_isolated_network/). ### Upgrading a PEM server on a CentOS, Rocky Linux, AlmaLinux, or RHEL host @@ -192,7 +192,7 @@ The configure script uses the values from the old PEM server configuration file After executing the PEM server configuration file, use your version-specific service control command to restart the httpd service. -For detailed information, see [Configuring the PEM server on Linux platforms](/pem/latest/installing_pem_server/pem_server_inst_linux/configuring_the_pem_server_on_linux/). +For detailed information, see [Configuring the PEM server on Linux platforms](/pem/latest/installing/configuring_the_pem_server_on_linux/). !!! Note From PEM version 7.11 and later, the configure script requires a superuser password only after the upgrade process. From 4c35df8b25ee3d901905b2ecba55cd220bbe0072 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 7 Feb 2023 11:26:00 -0500 Subject: [PATCH 8/9] One more broken link --- ...onfiguring_the_pem_server_to_use_windows_kerberos_server.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/pem/9/considerations/authentication_options/configuring_the_pem_server_to_use_windows_kerberos_server.mdx b/product_docs/docs/pem/9/considerations/authentication_options/configuring_the_pem_server_to_use_windows_kerberos_server.mdx index ed9789a45be..6f8abeca6e7 100644 --- a/product_docs/docs/pem/9/considerations/authentication_options/configuring_the_pem_server_to_use_windows_kerberos_server.mdx +++ b/product_docs/docs/pem/9/considerations/authentication_options/configuring_the_pem_server_to_use_windows_kerberos_server.mdx @@ -19,7 +19,7 @@ Perform the following installations: - Install Active Directory on the Windows server (domain controller) that functions as the authentication server. Also, configure the Active Directory domain services to use Kerberos authentication, and then start it. -- Install the PEM server on a separate Linux machine. For more information, see [Installing the PEM server on Linux](/pem/latest/installing_pem_server/pem_server_inst_linux/). +- Install the PEM server on a separate Linux machine. For more information, see [Installing the PEM server](/pem/latest/installing/). - Install the PEM backend database (Postgres/EDB Postgres Advanced Server) on the same Linux machine as the PEM server or a different one. For more information, see the installation steps on the [EDB Docs website](https://www.enterprisedb.com/docs). From f4f2abc31a643d180559b1a9878022c8e0a9295b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 7 Feb 2023 12:24:46 -0500 Subject: [PATCH 9/9] Moved prerequisites file and fixed associated links --- .../products/postgres-enterprise-manager-server/base.njk | 2 +- product_docs/docs/pem/9/considerations/index.mdx | 1 - product_docs/docs/pem/9/installing/index.mdx | 1 + .../docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx | 2 +- .../docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx | 2 +- .../docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx | 2 +- .../docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx | 2 +- .../docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx | 2 +- .../docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx | 2 +- .../docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx | 2 +- .../docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx | 2 +- .../docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx | 2 +- .../docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx | 2 +- .../docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx | 2 +- .../docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx | 2 +- .../docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx | 2 +- .../pem/9/{considerations => installing}/prerequisites.mdx | 4 ++-- 17 files changed, 17 insertions(+), 17 deletions(-) rename product_docs/docs/pem/9/{considerations => installing}/prerequisites.mdx (98%) diff --git a/install_template/templates/products/postgres-enterprise-manager-server/base.njk b/install_template/templates/products/postgres-enterprise-manager-server/base.njk index 0897a50bd7c..03aed4085c5 100644 --- a/install_template/templates/products/postgres-enterprise-manager-server/base.njk +++ b/install_template/templates/products/postgres-enterprise-manager-server/base.njk @@ -13,7 +13,7 @@ redirects: {% endblock frontmatter %} {% block prodprereq %} -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). {% endblock prodprereq %}{% block pemprereq %}{% endblock pemprereq %}{% block pemsetuprepo %}{% endblock pemsetuprepo %} {% block postinstall %} diff --git a/product_docs/docs/pem/9/considerations/index.mdx b/product_docs/docs/pem/9/considerations/index.mdx index 3ddb40b7335..c9d3c870f64 100644 --- a/product_docs/docs/pem/9/considerations/index.mdx +++ b/product_docs/docs/pem/9/considerations/index.mdx @@ -2,7 +2,6 @@ title: "Deployment considerations" navigation: -- prerequisites - setup_ha_using_efm - pem_pgbouncer - authentication_options diff --git a/product_docs/docs/pem/9/installing/index.mdx b/product_docs/docs/pem/9/installing/index.mdx index b5c010b2483..5ad1b3c7605 100644 --- a/product_docs/docs/pem/9/installing/index.mdx +++ b/product_docs/docs/pem/9/installing/index.mdx @@ -3,6 +3,7 @@ navTitle: "Installing the PEM server" title: "Installing Postgres Enterprise Manager server" # This is new created file and content is added from pem_inst_guide_linux/04_installing_postgres_enterprise_manager/index.mdx navigation: +- prerequisites - linux_x86_64 - linux_ppc64le - windows diff --git a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx index 4a4a78ea8b4..8090a1edb90 100644 --- a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx +++ b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). ## Install the package diff --git a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx index ac86007053e..f681b35f0fb 100644 --- a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx +++ b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). - Address other prerequisites diff --git a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx index 8790a8b4be9..9ae89b7ac46 100644 --- a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx +++ b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). - Address other prerequisites diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx index 19b4e932052..e9a03afdd6e 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). ## Install the package diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx index 10d5acefba0..a55112e9c3b 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). ## Install the package diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx index 42713bc6430..30fa10fe215 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). ## Install the package diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx index 5708d302b47..9bf2594e812 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). ## Install the package diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx index 051010d308a..7ed297da8d5 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). ## Install the package diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx index 1f7e0da3895..8645898998c 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). ## Install the package diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx index c3533e75065..c81f50777f1 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). - Address other prerequisites diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx index 50b980dcc93..d159b3bbee1 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). - Address other prerequisites diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx index 93212d975ee..2dd44e0093b 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). ## Install the package diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx index 3bd4cf683f8..95f2c47689a 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Review the [prerequisites](/pem/latest/considerations/prerequisites/). +- Review the [prerequisites](/pem/latest/installing/prerequisites/). ## Install the package diff --git a/product_docs/docs/pem/9/considerations/prerequisites.mdx b/product_docs/docs/pem/9/installing/prerequisites.mdx similarity index 98% rename from product_docs/docs/pem/9/considerations/prerequisites.mdx rename to product_docs/docs/pem/9/installing/prerequisites.mdx index 660fcc229b0..bdfa63297cd 100644 --- a/product_docs/docs/pem/9/considerations/prerequisites.mdx +++ b/product_docs/docs/pem/9/installing/prerequisites.mdx @@ -1,6 +1,6 @@ --- -title: "Prerequisites to install the PEM server" -navTitle: "Prerequisites" +title: "Prerequisites to install the PEM server on Linux" +navTitle: "Linux prerequisites" redirects: - /pem/latest/installing_pem_server/pem_server_inst_linux/prerequisites/ ---